1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
| {
| "sensor_calib": {
| "resolution": {
| "width": 2592,
| "height": 1944
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 8, 128, 0, 1, 128, 1024],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 8
| },
| "CISExtraAgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 4,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }, {
| "name": "HDR_THREE_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 4,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 4]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }]
| },
| "CISHdrSet": {
| "hdr_en": 0,
| "hdr_mode": "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
| "line_mode": "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
| },
| "CISDcgSet": {
| "Linear": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 1,
| "sync_switch": 0,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| },
| "Hdr": {
| "support_en": 0,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 3.5,
| "sync_switch": 1,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| }
| },
| "CISExpUpdate": {
| "Linear": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 2
| },
| "Hdr": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| }
| },
| "CISMinFps": 10,
| "CISFlip": 0
| },
| "module_calib": {
| "sensor_module": {
| "FNumber": 2,
| "EFL": 2.94,
| "LensT": 90,
| "IRCutT": 90
| }
| },
| "main_scene": [{
| "name": "normal",
| "sub_scene": [{
| "name": "day",
| "scene_isp21": {
| "ae_calib": {
| "CommCtrl": {
| "Enable": 1,
| "AecRunInterval": 0,
| "AecOpType": "RK_AIQ_OP_MODE_AUTO",
| "HistStatsMode": "CAM_HISTV2_MODE_Y",
| "RawStatsMode": "CAM_RAWSTATSV2_MODE_Y",
| "YRangeMode": "CAM_YRANGEV2_MODE_FULL",
| "AecGridWeight": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.04,
| "GainValue": 2,
| "IspDGainValue": 1
| },
| "HdrAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1]
| }
| },
| "AecSpeed": {
| "DampOver": 0.35,
| "DampUnder": 0.45,
| "DampDark2Bright": 0.15,
| "DampBright2Dark": 0.25
| },
| "AecDelayFrmNum": {
| "BlackDelay": 4,
| "WhiteDelay": 4
| },
| "AecFrameRateMode": {
| "isFpsFix": 0,
| "FpsValue": 15
| },
| "AecAntiFlicker": {
| "enable": 1,
| "Frequency": "AECV2_FLICKER_FREQUENCY_50HZ",
| "Mode": "AECV2_ANTIFLICKER_AUTO_MODE"
| },
| "AecEnvLvCalib": {
| "CalibFNumber": 1.6,
| "CurveCoeff": [0.02859, 0.5972]
| },
| "AecWinScale": {
| "InRawWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| },
| "TmoRawWinScale": {
| "h_offs": 0.1,
| "v_offs": 0.1,
| "h_size": 0.9,
| "v_size": 0.9
| },
| "YuvWinScale": {
| "h_offs": 0,
| "v_offs": 0,
| "h_size": 1,
| "v_size": 1
| }
| }
| },
| "LinearAeCtrl": {
| "RawStatsEn": 1,
| "ToleranceIn": 10,
| "ToleranceOut": 10,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "InitExp": {
| "InitTimeValue": 0.03,
| "InitGainValue": 1,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.03, 0.03, 0.06, 0.06, 0.1],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 2, 2, 8, 8],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 1],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.04, 0.1, 0.2, 0.4, 0.64],
| "ExpLevel_len": 6,
| "DySetpoint": [50, 50, 50, 50, 50, 50],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 1,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0, 0.04, 0.1, 0.2, 0.4, 0.64],
| "ExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
| "LowLightPdfTh_len": 6,
| "TargetLLLuma": [35, 35, 30, 25, 20, 15],
| "TargetLLLuma_len": 6
| }
| },
| "OverExpCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MaxWeight": 8,
| "HighLightTh": 150,
| "LowLightTh": 30,
| "OverExpSetPoint": {
| "OEpdf": [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
| "OEpdf_len": 6,
| "LowLightWeight": [1, 1, 1, 1, 1, 1],
| "LowLightWeight_len": 6,
| "HighLightWeight": [4, 3, 3, 3, 2, 2],
| "HighLightWeight_len": 6
| }
| }
| },
| "HdrAeCtrl": {
| "ToleranceIn": 10,
| "ToleranceOut": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "LumaDistTh": 10,
| "InitExp": {
| "InitTimeValue": [0.0005, 0.003, 0.003],
| "InitGainValue": [1, 1, 1],
| "InitIspDGainValue": [1, 1, 1],
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "Frm0TimeDot": [0, 0.003, 0.003, 0.003, 0.003, 0.003],
| "Frm0TimeDot_len": 6,
| "Frm0GainDot": [1, 1, 2, 4, 6, 8],
| "Frm0GainDot_len": 6,
| "Frm0IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm0IspDGainDot_len": 6,
| "Frm1TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm1TimeDot_len": 6,
| "Frm1GainDot": [1, 1, 2, 4, 6, 8],
| "Frm1GainDot_len": 6,
| "Frm1IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm1IspDGainDot_len": 6,
| "Frm2TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm2TimeDot_len": 6,
| "Frm2GainDot": [1, 1, 2, 4, 6, 8],
| "Frm2GainDot_len": 6,
| "Frm2IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm2IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "ExpRatioCtrl": {
| "ExpRatioType": "AECV2_HDR_RATIOTYPE_MODE_AUTO",
| "ExpRatio": {
| "RatioExpDot": [0, 0.1, 0.3, 0.5, 0.7, 1],
| "RatioExpDot_len": 6,
| "M2SRatioFix": [4, 4, 4, 4, 4, 4],
| "M2SRatioFix_len": 6,
| "L2MRatioFix": [4, 4, 4, 4, 4, 4],
| "L2MRatioFix_len": 6,
| "M2SRatioMax": [64, 64, 64, 64, 64, 64],
| "M2SRatioMax_len": 6,
| "L2MRatioMax": [32, 32, 30, 28, 26, 24],
| "L2MRatioMax_len": 6
| }
| },
| "LongFrmMode": {
| "mode": "AECV2_HDR_LONGFRMMODE_NORMAL",
| "SfrmMinLine": 2,
| "LfrmModeExpTh": 0.62
| },
| "LframeCtrl": {
| "OEROILowTh": 150,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "LfrmSetPoint": {
| "LExpLevel": [0, 0.0024, 0.0072, 0.012, 0.024, 0.048],
| "LExpLevel_len": 6,
| "NonOEPdfTh": [0.4, 0.45, 0.55, 0.65, 0.75, 1],
| "NonOEPdfTh_len": 6,
| "LowLightPdfTh": [0.2, 0.22, 0.25, 0.3, 0.35, 0.4],
| "LowLightPdfTh_len": 6,
| "LSetPoint": [75, 70, 65, 60, 45, 40],
| "LSetPoint_len": 6,
| "TargetLLLuma": [35, 32, 30, 28, 25, 20],
| "TargetLLLuma_len": 6
| }
| },
| "MframeCtrl": {
| "MExpLevel": [0.012, 0.024, 0.048, 0.12, 0.168, 0.24],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0012, 0.0036, 0.006, 0.0096, 0.0144],
| "SExpLevel_len": 6,
| "SSetPoint": [18, 18, 15, 12, 12, 12],
| "SSetPoint_len": 6,
| "TargetHLLuma": [100, 100, 100, 90, 80, 70],
| "TargetHLLuma_len": 6
| }
| }
| },
| "IrisCtrl": {
| "Enable": 0,
| "IrisType": "IRISV2_DC_TYPE",
| "ManualEn": 0,
| "ManualAttr": {
| "PIrisGainValue": 1,
| "DCIrisHoldValue": 30
| },
| "InitAttr": {
| "PIrisGainValue": 512,
| "DCIrisHoldValue": 100
| },
| "PIrisAttr": {
| "TotalStep": 81,
| "EffcStep": 44,
| "ZeroIsMax": 1,
| "StepTable": [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "DCIrisAttr": {
| "Kp": 0.5,
| "Ki": 0.2,
| "Kd": 0.3,
| "MinPwmDuty": 0,
| "MaxPwmDuty": 100,
| "OpenPwmDuty": 40,
| "ClosePwmDuty": 22
| }
| },
| "SyncTest": {
| "Enable": 0,
| "IntervalFrm": 60,
| "AlterExp": {
| "LinearAE": [{
| "TimeValue": 0.02,
| "GainValue": 1,
| "IspDGainValue": 1,
| "PIrisGainValue": 1,
| "DcgMode": 0
| }, {
| "TimeValue": 0.02,
| "GainValue": 6,
| "IspDGainValue": 1,
| "PIrisGainValue": 29,
| "DcgMode": 0
| }],
| "LinearAE_len": 2,
| "HdrAE": [{
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 1,
| "DcgMode": [0, 0, 0]
| }, {
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [6, 6, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 29,
| "DcgMode": [0, 0, 0]
| }],
| "HdrAE_len": 2
| }
| }
| },
| "wb_v21": {
| "control": {
| "byPass": 0,
| "mode": "CALIB_WB_MODE_AUTO"
| },
| "manualPara": {
| "mode": "CALIB_MWB_MODE_SCENE",
| "cfg": {
| "mwbGain": [1.0033, 1, 1, 2.11341],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
| "frameChoose": 1
| },
| "lscBypassEnable": 0,
| "uvDetectionEnable": 1,
| "xyDetectionEnable": 1,
| "yuvDetectionEnable": 1,
| "lsUsedForYuvDet": ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
| "lsUsedForYuvDet_len": 7,
| "blkStatisticsEnable": 1,
| "downScaleMode": "CALIB_AWB_DS_8X8",
| "blkMeasureMode": "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
| "mainWindow": {
| "mode": "CALIB_AWB_WINDOW_CFG_AUTO",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [6],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [9],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [6],
| "minB_len": 1,
| "maxY": [210],
| "maxY_len": 1,
| "minY": [9],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.333273, 0.333502, 0.333225],
| "rotationMat": [-0.673131, 0.739524, -0.206782, 0.739524, 0.673131, 0.332638, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0449219, 0.138672, 0.0136719, 28.875, -0.0878906, 0.0117188, 0.0664062, 133.188, 0.0390625, -0.0644531, 0.0566406, 114.25, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1421, -1349, 34, 1]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1085, -1000, 46, 21]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-658, -437, 54, -34]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-302, -82, -121, -139]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-147, -56, -21, -55]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [266, 294, -42, -75]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-2048, -1545, 614, 459]
| }],
| "wpDiffLumaWeight": {
| "enable": 1,
| "wpDiffWeiEnableTh": {
| "wpDiffWeiNoTh": 0.004,
| "wpDiffWeiLvValueTh": 64
| },
| "wpDiffwei_y": [0, 16, 32, 64, 96, 128, 192, 224, 240],
| "perfectBin": [0, 0, 0, 1, 1, 1, 1, 0],
| "wpDiffWeightLvSet": [{
| "LvValue": 256,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "ratioSet_len": 3
| }, {
| "LvValue": 8192,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [0, 0, 0.5, 1, 1, 1, 0.5, 0.2, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 1,
| "wpDiffBlkWeight": [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
| "lightSources": [{
| "name": "A",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.0033, 1, 1, 2.11341],
| "uvRegion": {
| "u": [123, 66.5, 61.5, 124],
| "v": [129.5, 147, 116, 127]
| },
| "xyRegion": {
| "normal": [-1.10257, -0.768745, 0.0617224, -0.0359482],
| "big": [-1.10257, -0.768086, 0.0828559, -0.0502276]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 138, 114.312, 185.688, 94.4375, 116.25],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.48539, 1, 1, 1.90779],
| "defaultDayGainHigh": [1.63614, 1, 1, 1.56982],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.48539, 1, 1, 1.90779],
| "uvRegion": {
| "u": [67, 73.5, 124.5, 124],
| "v": [94.5, 71, 125.5, 126.5]
| },
| "xyRegion": {
| "normal": [-0.767631, -0.428365, -0.0631544, -0.111048],
| "big": [-0.767436, -0.427931, -0.0642134, -0.11731]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 134.875, 115.375, 190.25, 120.438, 106.938],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.48539, 1, 1, 1.90779],
| "defaultDayGainHigh": [1.63614, 1, 1, 1.56982],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.63614, 1, 1, 1.56982],
| "uvRegion": {
| "u": [72.5, 98, 126.5, 124.5],
| "v": [74.5, 52, 124.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.428457, -0.0966049, 0.0379116, -0.132584],
| "big": [-0.427469, -0.0985802, 0.0584739, -0.171138]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 132.312, 114.75, 191, 134.25, 111.125],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.48539, 1, 1, 1.90779],
| "defaultDayGainHigh": [1.63614, 1, 1, 1.56982],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.68091, 1, 1, 1.34496],
| "uvRegion": {
| "u": [93, 118, 127.5, 126.5],
| "v": [56.5, 47, 123, 125]
| },
| "xyRegion": {
| "normal": [-0.0966049, 0.0959877, 0.0936011, -0.140295],
| "big": [-0.0975926, 0.0959877, 0.115877, -0.15743]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 132.688, 114.312, 190.875, 139.938, 115.5],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.48539, 1, 1, 1.90779],
| "defaultDayGainHigh": [1.63614, 1, 1, 1.56982],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [1.79483, 1, 1, 1.22174],
| "uvRegion": {
| "u": [128.5, 127, 112.5, 126],
| "v": [122, 124, 48.5, 45]
| },
| "xyRegion": {
| "normal": [0.0969753, 0.350802, 0.068755, -0.109451],
| "big": [0.0959877, 0.350802, 0.0944578, -0.13344]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 131.875, 114.375, 190.312, 147.5, 117.688],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.48539, 1, 1, 1.90779],
| "defaultDayGainHigh": [1.63614, 1, 1, 1.56982],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [0.817786, 1, 1, 2.32412],
| "uvRegion": {
| "u": [123.5, 72.5, 66, 123],
| "v": [131, 173, 144.5, 129]
| },
| "xyRegion": {
| "normal": [-1.39033, -1.10226, 0.0582597, -0.0405533],
| "big": [-1.3909, -1.10341, 0.0771084, -0.0554038]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 140.25, 113.312, 180.562, 80.0625, 121.438],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.48539, 1, 1, 1.90779],
| "defaultDayGainHigh": [1.63614, 1, 1, 1.56982],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.37177, 1, 1, 1.8843],
| "uvRegion": {
| "u": [124, 62, 70.5, 124.5],
| "v": [127, 120, 80.5, 125.5]
| },
| "xyRegion": {
| "normal": [-0.767611, -0.429394, 0.0611275, -0.0634518],
| "big": [-0.767436, -0.428457, 0.103882, -0.0634928]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [2, 2.5, 3, 3.5, 4, 4],
| "lineVector": [10, 135.312, 115.188, 189.938, 116.375, 109.5],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.48539, 1, 1, 1.90779],
| "defaultDayGainHigh": [1.63614, 1, 1, 1.56982],
| "xyType2Enable": 1
| }],
| "lightSources_len": 7
| },
| "autoExtPara": {
| "lightSourceForFirstFrame": "D50",
| "tolerance": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "toleranceValue": [0, 0, 0, 0],
| "toleranceValue_len": 4
| },
| "runInterval": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "intervalValue": [0, 0, 0, 0],
| "intervalValue_len": 4
| },
| "dampFactor": {
| "dFStep": 0.1,
| "dFMin": 0.5,
| "dFMax": 0.9,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 1,
| "lutAll": [{
| "lumaValue": 128,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 8192,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 6800, 7700, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }, {
| "lumaValue": 65536,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 6700, 7600, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
| "ct_lut_out_len": 63,
| "cri_lut_out": [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
| "cri_lut_out_len": 63
| }],
| "lutAll_len": 3
| },
| "wbGainDaylightClip": {
| "enable": 0,
| "outdoor_cct_min": 5000
| },
| "wbGainClip": {
| "enable": 0,
| "cct": [1000, 2856, 4100, 6500, 7500],
| "cct_len": 5,
| "cri_bound_up": [0.091, 0.091, 0.18, 0.12, 0.12],
| "cri_bound_up_len": 5,
| "cri_bound_low": [0.07, 0.07, 0.16, 0.16, 0.16],
| "cri_bound_low_len": 5
| },
| "division": {
| "lumaValThLow": 110,
| "lumaValThLow2": 200,
| "lumaValThHigh": 65536,
| "lumaValThHigh2": 65600,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "low": [100],
| "low_len": 1,
| "high": [200],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.0033, 1, 1, 2.11341],
| "lumaValueMatrix": [0, 4, 16, 32, 64, 128, 256, 512, 1024, 2048, 8192, 32768, 131072, 524288, 2.09715e+06, 8.38861e+06],
| "defaultNightGainWeight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "probCalcDis": {
| "proDis_THH": 4.6124,
| "proDis_THL": 0.0269
| },
| "probCalcLv": {
| "outdoorLumaValThLow": 30000,
| "outdoorLumaValThHigh": 45745
| },
| "probCalcWp": {
| "wpNumPercTh": 0.0025,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [200],
| "forBigType_len": 1,
| "forExtraType": [200],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 22.3963,
| "meanH": 26.9666
| }, {
| "index": 13,
| "meanC": 21.4227,
| "meanH": -74.5357
| }, {
| "index": 5,
| "meanC": 9.89368,
| "meanH": -63.1657
| }, {
| "index": 10,
| "meanC": 11.8253,
| "meanH": -38.9079
| }, {
| "index": 14,
| "meanC": 16.2803,
| "meanH": 147.193
| }, {
| "index": 16,
| "meanC": 23.8068,
| "meanH": 90.3022
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.0033,
| "BGain": 2.11341
| }, {
| "name": "TL84",
| "RGain": 1.63614,
| "BGain": 1.56982
| }, {
| "name": "D50",
| "RGain": 1.37177,
| "BGain": 1.8843
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.8395, -0.5434, -2.741],
| "lineRgProjCCT": [1, -0.0003, 0.4559],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [2.2099, 1, 1, 1.6302],
| "laCalcFactor": 40
| },
| "remosaicCfg": {
| "enable": 0,
| "applyInvWbGainEnable": 1,
| "sensorWbGain": [1, 1, 1, 1]
| },
| "wbGainOffset": {
| "enable": 0,
| "offset": [0, 0, 0, 0]
| }
| }
| },
| "agamma_calib": {
| "GammaTuningPara": {
| "Gamma_en": 1,
| "Gamma_out_segnum": "GAMMATYPE_LOG",
| "Gamma_out_offset": 0,
| "Gamma_curve": [0, 4, 8, 12, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 159, 191, 223, 254, 317, 379, 440, 500, 617, 731, 841, 947, 1149, 1325, 1467, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 4095]
| }
| },
| "ablc_calib": {
| "BlcTuningPara": {
| "enable": 1,
| "BLC_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "R_Channel": [64, 67.375, 67.5, 65.6875, 64.25, 64, 64, 64, 64, 64, 64, 64, 64],
| "R_Channel_len": 13,
| "Gr_Channel": [62, 64.6875, 60.625, 55.875, 64.125, 64, 64, 64, 64, 64, 64, 64, 64],
| "Gr_Channel_len": 13,
| "Gb_Channel": [63, 65.3125, 61.9375, 54.1875, 64, 64, 64, 64, 64, 64, 64, 64, 64],
| "Gb_Channel_len": 13,
| "B_Channel": [66, 66.8125, 66, 65.625, 64.0625, 64, 64, 64, 64, 64, 64, 64, 64],
| "B_Channel_len": 13
| }
| }
| },
| "adegamma_calib": {
| "DegammaTuningPara": {
| "degamma_en": 0,
| "X_axis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_R": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_G": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "curve_B": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "agic_calib_v21": {
| "GicTuningPara": {
| "enable": 0,
| "gr_ration": 0,
| "GicData": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
| "ISO_len": 9,
| "min_busy_thre": [40, 40, 40, 40, 40, 40, 40, 40, 40],
| "min_busy_thre_len": 9,
| "min_grad_thr1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr1_len": 9,
| "min_grad_thr2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr2_len": 9,
| "k_grad1": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_len": 9,
| "k_grad2": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_len": 9,
| "gb_thre": [32, 32, 32, 32, 32, 32, 32, 32, 32],
| "gb_thre_len": 9,
| "maxCorV": [10, 10, 10, 10, 10, 10, 10, 10, 10],
| "maxCorV_len": 9,
| "maxCorVboth": [20, 20, 20, 20, 20, 20, 20, 20, 20],
| "maxCorVboth_len": 9,
| "dark_thre": [120, 120, 120, 120, 120, 120, 120, 120, 120],
| "dark_thre_len": 9,
| "dark_threHi": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "dark_threHi_len": 9,
| "k_grad1_dark": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_dark_len": 9,
| "k_grad2_dark": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_dark_len": 9,
| "min_grad_thr_dark1": [16, 16, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr_dark1_len": 9,
| "min_grad_thr_dark2": [8, 8, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr_dark2_len": 9,
| "noiseCurve_0": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_0_len": 9,
| "noiseCurve_1": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "noiseCurve_1_len": 9,
| "NoiseScale": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseScale_len": 9,
| "NoiseBase": [0, 0, 0, 0, 0, 0, 0, 0, 0],
| "NoiseBase_len": 9,
| "globalStrength": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "globalStrength_len": 9,
| "diff_clip": [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
| "diff_clip_len": 9
| }
| }
| },
| "adehaze_calib_v21": {
| "DehazeTuningPara": {
| "Enable": 1,
| "cfg_alpha": 0,
| "ByPassThr": 0,
| "dehaze_setting": {
| "en": 0,
| "air_lc_en": 1,
| "stab_fnum": 8,
| "sigma": 6,
| "wt_sigma": 8,
| "air_sigma": 120,
| "tmax_sigma": 0.01,
| "pre_wet": 0.01,
| "DehazeData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "dc_min_th": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "dc_min_th_len": 9,
| "dc_max_th": [192, 192, 192, 192, 192, 192, 192, 192, 192],
| "dc_max_th_len": 9,
| "yhist_th": [249, 249, 249, 249, 249, 249, 249, 249, 249],
| "yhist_th_len": 9,
| "yblk_th": [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
| "yblk_th_len": 9,
| "dark_th": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "dark_th_len": 9,
| "bright_min": [180, 180, 180, 180, 180, 180, 180, 180, 180],
| "bright_min_len": 9,
| "bright_max": [240, 240, 240, 240, 240, 240, 240, 240, 240],
| "bright_max_len": 9,
| "wt_max": [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
| "wt_max_len": 9,
| "air_min": [200, 200, 200, 200, 200, 200, 200, 200, 200],
| "air_min_len": 9,
| "air_max": [250, 250, 250, 250, 250, 250, 250, 250, 250],
| "air_max_len": 9,
| "tmax_base": [125, 125, 125, 125, 125, 125, 125, 125, 125],
| "tmax_base_len": 9,
| "tmax_off": [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
| "tmax_off_len": 9,
| "tmax_max": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "tmax_max_len": 9,
| "cfg_wt": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
| "cfg_wt_len": 9,
| "cfg_air": [210, 210, 210, 210, 210, 210, 210, 210, 210],
| "cfg_air_len": 9,
| "cfg_tmax": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "cfg_tmax_len": 9,
| "dc_weitcur": [1, 1, 1, 1, 1, 1, 1, 1, 1],
| "dc_weitcur_len": 9,
| "bf_weight": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
| "bf_weight_len": 9,
| "range_sigma": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "range_sigma_len": 9,
| "space_sigma_pre": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_pre_len": 9,
| "space_sigma_cur": [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
| "space_sigma_cur_len": 9
| }
| },
| "enhance_setting": {
| "en": 1,
| "enhance_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
| "EnhanceData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "enhance_value": [1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.3, 1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1],
| "enhance_chroma_len": 9
| }
| },
| "hist_setting": {
| "en": 0,
| "hist_para_en": 1,
| "HistData": {
| "EnvLv": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
| "EnvLv_len": 9,
| "hist_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_gratio_len": 9,
| "hist_th_off": [64, 64, 64, 64, 64, 64, 64, 64, 64],
| "hist_th_off_len": 9,
| "hist_k": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "hist_k_len": 9,
| "hist_min": [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
| "hist_min_len": 9,
| "hist_scale": [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
| "hist_scale_len": 9,
| "cfg_gratio": [2, 2, 2, 2, 2, 2, 2, 2, 2],
| "cfg_gratio_len": 9
| }
| }
| }
| },
| "adpcc_calib": {
| "DpccTuningPara": {
| "Enable": 1,
| "Fast_Mode": {
| "Fast_mode_en": 1,
| "Single_enable": 1,
| "Double_enable": 1,
| "Triple_enable": 1,
| "Fast_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "Single_level": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Single_level_len": 13,
| "Double_level": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Double_level_len": 13,
| "Triple_level": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Triple_level_len": 13
| }
| },
| "Expert_Mode": {
| "stage1_Enable": 1,
| "grayscale_mode": 0,
| "dpcc_out_sel": 1,
| "stage1_g_3x3": 0,
| "stage1_rb_3x3": 0,
| "stage1_inc_rb_center": 1,
| "stage1_inc_g_center": 1,
| "rk_out_sel": 1,
| "SetEnable": {
| "ISO": [50, 100, 200, 400, 600, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400],
| "fix_set": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set2": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set3": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "set1": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [32, 24, 16, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [32, 24, 16, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [24, 16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [24, 16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [12, 9, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [12, 9, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [16, 14, 12, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [16, 14, 12, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [8, 6, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [8, 6, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [48, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [48, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_thr": [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
| "rb_line_mad_fac": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_mad_fac": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [12, 9, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [12, 9, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [16, 14, 12, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [16, 14, 12, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [6, 5, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [6, 5, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [32, 24, 16, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [32, 24, 16, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [48, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_line_thr": [48, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "rb_line_mad_fac": [16, 16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [16, 16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [6, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [6, 5, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
| "rb_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| }
| },
| "Dpcc_pdaf": {
| "en": 0,
| "point_en": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 0,
| "wrapy": 0,
| "wrapx_num": 0,
| "wrapy_num": 0,
| "point_x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "forward_med": 0
| },
| "Sensor_dpcc": {
| "sensor_dpcc_auto_en": 0,
| "max_level": 20,
| "SensorDpcc_Data": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "ISO_len": 13,
| "level_single": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_single_len": 13,
| "level_multiple": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_multiple_len": 13
| }
| }
| }
| },
| "amerge_calib": {
| "MergeTuningPara": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "LM_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "LM_smooth_len": 13,
| "LM_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "LM_offset_len": 13,
| "MS_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "MS_smooth_len": 13,
| "MS_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "MS_offset_len": 13
| },
| "ByPassThr": 0,
| "OECurve_damp": 0.3,
| "MDCurveLM_damp": 0.3,
| "MDCurveMS_damp": 0.3
| }
| },
| "adrc_calib": {
| "DrcTuningPara": {
| "Enable": 0,
| "DrcGain": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "DrcGain": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "DrcGain_len": 13,
| "Alpha": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "Alpha_len": 13,
| "Clip": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "Clip_len": 13
| },
| "HiLight": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Strength": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Strength_len": 13
| },
| "LocalTMOSetting": {
| "LocalTMOData": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "LocalWeit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalWeit_len": 13,
| "GlobalContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "GlobalContrast_len": 13,
| "LoLitContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "LoLitContrast_len": 13
| },
| "curPixWeit": 0.376471,
| "preFrameWeit": 1,
| "Range_force_sgm": 0,
| "Range_sgm_cur": 0.125015,
| "Range_sgm_pre": 0.125015,
| "Space_sgm_cur": 4068,
| "Space_sgm_pre": 3968
| },
| "CompressSetting": {
| "Mode": "COMPRESS_AUTO",
| "Manual_curve": [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
| },
| "Scale_y": [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
| "ByPassThr": 0,
| "Edge_Weit": 0.0627451,
| "OutPutLongFrame": 0,
| "IIR_frame": 16,
| "Tolerance": 0,
| "damp": 0.9
| }
| },
| "cpsl": {
| "param": {
| "enable": 0,
| "mode": "RK_AIQ_OP_MODE_AUTO",
| "force_gray": 1,
| "light_src": "LED",
| "auto_adjust_sens": 50,
| "auto_on2off_th": 3000,
| "auto_off2on_th": 100,
| "auto_sw_interval": 0,
| "manual_on": 0,
| "manual_strength": 100
| }
| },
| "orb": {
| "param": {
| "orb_en": 0
| }
| },
| "debayer": {
| "param": {
| "debayer_en": 1,
| "debayer_filter1": [2, -6, 0, 6, -2],
| "debayer_filter2": [2, -4, 4, -4, 2],
| "debayer_gain_offset": 4,
| "debayer_offset": 1,
| "debayer_clip_en": 1,
| "debayer_filter_g_en": 1,
| "debayer_filter_c_en": 1,
| "debayer_thed0": 3,
| "debayer_thed1": 6,
| "debayer_dist_scale": 8,
| "debayer_cnr_strength": 5,
| "debayer_shift_num": 2,
| "array": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
| "sharp_strength": [4, 4, 4, 4, 4, 4, 4, 4, 4],
| "debayer_hf_offset": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| }
| },
| "cproc": {
| "param": {
| "enable": 1,
| "brightness": 128,
| "contrast": 128,
| "saturation": 128,
| "hue": 128
| }
| },
| "ie": {
| "param": {
| "enable": 0,
| "mode": 0
| }
| },
| "lsc_v2": {
| "common": {
| "enable": 1,
| "resolutionAll": [{
| "name": "2592x1944",
| "lsc_sect_size_x": [162, 162, 162, 162, 162, 162, 162, 162],
| "lsc_sect_size_y": [121, 122, 121, 122, 121, 122, 121, 122]
| }, {
| "name": "1296x960",
| "lsc_sect_size_x": [81, 81, 81, 81, 81, 81, 81, 81],
| "lsc_sect_size_y": [60, 60, 60, 60, 60, 60, 60, 60]
| }],
| "resolutionAll_len": 2
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [0.9606, 2.1758],
| "tableUsed": [{
| "name": "A_70"
| }, {
| "name": "A_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.441, 1.964],
| "tableUsed": [{
| "name": "CWF_70"
| }, {
| "name": "CWF_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.7776, 1.4847],
| "tableUsed": [{
| "name": "D50_70"
| }, {
| "name": "D50_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [1.6123, 1.3912],
| "tableUsed": [{
| "name": "D65_70"
| }, {
| "name": "D65_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [1.7025, 1.2646],
| "tableUsed": [{
| "name": "D75_70"
| }, {
| "name": "D75_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [0.7917, 2.3679],
| "tableUsed": [{
| "name": "HZ_70"
| }, {
| "name": "HZ_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.337, 2.0178],
| "tableUsed": [{
| "name": "TL84_70"
| }, {
| "name": "TL84_100"
| }],
| "tableUsed_len": 2,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 2,
| "name": "GRAY",
| "wbGain": [1, 1],
| "tableUsed": [{
| "name": "GRAY_0"
| }],
| "tableUsed_len": 1,
| "gains": [1, 2, 4, 8],
| "gains_len": 4,
| "vig": [0, 0, 0, 0],
| "vig_len": 4
| }],
| "illAll_len": 8
| },
| "tbl": {
| "tableAll": [{
| "name": "2592x1944_A_70",
| "resolution": "2592x1944",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3151, 2845, 2540, 2256, 2122, 1941, 1817, 1755, 1695, 1686, 1755, 1831, 1939, 2046, 2195, 2385, 2677, 3024, 2707, 2365, 2151, 1965, 1808, 1671, 1592, 1557, 1562, 1585, 1671, 1802, 1929, 2070, 2264, 2541, 2920, 2516, 2246, 2030, 1844, 1667, 1541, 1436, 1408, 1413, 1447, 1551, 1631, 1792, 1950, 2159, 2405, 2821, 2432, 2160, 1904, 1719, 1530, 1413, 1321, 1271, 1279, 1347, 1412, 1551, 1715, 1888, 2041, 2302, 2594, 2308, 2063, 1828, 1621, 1446, 1310, 1223, 1174, 1196, 1244, 1326, 1468, 1607, 1792, 2001, 2223, 2557, 2307, 2013, 1767, 1537, 1366, 1244, 1129, 1105, 1110, 1162, 1247, 1367, 1565, 1764, 1960, 2174, 2503, 2223, 1960, 1704, 1502, 1311, 1172, 1094, 1049, 1051, 1112, 1183, 1337, 1492, 1706, 1900, 2140, 2542, 2216, 1947, 1709, 1461, 1299, 1162, 1064, 1024, 1039, 1088, 1165, 1312, 1481, 1668, 1905, 2111, 2509, 2209, 1912, 1692, 1461, 1278, 1137, 1061, 1027, 1031, 1086, 1163, 1302, 1471, 1687, 1899, 2130, 2512, 2222, 1931, 1706, 1483, 1292, 1177, 1087, 1055, 1051, 1099, 1186, 1336, 1524, 1716, 1927, 2175, 2555, 2289, 2030, 1772, 1549, 1364, 1231, 1138, 1096, 1113, 1149, 1252, 1375, 1551, 1764, 1989, 2191, 2693, 2331, 2065, 1855, 1623, 1440, 1299, 1215, 1181, 1172, 1228, 1330, 1460, 1633, 1839, 2062, 2290, 2827, 2468, 2173, 1925, 1742, 1550, 1413, 1308, 1270, 1272, 1316, 1415, 1576, 1733, 1923, 2104, 2353, 2907, 2570, 2249, 2049, 1841, 1695, 1552, 1422, 1401, 1409, 1464, 1561, 1690, 1868, 2020, 2246, 2459, 3109, 2726, 2408, 2188, 2003, 1822, 1690, 1618, 1538, 1571, 1599, 1694, 1831, 1980, 2136, 2312, 2603, 3163, 2874, 2593, 2349, 2142, 1993, 1853, 1747, 1732, 1745, 1776, 1904, 1983, 2171, 2267, 2498, 2766, 3378, 3132, 2808, 2521, 2377, 2170, 2050, 1969, 1920, 1927, 2016, 2043, 2161, 2323, 2452, 2694, 2966]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2673, 2432, 2109, 1918, 1791, 1688, 1594, 1548, 1533, 1508, 1547, 1610, 1693, 1788, 1873, 2082, 2266, 2564, 2230, 1958, 1792, 1693, 1591, 1509, 1456, 1435, 1433, 1473, 1504, 1602, 1659, 1773, 1919, 2123, 2385, 2097, 1890, 1721, 1594, 1509, 1414, 1361, 1320, 1321, 1362, 1417, 1505, 1587, 1687, 1811, 2024, 2300, 2004, 1811, 1661, 1543, 1410, 1321, 1250, 1230, 1250, 1277, 1320, 1430, 1538, 1644, 1741, 1916, 2168, 1960, 1745, 1611, 1441, 1340, 1226, 1173, 1151, 1157, 1206, 1252, 1355, 1473, 1580, 1715, 1874, 2150, 1880, 1704, 1541, 1426, 1281, 1188, 1110, 1098, 1101, 1143, 1205, 1302, 1419, 1562, 1675, 1866, 2088, 1862, 1685, 1501, 1361, 1246, 1147, 1090, 1044, 1057, 1114, 1179, 1282, 1401, 1520, 1648, 1800, 2068, 1847, 1656, 1505, 1351, 1223, 1123, 1057, 1046, 1037, 1088, 1150, 1257, 1392, 1509, 1657, 1801, 2088, 1870, 1685, 1517, 1344, 1217, 1131, 1062, 1024, 1056, 1080, 1153, 1255, 1369, 1506, 1647, 1810, 2098, 1882, 1683, 1505, 1382, 1236, 1139, 1085, 1065, 1075, 1103, 1165, 1275, 1389, 1535, 1680, 1822, 2163, 1875, 1723, 1550, 1404, 1276, 1199, 1114, 1104, 1113, 1160, 1216, 1317, 1415, 1562, 1700, 1861, 2205, 1949, 1767, 1630, 1451, 1351, 1249, 1176, 1170, 1159, 1195, 1271, 1365, 1490, 1630, 1765, 1977, 2283, 2040, 1828, 1661, 1516, 1420, 1324, 1256, 1240, 1245, 1275, 1339, 1456, 1566, 1687, 1790, 1973, 2423, 2157, 1894, 1746, 1623, 1495, 1438, 1358, 1337, 1330, 1377, 1432, 1542, 1656, 1739, 1859, 2085, 2560, 2250, 2027, 1863, 1713, 1614, 1541, 1486, 1440, 1452, 1500, 1551, 1639, 1741, 1846, 1983, 2188, 2716, 2403, 2125, 1957, 1835, 1730, 1644, 1610, 1589, 1594, 1598, 1668, 1710, 1851, 1958, 2149, 2353, 2812, 2585, 2299, 2116, 1989, 1865, 1772, 1739, 1699, 1738, 1741, 1807, 1854, 1962, 2122, 2290, 2542]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2635, 2408, 2103, 1918, 1751, 1668, 1579, 1510, 1481, 1494, 1522, 1543, 1638, 1731, 1839, 2006, 2247, 2547, 2242, 1964, 1818, 1666, 1565, 1502, 1433, 1382, 1404, 1425, 1462, 1556, 1640, 1726, 1903, 2129, 2447, 2119, 1913, 1734, 1576, 1479, 1378, 1320, 1305, 1288, 1328, 1385, 1455, 1566, 1665, 1804, 2021, 2308, 2031, 1788, 1658, 1504, 1397, 1295, 1233, 1201, 1208, 1249, 1321, 1401, 1502, 1622, 1735, 1928, 2235, 1943, 1733, 1592, 1460, 1320, 1223, 1156, 1125, 1136, 1170, 1254, 1321, 1474, 1565, 1692, 1898, 2159, 1915, 1725, 1549, 1403, 1253, 1178, 1098, 1078, 1069, 1121, 1188, 1281, 1403, 1546, 1681, 1832, 2156, 1889, 1702, 1535, 1381, 1237, 1136, 1072, 1040, 1045, 1094, 1154, 1241, 1379, 1520, 1653, 1844, 2121, 1866, 1691, 1501, 1352, 1230, 1115, 1061, 1027, 1024, 1072, 1139, 1239, 1365, 1524, 1656, 1803, 2128, 1905, 1674, 1500, 1360, 1219, 1118, 1052, 1035, 1034, 1075, 1150, 1240, 1368, 1493, 1641, 1817, 2113, 1894, 1702, 1528, 1368, 1225, 1137, 1072, 1045, 1044, 1096, 1151, 1247, 1382, 1529, 1677, 1819, 2197, 1923, 1739, 1557, 1413, 1283, 1172, 1108, 1086, 1095, 1123, 1201, 1288, 1430, 1581, 1685, 1886, 2220, 1956, 1807, 1624, 1492, 1329, 1236, 1184, 1130, 1146, 1189, 1264, 1356, 1500, 1615, 1743, 1923, 2293, 2066, 1848, 1656, 1534, 1412, 1314, 1238, 1227, 1218, 1252, 1320, 1434, 1545, 1670, 1811, 1987, 2427, 2164, 1931, 1757, 1621, 1511, 1426, 1347, 1322, 1345, 1350, 1435, 1507, 1622, 1754, 1854, 2084, 2578, 2264, 2056, 1849, 1733, 1627, 1530, 1460, 1434, 1453, 1470, 1527, 1603, 1714, 1807, 1986, 2165, 2661, 2421, 2140, 1968, 1837, 1720, 1643, 1579, 1556, 1541, 1589, 1647, 1697, 1810, 1895, 2071, 2316, 2779, 2624, 2311, 2113, 1946, 1830, 1751, 1695, 1689, 1683, 1710, 1745, 1793, 1922, 2028, 2217, 2515]
| },
| "lsc_samples_blue": {
| "uCoeff": [2577, 2417, 2043, 1830, 1729, 1662, 1534, 1483, 1468, 1496, 1537, 1569, 1656, 1735, 1797, 2010, 2206, 2478, 2197, 1928, 1764, 1627, 1518, 1475, 1375, 1392, 1365, 1397, 1453, 1527, 1620, 1768, 1870, 2076, 2305, 2042, 1813, 1677, 1536, 1440, 1343, 1293, 1273, 1265, 1300, 1366, 1462, 1555, 1656, 1764, 1991, 2177, 1952, 1765, 1601, 1471, 1372, 1258, 1193, 1188, 1190, 1240, 1289, 1367, 1491, 1584, 1714, 1884, 2094, 1899, 1676, 1557, 1398, 1306, 1215, 1153, 1124, 1117, 1144, 1207, 1309, 1436, 1517, 1643, 1832, 2091, 1871, 1658, 1534, 1379, 1247, 1154, 1104, 1057, 1068, 1119, 1151, 1266, 1354, 1507, 1650, 1784, 2029, 1792, 1654, 1495, 1333, 1232, 1133, 1067, 1041, 1035, 1071, 1143, 1232, 1368, 1479, 1609, 1795, 2024, 1802, 1619, 1478, 1332, 1214, 1110, 1065, 1036, 1024, 1074, 1109, 1221, 1359, 1499, 1605, 1767, 2027, 1811, 1634, 1483, 1341, 1212, 1138, 1076, 1037, 1058, 1079, 1125, 1231, 1360, 1465, 1601, 1790, 1993, 1832, 1661, 1512, 1363, 1255, 1146, 1091, 1072, 1077, 1083, 1157, 1250, 1348, 1494, 1640, 1812, 2097, 1893, 1669, 1529, 1404, 1299, 1193, 1128, 1108, 1096, 1138, 1205, 1297, 1390, 1472, 1668, 1912, 2182, 1944, 1752, 1604, 1463, 1328, 1268, 1213, 1166, 1169, 1185, 1249, 1328, 1464, 1571, 1727, 1908, 2268, 2013, 1820, 1663, 1571, 1425, 1329, 1280, 1237, 1240, 1283, 1321, 1422, 1509, 1627, 1777, 1967, 2377, 2093, 1866, 1720, 1597, 1545, 1418, 1356, 1323, 1346, 1357, 1409, 1477, 1597, 1718, 1840, 2096, 2466, 2268, 2011, 1803, 1717, 1624, 1534, 1488, 1431, 1465, 1462, 1532, 1578, 1677, 1817, 1943, 2176, 2669, 2391, 2121, 1939, 1821, 1751, 1674, 1597, 1573, 1559, 1586, 1614, 1695, 1786, 1892, 2082, 2327, 2741, 2567, 2304, 2051, 1958, 1817, 1770, 1682, 1675, 1662, 1681, 1747, 1796, 1843, 2048, 2188, 2542]
| }
| }, {
| "name": "2592x1944_A_100",
| "resolution": "2592x1944",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4062, 3463, 2959, 2536, 2331, 2089, 1930, 1851, 1780, 1772, 1859, 1961, 2113, 2278, 2518, 2846, 3386, 3773, 3208, 2685, 2368, 2112, 1909, 1742, 1648, 1608, 1615, 1647, 1755, 1923, 2103, 2320, 2633, 3109, 3556, 2910, 2499, 2194, 1949, 1732, 1584, 1466, 1435, 1441, 1482, 1605, 1709, 1917, 2142, 2459, 2868, 3369, 2765, 2367, 2026, 1792, 1570, 1437, 1336, 1283, 1292, 1367, 1443, 1606, 1811, 2045, 2282, 2691, 3035, 2584, 2231, 1924, 1672, 1472, 1323, 1230, 1179, 1202, 1254, 1344, 1506, 1676, 1916, 2211, 2560, 2960, 2561, 2158, 1845, 1574, 1382, 1251, 1131, 1106, 1112, 1166, 1258, 1392, 1622, 1872, 2146, 2476, 2873, 2447, 2087, 1768, 1532, 1322, 1175, 1095, 1049, 1051, 1114, 1189, 1356, 1536, 1798, 2064, 2419, 2911, 2430, 2066, 1769, 1486, 1308, 1164, 1064, 1024, 1039, 1089, 1170, 1328, 1521, 1751, 2064, 2375, 2866, 2419, 2025, 1750, 1485, 1286, 1138, 1061, 1027, 1031, 1087, 1167, 1317, 1510, 1771, 2054, 2396, 2874, 2438, 2048, 1766, 1509, 1301, 1179, 1087, 1055, 1051, 1100, 1191, 1354, 1568, 1805, 2090, 2455, 2938, 2525, 2166, 1842, 1582, 1377, 1235, 1139, 1097, 1114, 1152, 1261, 1397, 1601, 1864, 2169, 2483, 3132, 2590, 2217, 1942, 1666, 1460, 1307, 1219, 1184, 1175, 1234, 1344, 1491, 1697, 1958, 2268, 2623, 3334, 2778, 2359, 2033, 1804, 1582, 1430, 1318, 1277, 1280, 1329, 1439, 1624, 1818, 2068, 2336, 2726, 3481, 2936, 2472, 2191, 1926, 1748, 1584, 1442, 1419, 1429, 1491, 1604, 1760, 1985, 2201, 2535, 2896, 3808, 3175, 2695, 2377, 2128, 1903, 1745, 1661, 1574, 1611, 1647, 1762, 1934, 2136, 2367, 2652, 3132, 3963, 3425, 2967, 2604, 2317, 2118, 1944, 1819, 1800, 1816, 1859, 2017, 2133, 2391, 2564, 2937, 3418, 4387, 3847, 3301, 2862, 2634, 2355, 2196, 2092, 2034, 2045, 2157, 2208, 2377, 2618, 2846, 3260, 3798]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3380, 2910, 2409, 2122, 1937, 1795, 1675, 1617, 1597, 1571, 1621, 1705, 1820, 1962, 2108, 2441, 2798, 3141, 2589, 2181, 1940, 1797, 1664, 1562, 1499, 1474, 1473, 1523, 1566, 1692, 1781, 1952, 2186, 2534, 2842, 2380, 2070, 1834, 1667, 1558, 1447, 1385, 1340, 1343, 1390, 1457, 1567, 1679, 1824, 2018, 2359, 2689, 2236, 1954, 1749, 1597, 1440, 1339, 1262, 1240, 1261, 1292, 1343, 1472, 1609, 1757, 1911, 2188, 2490, 2161, 1861, 1681, 1477, 1359, 1235, 1178, 1155, 1161, 1214, 1266, 1383, 1526, 1670, 1864, 2113, 2446, 2050, 1803, 1595, 1455, 1293, 1193, 1112, 1099, 1103, 1147, 1214, 1322, 1460, 1641, 1804, 2088, 2354, 2018, 1775, 1546, 1382, 1254, 1150, 1091, 1044, 1057, 1116, 1185, 1298, 1436, 1587, 1765, 1994, 2322, 1995, 1738, 1547, 1369, 1229, 1125, 1057, 1046, 1037, 1089, 1154, 1270, 1424, 1571, 1771, 1990, 2344, 2020, 1769, 1559, 1361, 1223, 1132, 1062, 1024, 1056, 1081, 1157, 1268, 1399, 1567, 1758, 1999, 2359, 2036, 1768, 1547, 1402, 1243, 1141, 1085, 1065, 1075, 1104, 1169, 1289, 1421, 1601, 1798, 2016, 2448, 2034, 1818, 1600, 1428, 1286, 1203, 1115, 1105, 1114, 1163, 1223, 1335, 1452, 1635, 1826, 2070, 2515, 2133, 1876, 1693, 1482, 1367, 1256, 1179, 1172, 1162, 1200, 1283, 1389, 1539, 1719, 1912, 2228, 2637, 2258, 1958, 1737, 1558, 1444, 1337, 1264, 1246, 1252, 1286, 1358, 1493, 1631, 1794, 1955, 2239, 2849, 2425, 2052, 1846, 1686, 1532, 1463, 1375, 1352, 1346, 1399, 1464, 1596, 1743, 1869, 2056, 2409, 3075, 2573, 2235, 1999, 1801, 1674, 1584, 1520, 1469, 1483, 1540, 1604, 1718, 1858, 2016, 2236, 2579, 3349, 2814, 2388, 2136, 1962, 1821, 1712, 1668, 1643, 1651, 1661, 1751, 1817, 2010, 2181, 2484, 2850, 3578, 3114, 2651, 2365, 2172, 2001, 1878, 1832, 1785, 1831, 1843, 1934, 2011, 2176, 2426, 2719, 3193]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3325, 2877, 2401, 2122, 1889, 1772, 1658, 1573, 1539, 1555, 1593, 1627, 1754, 1892, 2064, 2339, 2771, 3117, 2605, 2188, 1971, 1766, 1635, 1555, 1474, 1416, 1442, 1469, 1519, 1639, 1758, 1894, 2164, 2543, 2924, 2408, 2097, 1850, 1647, 1525, 1408, 1342, 1324, 1307, 1353, 1422, 1510, 1654, 1798, 2010, 2356, 2699, 2269, 1927, 1746, 1554, 1427, 1312, 1244, 1209, 1217, 1263, 1344, 1440, 1568, 1731, 1903, 2203, 2575, 2140, 1848, 1660, 1498, 1338, 1232, 1160, 1128, 1140, 1176, 1268, 1347, 1528, 1653, 1836, 2144, 2458, 2092, 1827, 1604, 1430, 1264, 1183, 1099, 1079, 1070, 1124, 1196, 1299, 1443, 1622, 1811, 2045, 2439, 2050, 1794, 1583, 1403, 1245, 1138, 1073, 1040, 1045, 1095, 1159, 1254, 1412, 1587, 1771, 2049, 2388, 2018, 1777, 1543, 1370, 1237, 1116, 1061, 1027, 1024, 1073, 1143, 1251, 1395, 1589, 1770, 1992, 2393, 2061, 1756, 1541, 1378, 1225, 1119, 1052, 1035, 1034, 1076, 1154, 1252, 1398, 1552, 1751, 2008, 2377, 2051, 1790, 1572, 1387, 1231, 1139, 1072, 1045, 1044, 1097, 1155, 1260, 1414, 1594, 1795, 2012, 2491, 2091, 1836, 1607, 1437, 1293, 1175, 1109, 1086, 1096, 1125, 1208, 1304, 1468, 1656, 1808, 2102, 2535, 2141, 1921, 1687, 1526, 1343, 1242, 1187, 1132, 1148, 1194, 1275, 1380, 1550, 1702, 1885, 2160, 2650, 2290, 1981, 1731, 1578, 1436, 1327, 1245, 1233, 1224, 1262, 1338, 1469, 1607, 1775, 1980, 2258, 2855, 2434, 2096, 1859, 1683, 1549, 1451, 1363, 1336, 1361, 1370, 1467, 1558, 1705, 1887, 2050, 2407, 3099, 2591, 2270, 1983, 1824, 1688, 1572, 1492, 1462, 1484, 1507, 1578, 1677, 1826, 1970, 2240, 2548, 3274, 2837, 2406, 2149, 1964, 1810, 1711, 1634, 1607, 1592, 1651, 1727, 1802, 1961, 2103, 2383, 2800, 3531, 3167, 2667, 2361, 2121, 1960, 1854, 1783, 1773, 1769, 1808, 1861, 1939, 2126, 2305, 2622, 3154]
| },
| "lsc_samples_blue": {
| "uCoeff": [3242, 2890, 2324, 2013, 1863, 1765, 1606, 1543, 1524, 1558, 1610, 1657, 1776, 1897, 2010, 2345, 2712, 3022, 2546, 2144, 1906, 1721, 1582, 1525, 1410, 1427, 1399, 1438, 1508, 1605, 1734, 1945, 2122, 2470, 2735, 2311, 1977, 1783, 1601, 1482, 1370, 1312, 1290, 1283, 1323, 1401, 1518, 1641, 1787, 1959, 2315, 2528, 2171, 1900, 1681, 1518, 1399, 1272, 1202, 1196, 1198, 1253, 1310, 1403, 1556, 1686, 1877, 2146, 2395, 2087, 1781, 1621, 1430, 1323, 1223, 1157, 1127, 1120, 1149, 1218, 1333, 1485, 1597, 1776, 2059, 2371, 2039, 1751, 1587, 1405, 1258, 1158, 1106, 1058, 1069, 1122, 1157, 1283, 1389, 1578, 1774, 1984, 2281, 1935, 1739, 1539, 1352, 1240, 1135, 1067, 1041, 1035, 1072, 1147, 1245, 1400, 1541, 1718, 1988, 2267, 1942, 1696, 1518, 1349, 1220, 1111, 1065, 1036, 1024, 1075, 1112, 1232, 1388, 1560, 1709, 1948, 2268, 1951, 1711, 1523, 1358, 1218, 1139, 1076, 1037, 1058, 1080, 1128, 1242, 1389, 1521, 1703, 1974, 2229, 1977, 1743, 1555, 1382, 1262, 1148, 1091, 1072, 1077, 1084, 1161, 1263, 1377, 1555, 1751, 2003, 2366, 2055, 1756, 1577, 1428, 1309, 1196, 1129, 1109, 1097, 1140, 1212, 1314, 1424, 1533, 1788, 2134, 2486, 2127, 1859, 1665, 1495, 1342, 1275, 1217, 1168, 1172, 1190, 1260, 1350, 1510, 1651, 1866, 2141, 2617, 2226, 1949, 1739, 1618, 1449, 1342, 1289, 1243, 1247, 1294, 1339, 1456, 1567, 1725, 1939, 2232, 2789, 2346, 2019, 1816, 1657, 1586, 1442, 1373, 1337, 1362, 1377, 1439, 1524, 1676, 1844, 2033, 2423, 2949, 2596, 2216, 1930, 1806, 1685, 1576, 1522, 1459, 1497, 1499, 1584, 1649, 1783, 1981, 2185, 2563, 3285, 2798, 2383, 2115, 1945, 1845, 1746, 1654, 1625, 1612, 1648, 1690, 1800, 1933, 2099, 2397, 2814, 3477, 3091, 2658, 2285, 2135, 1945, 1876, 1768, 1758, 1745, 1774, 1864, 1942, 2029, 2331, 2583, 3193]
| }
| }, {
| "name": "2592x1944_CWF_70",
| "resolution": "2592x1944",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2639, 2341, 2064, 1921, 1741, 1647, 1533, 1471, 1466, 1464, 1466, 1549, 1620, 1750, 1821, 1992, 2254, 2547, 2215, 1963, 1767, 1637, 1520, 1453, 1385, 1343, 1356, 1383, 1429, 1533, 1633, 1743, 1876, 2138, 2422, 2074, 1870, 1707, 1557, 1458, 1373, 1289, 1271, 1257, 1285, 1339, 1443, 1553, 1661, 1807, 2021, 2287, 1986, 1800, 1621, 1481, 1354, 1277, 1215, 1187, 1180, 1221, 1284, 1354, 1487, 1608, 1693, 1894, 2145, 1930, 1723, 1570, 1431, 1310, 1222, 1163, 1115, 1119, 1159, 1218, 1293, 1430, 1538, 1668, 1888, 2101, 1879, 1671, 1504, 1379, 1265, 1164, 1104, 1059, 1070, 1105, 1152, 1244, 1363, 1517, 1647, 1785, 2068, 1838, 1634, 1486, 1332, 1223, 1136, 1071, 1037, 1033, 1067, 1133, 1238, 1328, 1477, 1624, 1753, 2095, 1819, 1613, 1499, 1319, 1199, 1112, 1073, 1030, 1024, 1057, 1103, 1218, 1305, 1457, 1626, 1801, 2024, 1808, 1613, 1475, 1329, 1212, 1120, 1061, 1044, 1035, 1066, 1131, 1215, 1316, 1471, 1604, 1799, 2112, 1837, 1653, 1472, 1318, 1216, 1135, 1080, 1056, 1061, 1083, 1136, 1226, 1355, 1489, 1605, 1798, 2139, 1867, 1700, 1522, 1385, 1258, 1188, 1116, 1091, 1111, 1127, 1177, 1283, 1398, 1525, 1654, 1810, 2169, 1952, 1752, 1589, 1442, 1326, 1235, 1183, 1143, 1147, 1171, 1236, 1330, 1450, 1576, 1711, 1878, 2263, 2004, 1809, 1660, 1530, 1401, 1314, 1245, 1212, 1210, 1244, 1316, 1417, 1517, 1648, 1777, 1983, 2406, 2080, 1888, 1719, 1582, 1472, 1393, 1326, 1290, 1298, 1327, 1405, 1480, 1595, 1719, 1838, 2064, 2552, 2262, 1981, 1855, 1703, 1585, 1497, 1424, 1407, 1397, 1432, 1486, 1594, 1704, 1813, 1919, 2196, 2663, 2356, 2097, 1950, 1824, 1695, 1601, 1571, 1520, 1495, 1560, 1625, 1675, 1781, 1881, 2094, 2310, 2851, 2537, 2290, 2067, 1924, 1863, 1731, 1658, 1648, 1656, 1666, 1705, 1822, 1921, 2068, 2252, 2448]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2475, 2220, 1974, 1816, 1657, 1565, 1506, 1463, 1430, 1433, 1466, 1509, 1574, 1668, 1764, 1931, 2159, 2436, 2105, 1861, 1693, 1585, 1498, 1426, 1377, 1361, 1350, 1401, 1427, 1508, 1578, 1676, 1814, 1986, 2310, 1958, 1765, 1645, 1510, 1419, 1338, 1318, 1277, 1271, 1300, 1349, 1430, 1494, 1568, 1716, 1905, 2171, 1913, 1713, 1559, 1453, 1350, 1279, 1212, 1188, 1190, 1235, 1296, 1359, 1465, 1553, 1656, 1813, 2077, 1829, 1642, 1506, 1397, 1279, 1179, 1146, 1120, 1114, 1173, 1225, 1320, 1415, 1509, 1606, 1786, 2025, 1796, 1618, 1473, 1344, 1240, 1141, 1087, 1073, 1072, 1130, 1178, 1266, 1382, 1492, 1593, 1726, 1996, 1774, 1583, 1452, 1316, 1209, 1124, 1065, 1027, 1056, 1090, 1151, 1240, 1346, 1471, 1566, 1688, 1940, 1727, 1576, 1435, 1313, 1199, 1094, 1048, 1024, 1026, 1080, 1128, 1223, 1353, 1470, 1598, 1689, 1984, 1742, 1579, 1443, 1315, 1185, 1121, 1055, 1033, 1050, 1066, 1136, 1224, 1344, 1458, 1576, 1699, 2003, 1772, 1609, 1466, 1323, 1196, 1105, 1069, 1053, 1057, 1085, 1139, 1247, 1359, 1475, 1604, 1748, 2048, 1800, 1625, 1496, 1361, 1236, 1166, 1098, 1087, 1096, 1113, 1182, 1275, 1392, 1513, 1607, 1793, 2074, 1826, 1665, 1530, 1410, 1299, 1216, 1156, 1131, 1132, 1169, 1239, 1330, 1435, 1554, 1655, 1859, 2193, 1926, 1731, 1580, 1460, 1345, 1284, 1235, 1202, 1201, 1233, 1293, 1408, 1503, 1584, 1699, 1893, 2288, 2002, 1810, 1653, 1549, 1447, 1374, 1305, 1298, 1290, 1336, 1382, 1478, 1556, 1652, 1758, 1971, 2433, 2151, 1907, 1765, 1637, 1541, 1462, 1413, 1388, 1385, 1416, 1460, 1552, 1644, 1742, 1856, 2070, 2504, 2275, 1998, 1833, 1733, 1646, 1564, 1510, 1515, 1495, 1540, 1597, 1637, 1726, 1817, 1987, 2215, 2687, 2462, 2187, 2006, 1864, 1763, 1671, 1653, 1576, 1594, 1612, 1687, 1754, 1855, 1967, 2157, 2391]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2494, 2273, 1981, 1818, 1677, 1587, 1519, 1466, 1448, 1428, 1475, 1497, 1560, 1638, 1742, 1900, 2112, 2422, 2128, 1886, 1721, 1610, 1500, 1437, 1386, 1359, 1370, 1373, 1424, 1490, 1570, 1657, 1805, 2064, 2305, 2009, 1795, 1630, 1531, 1433, 1344, 1292, 1276, 1274, 1294, 1344, 1423, 1492, 1587, 1715, 1920, 2207, 1910, 1736, 1586, 1473, 1359, 1265, 1222, 1196, 1193, 1220, 1296, 1354, 1443, 1538, 1638, 1842, 2096, 1835, 1667, 1548, 1390, 1295, 1200, 1149, 1126, 1120, 1165, 1212, 1289, 1407, 1493, 1617, 1767, 2038, 1796, 1643, 1496, 1353, 1233, 1160, 1100, 1081, 1069, 1121, 1164, 1254, 1351, 1473, 1588, 1746, 2008, 1791, 1616, 1461, 1320, 1224, 1126, 1071, 1041, 1048, 1080, 1134, 1226, 1337, 1451, 1563, 1706, 2029, 1738, 1591, 1456, 1328, 1206, 1104, 1070, 1025, 1027, 1065, 1120, 1201, 1330, 1439, 1570, 1702, 2007, 1780, 1609, 1436, 1322, 1194, 1102, 1047, 1024, 1029, 1062, 1126, 1219, 1330, 1456, 1569, 1713, 2028, 1790, 1625, 1472, 1316, 1220, 1134, 1073, 1045, 1046, 1074, 1135, 1222, 1347, 1461, 1583, 1748, 2051, 1819, 1659, 1503, 1359, 1240, 1176, 1093, 1085, 1087, 1119, 1184, 1269, 1365, 1493, 1602, 1762, 2118, 1880, 1708, 1549, 1411, 1292, 1222, 1162, 1135, 1135, 1163, 1235, 1312, 1424, 1546, 1667, 1807, 2208, 1931, 1746, 1609, 1474, 1378, 1288, 1226, 1205, 1197, 1240, 1302, 1375, 1484, 1595, 1697, 1866, 2302, 2005, 1813, 1681, 1556, 1472, 1375, 1300, 1281, 1299, 1305, 1389, 1451, 1549, 1675, 1784, 1989, 2434, 2142, 1928, 1781, 1657, 1571, 1467, 1404, 1398, 1400, 1416, 1466, 1524, 1629, 1721, 1879, 2075, 2581, 2289, 2056, 1903, 1742, 1673, 1585, 1517, 1493, 1493, 1523, 1587, 1628, 1719, 1813, 1977, 2151, 2720, 2458, 2217, 2014, 1867, 1771, 1685, 1627, 1611, 1618, 1623, 1685, 1768, 1814, 1956, 2111, 2334]
| },
| "lsc_samples_blue": {
| "uCoeff": [2400, 2205, 1945, 1712, 1622, 1534, 1457, 1392, 1399, 1381, 1460, 1479, 1530, 1601, 1698, 1856, 2097, 2288, 2007, 1783, 1640, 1517, 1462, 1380, 1325, 1292, 1311, 1335, 1386, 1430, 1526, 1638, 1768, 1940, 2186, 1901, 1678, 1562, 1443, 1373, 1303, 1241, 1235, 1212, 1255, 1304, 1385, 1465, 1547, 1667, 1875, 2023, 1855, 1626, 1486, 1383, 1309, 1224, 1172, 1136, 1166, 1182, 1248, 1316, 1396, 1446, 1596, 1756, 1966, 1799, 1605, 1456, 1333, 1245, 1165, 1126, 1098, 1080, 1120, 1168, 1273, 1358, 1451, 1562, 1699, 1901, 1715, 1548, 1425, 1309, 1199, 1117, 1084, 1070, 1064, 1087, 1137, 1210, 1329, 1455, 1526, 1699, 1875, 1675, 1532, 1401, 1281, 1189, 1099, 1053, 1034, 1026, 1067, 1117, 1204, 1290, 1398, 1498, 1678, 1858, 1675, 1531, 1395, 1262, 1173, 1097, 1053, 1042, 1024, 1066, 1091, 1185, 1284, 1398, 1527, 1665, 1877, 1697, 1550, 1402, 1295, 1170, 1111, 1059, 1031, 1057, 1059, 1123, 1198, 1279, 1405, 1513, 1691, 1873, 1701, 1540, 1409, 1297, 1178, 1115, 1083, 1061, 1057, 1086, 1115, 1212, 1313, 1411, 1533, 1668, 1911, 1746, 1585, 1460, 1335, 1230, 1161, 1119, 1086, 1091, 1111, 1177, 1264, 1363, 1434, 1585, 1777, 1966, 1783, 1622, 1506, 1368, 1291, 1206, 1170, 1136, 1130, 1142, 1215, 1296, 1383, 1492, 1640, 1815, 2079, 1885, 1670, 1521, 1448, 1331, 1268, 1226, 1184, 1209, 1218, 1261, 1344, 1456, 1566, 1673, 1832, 2210, 1968, 1741, 1629, 1499, 1437, 1358, 1289, 1273, 1292, 1301, 1339, 1414, 1516, 1597, 1719, 1926, 2326, 2068, 1836, 1731, 1614, 1502, 1452, 1362, 1359, 1385, 1391, 1431, 1499, 1572, 1653, 1810, 2025, 2435, 2164, 1921, 1794, 1673, 1605, 1528, 1486, 1480, 1463, 1471, 1527, 1576, 1674, 1773, 1926, 2134, 2554, 2402, 2045, 1935, 1780, 1681, 1617, 1588, 1533, 1512, 1597, 1600, 1676, 1741, 1879, 2026, 2324]
| }
| }, {
| "name": "2592x1944_CWF_100",
| "resolution": "2592x1944",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3331, 2788, 2351, 2125, 1877, 1748, 1605, 1529, 1522, 1522, 1529, 1634, 1733, 1915, 2041, 2320, 2781, 3117, 2570, 2187, 1910, 1733, 1584, 1500, 1421, 1373, 1389, 1422, 1481, 1612, 1750, 1914, 2129, 2555, 2891, 2351, 2045, 1818, 1625, 1502, 1402, 1308, 1288, 1274, 1307, 1371, 1497, 1639, 1793, 2013, 2355, 2672, 2213, 1941, 1704, 1529, 1380, 1292, 1225, 1195, 1188, 1233, 1305, 1388, 1551, 1714, 1851, 2159, 2460, 2125, 1836, 1635, 1466, 1327, 1231, 1168, 1118, 1122, 1165, 1230, 1316, 1478, 1621, 1806, 2131, 2384, 2048, 1766, 1554, 1404, 1276, 1168, 1106, 1060, 1071, 1107, 1158, 1260, 1399, 1589, 1771, 1985, 2329, 1990, 1717, 1530, 1351, 1231, 1138, 1072, 1037, 1033, 1068, 1137, 1251, 1357, 1538, 1736, 1936, 2355, 1962, 1689, 1541, 1336, 1205, 1113, 1073, 1030, 1024, 1057, 1106, 1229, 1330, 1513, 1734, 1990, 2265, 1947, 1688, 1514, 1346, 1218, 1121, 1061, 1044, 1035, 1067, 1134, 1225, 1341, 1528, 1707, 1985, 2376, 1983, 1734, 1511, 1334, 1222, 1137, 1080, 1056, 1061, 1084, 1140, 1237, 1384, 1549, 1710, 1986, 2418, 2025, 1791, 1569, 1407, 1267, 1191, 1117, 1091, 1112, 1129, 1183, 1299, 1433, 1593, 1772, 2007, 2470, 2136, 1859, 1648, 1472, 1340, 1241, 1186, 1145, 1149, 1175, 1246, 1352, 1495, 1657, 1847, 2102, 2611, 2214, 1936, 1736, 1574, 1424, 1327, 1252, 1218, 1216, 1254, 1334, 1451, 1576, 1749, 1939, 2252, 2827, 2330, 2045, 1815, 1640, 1507, 1416, 1341, 1303, 1312, 1346, 1435, 1528, 1674, 1845, 2031, 2381, 3065, 2589, 2179, 1990, 1790, 1642, 1536, 1453, 1433, 1424, 1466, 1533, 1667, 1815, 1977, 2155, 2589, 3276, 2752, 2353, 2128, 1949, 1781, 1665, 1625, 1567, 1542, 1619, 1703, 1776, 1927, 2086, 2413, 2791, 3634, 3050, 2640, 2304, 2095, 1999, 1831, 1741, 1727, 1738, 1757, 1815, 1973, 2125, 2357, 2668, 3058]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3097, 2626, 2237, 1996, 1777, 1653, 1574, 1520, 1482, 1486, 1529, 1587, 1678, 1814, 1969, 2239, 2645, 2965, 2427, 2061, 1822, 1673, 1559, 1470, 1412, 1393, 1382, 1443, 1479, 1583, 1685, 1831, 2049, 2346, 2741, 2205, 1919, 1746, 1572, 1459, 1364, 1339, 1294, 1289, 1323, 1382, 1482, 1570, 1681, 1899, 2201, 2520, 2123, 1838, 1633, 1498, 1376, 1295, 1222, 1196, 1198, 1248, 1317, 1394, 1526, 1649, 1805, 2053, 2373, 2002, 1742, 1564, 1429, 1295, 1186, 1150, 1123, 1117, 1180, 1237, 1345, 1462, 1587, 1731, 2000, 2288, 1949, 1705, 1520, 1367, 1250, 1145, 1088, 1074, 1073, 1133, 1185, 1283, 1419, 1561, 1706, 1911, 2240, 1914, 1659, 1492, 1334, 1216, 1126, 1065, 1027, 1056, 1091, 1156, 1253, 1376, 1532, 1667, 1854, 2162, 1853, 1647, 1471, 1329, 1205, 1095, 1048, 1024, 1026, 1081, 1131, 1234, 1382, 1528, 1701, 1851, 2215, 1870, 1649, 1479, 1331, 1190, 1122, 1055, 1033, 1050, 1067, 1139, 1235, 1372, 1513, 1674, 1861, 2241, 1907, 1685, 1505, 1340, 1201, 1106, 1069, 1053, 1057, 1086, 1143, 1259, 1389, 1533, 1708, 1924, 2304, 1945, 1706, 1541, 1382, 1244, 1169, 1099, 1087, 1097, 1115, 1188, 1291, 1427, 1579, 1716, 1985, 2350, 1985, 1759, 1583, 1438, 1312, 1222, 1159, 1133, 1134, 1173, 1249, 1352, 1478, 1632, 1780, 2078, 2522, 2120, 1845, 1646, 1498, 1365, 1295, 1242, 1207, 1207, 1242, 1309, 1441, 1560, 1675, 1844, 2137, 2673, 2233, 1953, 1740, 1604, 1480, 1395, 1319, 1311, 1303, 1355, 1410, 1525, 1630, 1766, 1932, 2260, 2906, 2448, 2090, 1885, 1715, 1593, 1499, 1441, 1413, 1411, 1449, 1504, 1619, 1745, 1891, 2076, 2421, 3058, 2647, 2230, 1989, 1844, 1726, 1623, 1558, 1562, 1542, 1597, 1671, 1733, 1861, 2006, 2273, 2661, 3399, 2950, 2508, 2229, 2023, 1882, 1763, 1735, 1646, 1669, 1696, 1794, 1892, 2044, 2227, 2541, 2977]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3124, 2697, 2245, 1999, 1801, 1678, 1589, 1524, 1502, 1481, 1539, 1574, 1662, 1778, 1941, 2197, 2578, 2945, 2457, 2092, 1855, 1701, 1561, 1482, 1422, 1391, 1404, 1411, 1476, 1563, 1675, 1808, 2037, 2453, 2734, 2269, 1955, 1729, 1596, 1475, 1371, 1311, 1293, 1292, 1316, 1377, 1474, 1568, 1704, 1897, 2220, 2567, 2120, 1865, 1664, 1520, 1386, 1280, 1232, 1204, 1202, 1232, 1318, 1388, 1501, 1631, 1783, 2091, 2397, 2009, 1771, 1610, 1421, 1312, 1208, 1153, 1129, 1123, 1171, 1224, 1312, 1453, 1569, 1744, 1976, 2305, 1949, 1733, 1545, 1377, 1243, 1164, 1102, 1082, 1070, 1124, 1171, 1271, 1385, 1539, 1700, 1936, 2254, 1934, 1696, 1502, 1338, 1232, 1128, 1072, 1041, 1048, 1081, 1138, 1238, 1367, 1509, 1664, 1877, 2273, 1866, 1664, 1494, 1345, 1212, 1105, 1070, 1025, 1027, 1066, 1123, 1211, 1357, 1492, 1668, 1867, 2244, 1914, 1683, 1471, 1338, 1199, 1103, 1047, 1024, 1029, 1063, 1129, 1230, 1356, 1511, 1666, 1879, 2272, 1928, 1702, 1511, 1332, 1226, 1136, 1073, 1045, 1046, 1075, 1139, 1233, 1375, 1517, 1684, 1924, 2308, 1968, 1745, 1548, 1380, 1248, 1179, 1094, 1085, 1088, 1121, 1190, 1284, 1397, 1557, 1710, 1947, 2406, 2050, 1808, 1604, 1439, 1305, 1228, 1165, 1137, 1137, 1167, 1245, 1333, 1466, 1622, 1794, 2013, 2540, 2126, 1863, 1679, 1513, 1400, 1300, 1233, 1210, 1203, 1249, 1319, 1405, 1539, 1687, 1841, 2102, 2691, 2237, 1957, 1772, 1612, 1507, 1396, 1314, 1293, 1313, 1322, 1418, 1496, 1622, 1793, 1964, 2283, 2907, 2437, 2115, 1904, 1738, 1627, 1504, 1432, 1424, 1427, 1449, 1511, 1588, 1728, 1865, 2104, 2427, 3164, 2665, 2302, 2072, 1854, 1757, 1647, 1566, 1538, 1539, 1578, 1660, 1722, 1852, 2001, 2261, 2573, 3447, 2945, 2547, 2239, 2027, 1892, 1779, 1706, 1686, 1696, 1708, 1792, 1909, 1994, 2213, 2480, 2896]
| },
| "lsc_samples_blue": {
| "uCoeff": [2990, 2606, 2200, 1868, 1735, 1616, 1519, 1440, 1447, 1428, 1522, 1552, 1626, 1732, 1884, 2138, 2557, 2761, 2299, 1964, 1758, 1594, 1519, 1419, 1355, 1318, 1339, 1369, 1433, 1493, 1623, 1785, 1990, 2283, 2576, 2133, 1814, 1650, 1497, 1409, 1326, 1257, 1250, 1226, 1274, 1332, 1431, 1537, 1656, 1837, 2161, 2327, 2052, 1736, 1550, 1421, 1332, 1236, 1180, 1141, 1173, 1192, 1266, 1347, 1448, 1523, 1731, 1979, 2231, 1965, 1699, 1508, 1360, 1259, 1171, 1129, 1100, 1082, 1124, 1177, 1294, 1398, 1520, 1677, 1888, 2131, 1852, 1625, 1467, 1330, 1207, 1120, 1085, 1071, 1065, 1089, 1142, 1223, 1361, 1518, 1626, 1876, 2088, 1796, 1601, 1437, 1297, 1195, 1101, 1053, 1034, 1026, 1068, 1121, 1215, 1315, 1449, 1587, 1842, 2061, 1792, 1596, 1428, 1275, 1178, 1098, 1053, 1042, 1024, 1067, 1093, 1194, 1307, 1446, 1618, 1821, 2082, 1817, 1617, 1434, 1310, 1174, 1112, 1059, 1031, 1057, 1059, 1126, 1207, 1301, 1453, 1600, 1851, 2079, 1823, 1607, 1443, 1312, 1183, 1116, 1083, 1061, 1057, 1087, 1118, 1223, 1339, 1461, 1625, 1824, 2133, 1881, 1661, 1501, 1354, 1238, 1164, 1120, 1086, 1092, 1113, 1183, 1279, 1395, 1490, 1690, 1965, 2214, 1934, 1709, 1556, 1393, 1304, 1211, 1173, 1138, 1132, 1146, 1224, 1316, 1420, 1561, 1762, 2023, 2375, 2070, 1774, 1580, 1485, 1350, 1279, 1233, 1189, 1215, 1226, 1275, 1372, 1508, 1654, 1812, 2059, 2571, 2191, 1872, 1713, 1549, 1470, 1379, 1302, 1285, 1306, 1318, 1364, 1455, 1584, 1701, 1883, 2201, 2762, 2344, 2004, 1846, 1689, 1551, 1488, 1387, 1382, 1411, 1422, 1472, 1560, 1661, 1783, 2017, 2361, 2963, 2503, 2135, 1942, 1774, 1680, 1583, 1532, 1523, 1506, 1520, 1592, 1662, 1799, 1952, 2194, 2550, 3210, 2870, 2327, 2142, 1924, 1787, 1701, 1662, 1598, 1576, 1678, 1693, 1800, 1904, 2115, 2366, 2881]
| }
| }, {
| "name": "2592x1944_D50_70",
| "resolution": "2592x1944",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2650, 2377, 2076, 1890, 1718, 1617, 1517, 1478, 1439, 1444, 1470, 1529, 1572, 1708, 1862, 2052, 2280, 2602, 2224, 1950, 1770, 1674, 1495, 1438, 1354, 1333, 1354, 1355, 1429, 1537, 1612, 1751, 1913, 2153, 2448, 2093, 1836, 1677, 1560, 1433, 1360, 1279, 1226, 1234, 1255, 1348, 1443, 1541, 1642, 1811, 2009, 2328, 2036, 1810, 1648, 1475, 1346, 1250, 1200, 1150, 1153, 1186, 1249, 1359, 1468, 1625, 1711, 1961, 2210, 1955, 1739, 1562, 1424, 1288, 1212, 1138, 1085, 1097, 1147, 1188, 1302, 1426, 1552, 1676, 1879, 2154, 1942, 1705, 1533, 1371, 1246, 1150, 1084, 1053, 1049, 1085, 1148, 1243, 1358, 1506, 1694, 1805, 2139, 1862, 1670, 1501, 1342, 1210, 1117, 1056, 1024, 1026, 1066, 1127, 1223, 1340, 1479, 1639, 1853, 2125, 1860, 1643, 1497, 1341, 1207, 1108, 1054, 1025, 1024, 1049, 1102, 1203, 1344, 1484, 1667, 1833, 2143, 1865, 1679, 1480, 1325, 1210, 1112, 1058, 1043, 1030, 1062, 1142, 1198, 1317, 1486, 1649, 1836, 2115, 1893, 1669, 1528, 1338, 1221, 1148, 1085, 1061, 1065, 1081, 1152, 1233, 1360, 1491, 1658, 1867, 2140, 1965, 1713, 1582, 1414, 1276, 1190, 1122, 1105, 1112, 1125, 1182, 1290, 1417, 1563, 1672, 1829, 2304, 2005, 1797, 1629, 1478, 1351, 1256, 1188, 1167, 1145, 1198, 1252, 1342, 1481, 1595, 1758, 1980, 2379, 2086, 1864, 1723, 1564, 1416, 1335, 1278, 1214, 1224, 1242, 1326, 1417, 1574, 1689, 1827, 2033, 2489, 2184, 1965, 1800, 1642, 1523, 1437, 1342, 1331, 1321, 1377, 1418, 1525, 1627, 1787, 1933, 2173, 2692, 2304, 2071, 1925, 1743, 1640, 1525, 1498, 1443, 1446, 1471, 1540, 1633, 1748, 1847, 2034, 2278, 2805, 2448, 2224, 2050, 1870, 1793, 1662, 1606, 1580, 1544, 1585, 1684, 1736, 1873, 1985, 2176, 2417, 2971, 2738, 2368, 2205, 1996, 1919, 1815, 1747, 1705, 1709, 1727, 1794, 1904, 1977, 2120, 2380, 2594]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2481, 2211, 1953, 1777, 1641, 1553, 1451, 1426, 1409, 1389, 1433, 1490, 1561, 1635, 1764, 1925, 2108, 2373, 2046, 1823, 1687, 1542, 1470, 1383, 1336, 1331, 1325, 1371, 1399, 1475, 1542, 1656, 1798, 1999, 2263, 1970, 1749, 1623, 1482, 1419, 1310, 1272, 1242, 1250, 1270, 1340, 1411, 1489, 1587, 1730, 1943, 2149, 1864, 1702, 1547, 1422, 1331, 1240, 1187, 1159, 1185, 1217, 1272, 1354, 1460, 1560, 1668, 1822, 2093, 1860, 1655, 1518, 1376, 1269, 1172, 1127, 1100, 1103, 1144, 1204, 1297, 1413, 1531, 1648, 1800, 2024, 1800, 1636, 1479, 1353, 1234, 1123, 1074, 1062, 1047, 1107, 1172, 1261, 1369, 1513, 1622, 1762, 2011, 1778, 1592, 1459, 1323, 1190, 1102, 1049, 1025, 1034, 1085, 1152, 1245, 1364, 1488, 1601, 1743, 2010, 1783, 1601, 1443, 1294, 1190, 1089, 1043, 1026, 1029, 1064, 1126, 1225, 1367, 1475, 1605, 1732, 2005, 1773, 1603, 1468, 1310, 1190, 1093, 1051, 1024, 1047, 1077, 1140, 1238, 1366, 1475, 1609, 1774, 2006, 1794, 1633, 1472, 1337, 1200, 1109, 1075, 1048, 1051, 1096, 1160, 1260, 1385, 1517, 1645, 1792, 2052, 1835, 1648, 1507, 1391, 1247, 1167, 1108, 1085, 1106, 1132, 1190, 1314, 1411, 1536, 1651, 1808, 2144, 1894, 1710, 1564, 1420, 1306, 1220, 1159, 1139, 1148, 1184, 1246, 1348, 1477, 1592, 1712, 1910, 2219, 1986, 1790, 1618, 1480, 1378, 1297, 1228, 1207, 1221, 1258, 1327, 1429, 1561, 1640, 1753, 1934, 2394, 2088, 1844, 1680, 1578, 1481, 1390, 1323, 1305, 1314, 1355, 1401, 1509, 1617, 1707, 1836, 2010, 2460, 2208, 1950, 1786, 1676, 1568, 1495, 1442, 1404, 1415, 1480, 1511, 1594, 1687, 1779, 1929, 2168, 2618, 2348, 2070, 1906, 1764, 1686, 1592, 1554, 1529, 1533, 1568, 1620, 1679, 1803, 1880, 2061, 2279, 2772, 2564, 2216, 2068, 1943, 1790, 1724, 1674, 1644, 1646, 1689, 1746, 1808, 1891, 2040, 2245, 2454]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2524, 2215, 1989, 1800, 1672, 1590, 1495, 1464, 1430, 1450, 1476, 1481, 1553, 1637, 1767, 1931, 2159, 2401, 2120, 1865, 1703, 1617, 1501, 1440, 1372, 1347, 1358, 1365, 1413, 1487, 1576, 1665, 1819, 2058, 2290, 2002, 1774, 1628, 1514, 1438, 1351, 1302, 1262, 1251, 1294, 1344, 1421, 1500, 1594, 1745, 1976, 2174, 1935, 1740, 1594, 1456, 1359, 1265, 1207, 1191, 1179, 1217, 1284, 1355, 1451, 1554, 1675, 1872, 2082, 1864, 1668, 1531, 1403, 1282, 1190, 1154, 1117, 1121, 1154, 1209, 1301, 1423, 1516, 1639, 1814, 2056, 1837, 1636, 1491, 1369, 1225, 1151, 1095, 1072, 1074, 1113, 1177, 1246, 1370, 1484, 1619, 1788, 2026, 1807, 1630, 1488, 1336, 1219, 1133, 1069, 1034, 1049, 1086, 1143, 1222, 1340, 1463, 1600, 1737, 2030, 1793, 1624, 1438, 1317, 1221, 1099, 1054, 1029, 1024, 1072, 1124, 1217, 1328, 1469, 1601, 1762, 2035, 1783, 1631, 1467, 1340, 1201, 1107, 1058, 1026, 1029, 1075, 1134, 1226, 1339, 1464, 1605, 1759, 2022, 1803, 1656, 1471, 1338, 1213, 1132, 1075, 1052, 1054, 1080, 1145, 1247, 1347, 1488, 1638, 1771, 2114, 1865, 1668, 1530, 1403, 1266, 1171, 1112, 1086, 1096, 1112, 1183, 1282, 1400, 1535, 1661, 1818, 2179, 1921, 1715, 1564, 1443, 1321, 1231, 1164, 1136, 1141, 1173, 1249, 1336, 1452, 1579, 1702, 1843, 2271, 2030, 1800, 1641, 1512, 1398, 1303, 1261, 1225, 1231, 1255, 1298, 1401, 1527, 1630, 1766, 1959, 2334, 2096, 1887, 1715, 1597, 1502, 1407, 1341, 1320, 1309, 1353, 1410, 1481, 1613, 1717, 1837, 2019, 2530, 2232, 1992, 1856, 1695, 1609, 1502, 1466, 1417, 1423, 1457, 1501, 1574, 1684, 1759, 1946, 2138, 2639, 2368, 2116, 1957, 1786, 1697, 1625, 1566, 1554, 1546, 1580, 1635, 1688, 1802, 1864, 2021, 2271, 2781, 2565, 2274, 2046, 1939, 1816, 1747, 1686, 1663, 1688, 1699, 1738, 1802, 1863, 1993, 2206, 2477]
| },
| "lsc_samples_blue": {
| "uCoeff": [2423, 2203, 1945, 1738, 1625, 1543, 1482, 1442, 1400, 1385, 1433, 1476, 1529, 1602, 1697, 1883, 2073, 2323, 2057, 1822, 1629, 1534, 1455, 1387, 1342, 1308, 1334, 1359, 1394, 1448, 1542, 1642, 1781, 1979, 2189, 1921, 1692, 1577, 1472, 1376, 1301, 1256, 1233, 1223, 1276, 1314, 1391, 1479, 1574, 1677, 1887, 2088, 1860, 1664, 1526, 1432, 1319, 1219, 1187, 1147, 1170, 1211, 1264, 1337, 1432, 1539, 1638, 1823, 1994, 1778, 1605, 1477, 1367, 1261, 1176, 1117, 1112, 1112, 1145, 1192, 1293, 1398, 1475, 1608, 1759, 1954, 1772, 1582, 1445, 1318, 1218, 1118, 1082, 1075, 1063, 1100, 1159, 1240, 1345, 1490, 1568, 1724, 1923, 1731, 1567, 1459, 1296, 1195, 1113, 1059, 1024, 1050, 1074, 1120, 1221, 1340, 1444, 1562, 1710, 1927, 1744, 1565, 1437, 1304, 1186, 1112, 1062, 1036, 1040, 1070, 1111, 1203, 1319, 1444, 1582, 1724, 1925, 1742, 1560, 1427, 1319, 1190, 1101, 1065, 1040, 1046, 1078, 1132, 1223, 1322, 1431, 1568, 1729, 1964, 1754, 1605, 1429, 1306, 1212, 1122, 1070, 1056, 1071, 1096, 1141, 1248, 1357, 1475, 1593, 1759, 1980, 1803, 1627, 1489, 1366, 1239, 1152, 1118, 1102, 1105, 1131, 1175, 1274, 1389, 1492, 1617, 1786, 2085, 1826, 1648, 1528, 1415, 1303, 1230, 1184, 1153, 1149, 1157, 1241, 1322, 1435, 1553, 1686, 1842, 2147, 1939, 1725, 1582, 1473, 1374, 1286, 1220, 1202, 1199, 1264, 1288, 1388, 1498, 1622, 1714, 1919, 2222, 2007, 1785, 1650, 1521, 1473, 1376, 1333, 1304, 1309, 1332, 1380, 1467, 1568, 1676, 1809, 2010, 2430, 2119, 1924, 1731, 1664, 1525, 1462, 1421, 1401, 1392, 1433, 1482, 1556, 1626, 1746, 1894, 2109, 2490, 2268, 2008, 1848, 1745, 1637, 1587, 1535, 1512, 1521, 1527, 1591, 1618, 1720, 1827, 2002, 2217, 2638, 2446, 2198, 2001, 1841, 1755, 1682, 1635, 1600, 1619, 1632, 1676, 1722, 1819, 1987, 2122, 2355]
| }
| }, {
| "name": "2592x1944_D50_100",
| "resolution": "2592x1944",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3347, 2836, 2367, 2087, 1850, 1713, 1587, 1537, 1492, 1499, 1533, 1611, 1676, 1864, 2094, 2401, 2818, 3193, 2581, 2171, 1913, 1775, 1556, 1484, 1387, 1362, 1387, 1391, 1481, 1617, 1725, 1924, 2178, 2576, 2926, 2375, 2004, 1783, 1629, 1474, 1388, 1298, 1240, 1249, 1274, 1381, 1496, 1625, 1770, 2018, 2340, 2725, 2275, 1953, 1734, 1522, 1371, 1264, 1209, 1156, 1160, 1196, 1267, 1394, 1529, 1734, 1873, 2247, 2543, 2155, 1855, 1626, 1458, 1304, 1220, 1142, 1087, 1099, 1152, 1198, 1326, 1474, 1637, 1816, 2119, 2451, 2124, 1805, 1586, 1396, 1257, 1154, 1085, 1053, 1049, 1087, 1154, 1259, 1393, 1576, 1827, 2011, 2418, 2019, 1758, 1546, 1362, 1217, 1119, 1056, 1024, 1026, 1067, 1131, 1235, 1370, 1541, 1754, 2061, 2392, 2011, 1723, 1539, 1359, 1213, 1109, 1054, 1025, 1024, 1049, 1105, 1213, 1372, 1543, 1783, 2029, 2412, 2014, 1762, 1519, 1341, 1216, 1113, 1058, 1043, 1030, 1063, 1146, 1207, 1342, 1545, 1760, 2031, 2380, 2049, 1752, 1572, 1356, 1227, 1150, 1085, 1061, 1065, 1082, 1156, 1245, 1390, 1551, 1772, 2072, 2420, 2141, 1806, 1635, 1438, 1286, 1193, 1123, 1106, 1113, 1127, 1188, 1307, 1454, 1636, 1793, 2031, 2641, 2200, 1910, 1692, 1511, 1366, 1263, 1191, 1169, 1147, 1203, 1263, 1365, 1529, 1678, 1904, 2231, 2760, 2314, 2000, 1806, 1610, 1440, 1349, 1286, 1220, 1231, 1252, 1344, 1451, 1640, 1797, 2000, 2317, 2935, 2458, 2136, 1908, 1707, 1562, 1462, 1358, 1346, 1336, 1399, 1449, 1577, 1711, 1926, 2148, 2523, 3252, 2642, 2288, 2071, 1835, 1703, 1567, 1532, 1472, 1477, 1508, 1592, 1711, 1866, 2018, 2301, 2699, 3471, 2872, 2510, 2247, 2002, 1892, 1732, 1664, 1633, 1595, 1647, 1769, 1847, 2036, 2214, 2519, 2939, 3806, 3320, 2739, 2474, 2180, 2064, 1927, 1841, 1791, 1799, 1827, 1919, 2071, 2194, 2423, 2840, 3267]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3105, 2614, 2210, 1948, 1758, 1638, 1512, 1478, 1458, 1437, 1491, 1565, 1663, 1774, 1968, 2230, 2572, 2878, 2350, 2014, 1814, 1623, 1528, 1423, 1367, 1360, 1355, 1409, 1447, 1545, 1642, 1807, 2029, 2364, 2678, 2220, 1899, 1720, 1541, 1459, 1334, 1290, 1257, 1266, 1290, 1372, 1461, 1565, 1704, 1916, 2251, 2492, 2063, 1825, 1619, 1464, 1355, 1253, 1195, 1165, 1193, 1229, 1292, 1389, 1520, 1657, 1820, 2065, 2393, 2040, 1757, 1577, 1406, 1284, 1178, 1130, 1102, 1106, 1149, 1215, 1321, 1459, 1613, 1782, 2018, 2287, 1954, 1725, 1527, 1377, 1244, 1126, 1075, 1063, 1047, 1109, 1179, 1278, 1405, 1585, 1741, 1956, 2258, 1919, 1669, 1500, 1342, 1196, 1104, 1049, 1025, 1034, 1086, 1157, 1259, 1396, 1551, 1709, 1923, 2249, 1920, 1675, 1480, 1309, 1195, 1090, 1043, 1026, 1029, 1065, 1129, 1236, 1397, 1533, 1709, 1904, 2241, 1906, 1676, 1506, 1325, 1195, 1094, 1051, 1024, 1047, 1078, 1143, 1250, 1395, 1532, 1713, 1955, 2245, 1932, 1712, 1511, 1355, 1206, 1110, 1075, 1048, 1051, 1097, 1164, 1273, 1417, 1581, 1757, 1978, 2309, 1986, 1732, 1552, 1414, 1255, 1170, 1109, 1085, 1107, 1134, 1196, 1332, 1447, 1605, 1768, 2004, 2439, 2066, 1810, 1621, 1449, 1319, 1226, 1162, 1141, 1150, 1189, 1257, 1371, 1524, 1675, 1849, 2143, 2555, 2193, 1914, 1689, 1519, 1400, 1309, 1235, 1213, 1228, 1268, 1346, 1464, 1625, 1740, 1909, 2190, 2812, 2339, 1993, 1771, 1636, 1517, 1412, 1338, 1318, 1329, 1375, 1431, 1560, 1699, 1831, 2028, 2310, 2941, 2520, 2142, 1910, 1759, 1623, 1534, 1472, 1430, 1443, 1518, 1560, 1667, 1795, 1936, 2168, 2552, 3214, 2742, 2320, 2076, 1879, 1771, 1655, 1606, 1577, 1583, 1628, 1697, 1781, 1953, 2084, 2370, 2749, 3521, 3086, 2546, 2306, 2117, 1914, 1824, 1759, 1723, 1727, 1783, 1863, 1957, 2088, 2321, 2659, 3067]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3167, 2619, 2256, 1976, 1795, 1681, 1562, 1522, 1481, 1506, 1540, 1555, 1653, 1777, 1972, 2239, 2645, 2917, 2446, 2066, 1834, 1709, 1562, 1486, 1407, 1378, 1391, 1403, 1463, 1559, 1682, 1818, 2055, 2445, 2714, 2260, 1930, 1726, 1577, 1480, 1378, 1322, 1278, 1267, 1317, 1376, 1472, 1577, 1712, 1935, 2295, 2524, 2150, 1870, 1673, 1501, 1385, 1280, 1216, 1199, 1187, 1229, 1305, 1390, 1510, 1651, 1829, 2131, 2379, 2044, 1772, 1591, 1436, 1298, 1197, 1158, 1120, 1124, 1160, 1220, 1325, 1471, 1596, 1771, 2036, 2327, 1998, 1725, 1540, 1394, 1234, 1155, 1096, 1073, 1075, 1116, 1184, 1262, 1406, 1551, 1737, 1989, 2277, 1953, 1712, 1532, 1355, 1226, 1135, 1069, 1034, 1049, 1087, 1147, 1234, 1370, 1523, 1707, 1915, 2274, 1931, 1701, 1475, 1333, 1227, 1100, 1054, 1029, 1024, 1073, 1127, 1228, 1355, 1526, 1705, 1941, 2278, 1918, 1708, 1505, 1357, 1206, 1108, 1058, 1026, 1029, 1076, 1137, 1237, 1366, 1520, 1708, 1936, 2265, 1943, 1737, 1510, 1356, 1219, 1134, 1075, 1052, 1054, 1081, 1149, 1260, 1376, 1548, 1748, 1952, 2387, 2022, 1755, 1578, 1426, 1275, 1174, 1113, 1086, 1097, 1114, 1189, 1298, 1435, 1604, 1780, 2017, 2483, 2099, 1816, 1621, 1473, 1335, 1237, 1167, 1138, 1143, 1177, 1260, 1358, 1497, 1660, 1836, 2058, 2621, 2246, 1926, 1715, 1554, 1421, 1315, 1269, 1231, 1238, 1265, 1315, 1433, 1587, 1728, 1925, 2222, 2733, 2349, 2044, 1811, 1657, 1540, 1430, 1357, 1334, 1324, 1373, 1441, 1529, 1695, 1843, 2029, 2322, 3035, 2551, 2193, 1991, 1781, 1668, 1542, 1498, 1444, 1452, 1493, 1550, 1644, 1791, 1911, 2189, 2512, 3243, 2768, 2377, 2136, 1905, 1784, 1691, 1620, 1605, 1598, 1641, 1714, 1792, 1952, 2064, 2318, 2738, 3534, 3088, 2619, 2279, 2113, 1944, 1850, 1773, 1744, 1775, 1795, 1854, 1950, 2054, 2261, 2607, 3100]
| },
| "lsc_samples_blue": {
| "uCoeff": [3023, 2603, 2199, 1900, 1739, 1627, 1547, 1497, 1448, 1432, 1491, 1549, 1625, 1733, 1883, 2175, 2522, 2809, 2365, 2012, 1745, 1613, 1511, 1427, 1373, 1335, 1365, 1396, 1442, 1514, 1642, 1789, 2006, 2337, 2580, 2158, 1831, 1667, 1529, 1412, 1324, 1273, 1247, 1237, 1297, 1343, 1438, 1553, 1688, 1849, 2177, 2412, 2058, 1781, 1595, 1475, 1342, 1231, 1195, 1153, 1177, 1222, 1283, 1370, 1489, 1633, 1783, 2066, 2266, 1940, 1699, 1531, 1397, 1276, 1183, 1120, 1115, 1115, 1150, 1202, 1316, 1443, 1548, 1734, 1965, 2199, 1920, 1664, 1489, 1339, 1227, 1121, 1083, 1076, 1064, 1102, 1165, 1255, 1379, 1558, 1676, 1908, 2148, 1863, 1641, 1500, 1313, 1201, 1115, 1059, 1024, 1050, 1075, 1124, 1233, 1370, 1501, 1663, 1882, 2146, 1874, 1635, 1473, 1320, 1191, 1113, 1062, 1036, 1040, 1071, 1114, 1213, 1345, 1498, 1682, 1894, 2142, 1869, 1628, 1462, 1335, 1195, 1102, 1065, 1040, 1046, 1079, 1135, 1234, 1348, 1483, 1665, 1899, 2193, 1885, 1680, 1465, 1322, 1218, 1123, 1070, 1056, 1071, 1097, 1145, 1261, 1386, 1533, 1695, 1938, 2219, 1948, 1709, 1533, 1387, 1247, 1155, 1119, 1103, 1106, 1133, 1181, 1289, 1423, 1555, 1728, 1977, 2364, 1985, 1739, 1581, 1443, 1316, 1236, 1187, 1155, 1152, 1161, 1251, 1343, 1478, 1630, 1817, 2057, 2463, 2135, 1838, 1649, 1512, 1395, 1297, 1227, 1207, 1205, 1274, 1304, 1419, 1555, 1719, 1862, 2171, 2587, 2239, 1924, 1737, 1573, 1508, 1398, 1349, 1317, 1323, 1351, 1408, 1513, 1643, 1795, 1995, 2310, 2902, 2408, 2111, 1846, 1746, 1576, 1498, 1450, 1427, 1419, 1467, 1528, 1624, 1724, 1896, 2123, 2473, 3039, 2638, 2243, 2006, 1858, 1716, 1649, 1586, 1559, 1570, 1582, 1664, 1711, 1854, 2019, 2293, 2664, 3330, 2928, 2522, 2223, 1996, 1873, 1775, 1715, 1673, 1697, 1718, 1782, 1855, 2000, 2253, 2494, 2926]
| }
| }, {
| "name": "2592x1944_D65_70",
| "resolution": "2592x1944",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2836, 2553, 2291, 2039, 1900, 1751, 1647, 1572, 1554, 1521, 1596, 1653, 1738, 1846, 1978, 2140, 2450, 2757, 2427, 2117, 1900, 1794, 1606, 1540, 1448, 1418, 1420, 1458, 1520, 1613, 1736, 1886, 2037, 2336, 2620, 2288, 1987, 1792, 1649, 1511, 1432, 1333, 1292, 1269, 1339, 1421, 1519, 1636, 1786, 1928, 2188, 2430, 2186, 1950, 1748, 1581, 1432, 1321, 1248, 1203, 1201, 1253, 1332, 1441, 1568, 1723, 1857, 2093, 2365, 2116, 1866, 1673, 1505, 1336, 1243, 1166, 1124, 1130, 1192, 1232, 1378, 1489, 1619, 1799, 2013, 2300, 2010, 1811, 1612, 1448, 1277, 1183, 1107, 1070, 1076, 1109, 1170, 1281, 1426, 1597, 1783, 1942, 2274, 2008, 1785, 1570, 1413, 1247, 1150, 1067, 1027, 1051, 1082, 1153, 1258, 1403, 1547, 1738, 1914, 2252, 1950, 1749, 1566, 1382, 1256, 1132, 1054, 1030, 1040, 1064, 1120, 1227, 1370, 1552, 1730, 1919, 2268, 1967, 1742, 1560, 1391, 1234, 1125, 1062, 1024, 1025, 1056, 1141, 1220, 1373, 1558, 1735, 1937, 2267, 2004, 1786, 1605, 1382, 1248, 1144, 1079, 1040, 1051, 1089, 1145, 1282, 1416, 1578, 1734, 1950, 2337, 2107, 1823, 1654, 1455, 1310, 1207, 1117, 1093, 1093, 1121, 1197, 1318, 1461, 1626, 1792, 1970, 2416, 2101, 1861, 1705, 1526, 1365, 1280, 1198, 1143, 1144, 1198, 1271, 1383, 1511, 1705, 1843, 2039, 2496, 2200, 1966, 1782, 1626, 1458, 1346, 1276, 1241, 1229, 1273, 1345, 1450, 1592, 1763, 1908, 2175, 2593, 2296, 2055, 1876, 1712, 1559, 1456, 1355, 1348, 1347, 1389, 1462, 1562, 1701, 1855, 2012, 2227, 2746, 2482, 2160, 1987, 1811, 1691, 1601, 1518, 1469, 1467, 1526, 1569, 1685, 1809, 1943, 2099, 2346, 2866, 2636, 2321, 2131, 1958, 1856, 1740, 1646, 1625, 1628, 1646, 1739, 1801, 1910, 2049, 2224, 2527, 3048, 2764, 2463, 2268, 2123, 2001, 1888, 1816, 1774, 1747, 1803, 1851, 1916, 2090, 2247, 2404, 2670]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2475, 2214, 1966, 1788, 1644, 1571, 1506, 1462, 1441, 1441, 1480, 1535, 1577, 1663, 1748, 1932, 2150, 2356, 2091, 1856, 1698, 1562, 1492, 1403, 1365, 1340, 1351, 1370, 1416, 1489, 1602, 1659, 1823, 2017, 2271, 1981, 1753, 1612, 1495, 1419, 1325, 1289, 1254, 1249, 1287, 1352, 1416, 1510, 1609, 1720, 1926, 2118, 1888, 1718, 1563, 1448, 1334, 1257, 1206, 1184, 1188, 1222, 1281, 1370, 1464, 1562, 1668, 1844, 2106, 1852, 1650, 1510, 1385, 1274, 1184, 1128, 1112, 1116, 1170, 1212, 1307, 1423, 1526, 1639, 1768, 2035, 1804, 1613, 1495, 1358, 1229, 1138, 1090, 1066, 1074, 1103, 1172, 1258, 1363, 1489, 1600, 1759, 2008, 1771, 1611, 1460, 1315, 1198, 1118, 1063, 1034, 1035, 1077, 1136, 1243, 1350, 1464, 1591, 1715, 2005, 1760, 1584, 1446, 1300, 1195, 1102, 1049, 1024, 1029, 1071, 1121, 1226, 1341, 1495, 1603, 1723, 1978, 1771, 1600, 1466, 1306, 1196, 1088, 1057, 1026, 1030, 1063, 1134, 1227, 1332, 1466, 1590, 1730, 2023, 1773, 1609, 1466, 1327, 1200, 1112, 1072, 1050, 1052, 1069, 1150, 1250, 1360, 1513, 1599, 1770, 2016, 1818, 1648, 1496, 1377, 1245, 1157, 1105, 1076, 1088, 1110, 1178, 1290, 1401, 1504, 1637, 1784, 2093, 1885, 1675, 1535, 1420, 1296, 1208, 1162, 1139, 1138, 1173, 1234, 1335, 1449, 1564, 1697, 1840, 2197, 1945, 1744, 1594, 1449, 1370, 1279, 1222, 1188, 1199, 1242, 1305, 1397, 1504, 1616, 1737, 1887, 2275, 2017, 1828, 1672, 1552, 1460, 1365, 1312, 1289, 1293, 1326, 1393, 1472, 1583, 1668, 1812, 1997, 2394, 2167, 1909, 1761, 1649, 1542, 1443, 1402, 1389, 1396, 1433, 1469, 1567, 1654, 1730, 1902, 2110, 2580, 2265, 2013, 1871, 1730, 1648, 1564, 1524, 1512, 1500, 1526, 1587, 1647, 1759, 1841, 2000, 2211, 2666, 2452, 2153, 2019, 1873, 1757, 1676, 1625, 1627, 1631, 1656, 1707, 1761, 1839, 1981, 2155, 2386]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2511, 2273, 2010, 1829, 1702, 1617, 1542, 1492, 1442, 1480, 1506, 1535, 1581, 1668, 1764, 1928, 2111, 2427, 2133, 1888, 1739, 1623, 1513, 1452, 1387, 1354, 1383, 1394, 1420, 1519, 1577, 1679, 1814, 2044, 2329, 2016, 1814, 1666, 1531, 1462, 1372, 1298, 1293, 1267, 1320, 1342, 1420, 1500, 1605, 1727, 1947, 2221, 1909, 1717, 1577, 1494, 1359, 1284, 1215, 1197, 1208, 1226, 1283, 1372, 1436, 1556, 1666, 1869, 2076, 1857, 1685, 1533, 1412, 1294, 1202, 1156, 1129, 1127, 1157, 1221, 1295, 1418, 1511, 1638, 1783, 2046, 1817, 1663, 1480, 1379, 1240, 1159, 1091, 1077, 1091, 1112, 1182, 1244, 1364, 1492, 1622, 1726, 1981, 1797, 1614, 1473, 1340, 1213, 1123, 1080, 1045, 1043, 1083, 1145, 1220, 1339, 1455, 1593, 1738, 1999, 1773, 1613, 1461, 1324, 1199, 1121, 1067, 1028, 1031, 1068, 1124, 1205, 1326, 1450, 1595, 1698, 2005, 1781, 1627, 1461, 1328, 1201, 1106, 1063, 1024, 1029, 1072, 1135, 1217, 1331, 1443, 1579, 1737, 1991, 1801, 1631, 1482, 1336, 1219, 1127, 1070, 1042, 1060, 1079, 1141, 1229, 1347, 1467, 1597, 1745, 2052, 1826, 1646, 1516, 1362, 1249, 1172, 1105, 1087, 1076, 1111, 1193, 1261, 1390, 1506, 1620, 1789, 2094, 1893, 1699, 1548, 1428, 1302, 1204, 1161, 1132, 1126, 1176, 1237, 1318, 1427, 1547, 1678, 1842, 2225, 1929, 1775, 1598, 1488, 1367, 1280, 1233, 1209, 1204, 1239, 1296, 1389, 1508, 1598, 1717, 1895, 2303, 2012, 1844, 1676, 1571, 1476, 1396, 1325, 1291, 1301, 1341, 1384, 1455, 1569, 1655, 1796, 1982, 2450, 2160, 1944, 1790, 1660, 1566, 1502, 1432, 1416, 1424, 1440, 1471, 1542, 1635, 1735, 1898, 2096, 2545, 2282, 2051, 1908, 1785, 1657, 1592, 1547, 1529, 1530, 1553, 1590, 1643, 1749, 1831, 2014, 2202, 2725, 2432, 2209, 2003, 1856, 1774, 1717, 1671, 1649, 1630, 1656, 1714, 1747, 1839, 1955, 2153, 2395]
| },
| "lsc_samples_blue": {
| "uCoeff": [2355, 2181, 1905, 1761, 1626, 1556, 1464, 1435, 1392, 1428, 1464, 1466, 1569, 1607, 1718, 1852, 2093, 2193, 1985, 1780, 1677, 1549, 1460, 1382, 1350, 1333, 1330, 1348, 1408, 1472, 1534, 1625, 1747, 1914, 2137, 1884, 1695, 1569, 1474, 1383, 1311, 1262, 1240, 1238, 1270, 1328, 1387, 1482, 1581, 1666, 1875, 2031, 1810, 1652, 1504, 1402, 1328, 1242, 1184, 1161, 1176, 1198, 1244, 1335, 1426, 1524, 1631, 1779, 1954, 1757, 1590, 1449, 1346, 1245, 1183, 1126, 1106, 1105, 1132, 1196, 1283, 1390, 1481, 1585, 1752, 1908, 1748, 1552, 1433, 1314, 1207, 1124, 1075, 1061, 1067, 1107, 1141, 1224, 1355, 1451, 1554, 1676, 1878, 1677, 1545, 1416, 1271, 1180, 1105, 1047, 1027, 1043, 1063, 1120, 1224, 1325, 1430, 1538, 1698, 1879, 1701, 1511, 1390, 1251, 1178, 1095, 1044, 1028, 1024, 1059, 1123, 1199, 1306, 1419, 1544, 1685, 1891, 1687, 1555, 1395, 1280, 1179, 1096, 1053, 1026, 1040, 1071, 1118, 1191, 1308, 1422, 1542, 1692, 1874, 1703, 1555, 1416, 1282, 1192, 1109, 1060, 1041, 1049, 1085, 1115, 1211, 1336, 1439, 1577, 1722, 1933, 1712, 1593, 1466, 1341, 1225, 1158, 1087, 1076, 1078, 1104, 1163, 1257, 1368, 1456, 1594, 1724, 1991, 1784, 1614, 1498, 1368, 1270, 1195, 1144, 1113, 1110, 1133, 1214, 1295, 1405, 1519, 1613, 1790, 2072, 1852, 1671, 1544, 1453, 1333, 1253, 1191, 1161, 1189, 1210, 1272, 1355, 1464, 1565, 1685, 1800, 2144, 1940, 1744, 1615, 1516, 1421, 1348, 1280, 1270, 1273, 1292, 1357, 1421, 1507, 1609, 1724, 1915, 2276, 2042, 1836, 1688, 1580, 1492, 1443, 1368, 1377, 1372, 1380, 1446, 1511, 1582, 1663, 1805, 2016, 2444, 2192, 1895, 1803, 1672, 1586, 1540, 1493, 1462, 1484, 1485, 1529, 1584, 1661, 1780, 1940, 2142, 2506, 2349, 2069, 1901, 1790, 1675, 1608, 1571, 1543, 1563, 1572, 1619, 1680, 1763, 1858, 2025, 2298]
| }
| }, {
| "name": "2592x1944_D65_100",
| "resolution": "2592x1944",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3612, 3072, 2641, 2270, 2066, 1869, 1736, 1644, 1621, 1586, 1677, 1755, 1873, 2033, 2241, 2519, 3061, 3406, 2844, 2378, 2068, 1914, 1681, 1597, 1490, 1456, 1459, 1506, 1584, 1705, 1873, 2092, 2338, 2827, 3155, 2621, 2187, 1917, 1729, 1560, 1466, 1355, 1310, 1287, 1365, 1461, 1582, 1735, 1944, 2166, 2578, 2858, 2461, 2119, 1848, 1639, 1464, 1339, 1259, 1211, 1210, 1267, 1356, 1485, 1643, 1850, 2054, 2419, 2742, 2351, 2002, 1750, 1546, 1355, 1253, 1171, 1127, 1134, 1199, 1245, 1408, 1544, 1715, 1965, 2291, 2635, 2205, 1926, 1673, 1479, 1289, 1188, 1109, 1071, 1077, 1112, 1177, 1300, 1468, 1681, 1933, 2183, 2587, 2192, 1888, 1621, 1437, 1255, 1153, 1067, 1027, 1051, 1083, 1158, 1272, 1439, 1618, 1871, 2137, 2550, 2117, 1842, 1614, 1402, 1263, 1134, 1054, 1030, 1040, 1065, 1123, 1238, 1400, 1620, 1857, 2136, 2567, 2135, 1833, 1606, 1411, 1240, 1126, 1062, 1024, 1025, 1056, 1144, 1231, 1403, 1626, 1861, 2156, 2569, 2180, 1884, 1656, 1402, 1255, 1146, 1079, 1040, 1051, 1090, 1149, 1296, 1450, 1650, 1862, 2175, 2666, 2309, 1931, 1713, 1482, 1321, 1211, 1118, 1094, 1094, 1123, 1203, 1336, 1502, 1708, 1935, 2207, 2782, 2315, 1983, 1776, 1562, 1381, 1288, 1201, 1145, 1146, 1203, 1283, 1409, 1562, 1805, 2005, 2306, 2910, 2452, 2118, 1872, 1678, 1484, 1360, 1284, 1248, 1236, 1284, 1365, 1487, 1660, 1883, 2098, 2499, 3071, 2597, 2243, 1994, 1784, 1601, 1482, 1372, 1363, 1363, 1411, 1497, 1618, 1795, 2006, 2245, 2594, 3323, 2867, 2396, 2144, 1912, 1759, 1649, 1554, 1500, 1499, 1568, 1624, 1769, 1937, 2134, 2383, 2790, 3556, 3116, 2630, 2344, 2104, 1963, 1819, 1708, 1682, 1688, 1715, 1831, 1922, 2080, 2294, 2581, 3089, 3915, 3354, 2861, 2551, 2332, 2159, 2011, 1920, 1869, 1841, 1914, 1985, 2085, 2332, 2585, 2872, 3375]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3097, 2618, 2226, 1962, 1762, 1659, 1575, 1519, 1494, 1496, 1545, 1618, 1682, 1809, 1948, 2240, 2633, 2855, 2408, 2055, 1827, 1646, 1552, 1445, 1399, 1370, 1383, 1408, 1466, 1561, 1713, 1810, 2061, 2389, 2689, 2233, 1904, 1708, 1555, 1459, 1350, 1308, 1270, 1265, 1309, 1385, 1466, 1589, 1730, 1903, 2228, 2451, 2092, 1844, 1638, 1492, 1358, 1271, 1215, 1192, 1196, 1234, 1301, 1406, 1525, 1660, 1820, 2094, 2410, 2030, 1751, 1568, 1416, 1289, 1191, 1131, 1115, 1119, 1176, 1223, 1331, 1471, 1607, 1771, 1977, 2301, 1959, 1699, 1544, 1382, 1239, 1141, 1091, 1067, 1075, 1105, 1179, 1275, 1399, 1557, 1714, 1952, 2254, 1911, 1690, 1501, 1333, 1205, 1120, 1063, 1034, 1035, 1078, 1140, 1257, 1381, 1524, 1697, 1888, 2243, 1893, 1656, 1483, 1315, 1200, 1103, 1049, 1024, 1029, 1072, 1124, 1237, 1369, 1556, 1707, 1893, 2208, 1904, 1673, 1504, 1321, 1201, 1089, 1057, 1026, 1030, 1064, 1137, 1238, 1358, 1522, 1691, 1900, 2266, 1908, 1684, 1505, 1344, 1206, 1113, 1072, 1050, 1052, 1070, 1154, 1263, 1390, 1576, 1703, 1951, 2265, 1966, 1732, 1541, 1399, 1253, 1160, 1106, 1076, 1089, 1112, 1184, 1306, 1437, 1569, 1752, 1974, 2374, 2056, 1770, 1588, 1448, 1309, 1214, 1165, 1141, 1140, 1177, 1244, 1357, 1494, 1643, 1831, 2054, 2526, 2143, 1860, 1662, 1486, 1391, 1290, 1229, 1193, 1205, 1252, 1322, 1429, 1561, 1712, 1890, 2129, 2656, 2252, 1974, 1762, 1607, 1495, 1386, 1327, 1302, 1307, 1344, 1422, 1519, 1661, 1785, 1998, 2294, 2853, 2469, 2093, 1881, 1729, 1595, 1478, 1429, 1414, 1423, 1467, 1514, 1636, 1756, 1876, 2134, 2474, 3163, 2635, 2249, 2034, 1840, 1728, 1623, 1573, 1559, 1547, 1581, 1660, 1744, 1900, 2036, 2291, 2655, 3369, 2936, 2465, 2245, 2034, 1875, 1769, 1704, 1704, 1710, 1746, 1818, 1901, 2025, 2246, 2538, 2969]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3148, 2696, 2282, 2012, 1831, 1713, 1616, 1553, 1495, 1540, 1574, 1618, 1687, 1815, 1968, 2234, 2577, 2952, 2463, 2094, 1876, 1716, 1576, 1499, 1423, 1385, 1419, 1435, 1471, 1596, 1683, 1835, 2049, 2426, 2767, 2278, 1978, 1770, 1596, 1507, 1401, 1318, 1312, 1285, 1345, 1374, 1471, 1578, 1725, 1912, 2257, 2586, 2118, 1843, 1654, 1543, 1386, 1300, 1225, 1205, 1217, 1238, 1303, 1408, 1493, 1653, 1818, 2127, 2371, 2036, 1792, 1594, 1445, 1310, 1210, 1160, 1132, 1130, 1163, 1233, 1318, 1465, 1590, 1770, 1996, 2315, 1974, 1756, 1528, 1404, 1250, 1163, 1092, 1078, 1092, 1115, 1189, 1260, 1400, 1560, 1741, 1911, 2221, 1941, 1694, 1515, 1360, 1220, 1125, 1081, 1045, 1043, 1084, 1150, 1232, 1369, 1513, 1699, 1917, 2236, 1908, 1689, 1500, 1341, 1205, 1122, 1067, 1028, 1031, 1069, 1127, 1215, 1353, 1505, 1698, 1862, 2241, 1915, 1703, 1499, 1344, 1206, 1107, 1063, 1024, 1029, 1073, 1138, 1227, 1357, 1496, 1678, 1908, 2226, 1941, 1709, 1522, 1353, 1225, 1129, 1070, 1042, 1060, 1080, 1145, 1240, 1375, 1524, 1700, 1920, 2309, 1976, 1730, 1562, 1383, 1257, 1175, 1106, 1087, 1077, 1113, 1199, 1276, 1424, 1571, 1731, 1981, 2376, 2065, 1798, 1603, 1457, 1315, 1209, 1164, 1134, 1128, 1181, 1247, 1339, 1469, 1623, 1808, 2057, 2562, 2123, 1896, 1667, 1528, 1388, 1291, 1240, 1215, 1210, 1248, 1313, 1420, 1566, 1691, 1866, 2140, 2693, 2245, 1993, 1766, 1628, 1512, 1419, 1340, 1304, 1315, 1360, 1412, 1500, 1644, 1770, 1979, 2274, 2928, 2460, 2135, 1915, 1741, 1621, 1542, 1462, 1443, 1453, 1475, 1516, 1608, 1734, 1882, 2128, 2456, 3114, 2657, 2296, 2078, 1904, 1739, 1655, 1599, 1577, 1580, 1611, 1663, 1740, 1888, 2023, 2309, 2643, 3454, 2910, 2536, 2226, 2014, 1895, 1815, 1756, 1728, 1709, 1746, 1826, 1884, 2024, 2212, 2536, 2982]
| },
| "lsc_samples_blue": {
| "uCoeff": [2925, 2573, 2149, 1929, 1740, 1642, 1526, 1489, 1439, 1481, 1527, 1538, 1672, 1740, 1910, 2133, 2551, 2630, 2271, 1960, 1802, 1631, 1516, 1421, 1382, 1362, 1360, 1384, 1458, 1542, 1632, 1768, 1962, 2247, 2510, 2111, 1834, 1658, 1531, 1419, 1335, 1279, 1255, 1253, 1290, 1359, 1433, 1556, 1697, 1836, 2161, 2338, 1996, 1766, 1571, 1441, 1352, 1255, 1192, 1167, 1184, 1209, 1261, 1367, 1482, 1615, 1775, 2009, 2215, 1914, 1682, 1500, 1374, 1259, 1190, 1129, 1108, 1108, 1137, 1207, 1305, 1434, 1555, 1705, 1957, 2141, 1891, 1629, 1476, 1335, 1216, 1127, 1076, 1062, 1068, 1110, 1147, 1238, 1390, 1513, 1659, 1847, 2092, 1799, 1615, 1453, 1286, 1186, 1107, 1047, 1027, 1043, 1064, 1124, 1236, 1353, 1485, 1634, 1867, 2087, 1823, 1574, 1422, 1264, 1183, 1096, 1044, 1028, 1024, 1060, 1126, 1209, 1331, 1470, 1637, 1845, 2099, 1805, 1622, 1427, 1294, 1184, 1097, 1053, 1026, 1040, 1072, 1121, 1200, 1332, 1473, 1634, 1853, 2080, 1825, 1624, 1451, 1296, 1197, 1110, 1060, 1041, 1049, 1086, 1118, 1222, 1364, 1493, 1676, 1892, 2161, 1841, 1670, 1508, 1361, 1233, 1161, 1088, 1076, 1079, 1106, 1168, 1271, 1400, 1515, 1700, 1899, 2245, 1935, 1700, 1548, 1393, 1282, 1200, 1146, 1114, 1112, 1136, 1223, 1314, 1445, 1591, 1730, 1991, 2367, 2030, 1776, 1606, 1490, 1352, 1263, 1197, 1165, 1195, 1218, 1287, 1384, 1516, 1652, 1827, 2018, 2486, 2156, 1875, 1697, 1567, 1452, 1368, 1293, 1282, 1286, 1308, 1383, 1462, 1574, 1715, 1889, 2186, 2696, 2310, 2005, 1796, 1651, 1539, 1478, 1393, 1401, 1397, 1410, 1489, 1573, 1673, 1795, 2011, 2349, 2976, 2539, 2103, 1953, 1773, 1658, 1597, 1539, 1504, 1530, 1536, 1594, 1671, 1783, 1960, 2212, 2561, 3141, 2799, 2358, 2101, 1935, 1780, 1691, 1642, 1609, 1633, 1650, 1715, 1804, 1931, 2089, 2365, 2844]
| }
| }, {
| "name": "2592x1944_D75_70",
| "resolution": "2592x1944",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2750, 2523, 2214, 1980, 1836, 1746, 1619, 1548, 1530, 1530, 1585, 1639, 1691, 1797, 1923, 2111, 2438, 2669, 2366, 2094, 1854, 1757, 1612, 1510, 1459, 1428, 1413, 1428, 1501, 1605, 1715, 1824, 1976, 2210, 2532, 2216, 1994, 1809, 1639, 1504, 1413, 1327, 1301, 1292, 1315, 1387, 1484, 1622, 1752, 1878, 2140, 2495, 2133, 1915, 1703, 1554, 1418, 1327, 1252, 1222, 1207, 1250, 1324, 1408, 1549, 1674, 1817, 2043, 2294, 2042, 1819, 1644, 1488, 1343, 1237, 1171, 1132, 1126, 1183, 1233, 1339, 1481, 1597, 1779, 1976, 2217, 1973, 1765, 1594, 1438, 1279, 1192, 1121, 1082, 1070, 1117, 1176, 1282, 1411, 1596, 1744, 1891, 2177, 1967, 1729, 1576, 1396, 1250, 1135, 1089, 1041, 1038, 1089, 1149, 1253, 1388, 1528, 1691, 1889, 2211, 1928, 1720, 1570, 1390, 1242, 1124, 1072, 1024, 1042, 1061, 1143, 1227, 1362, 1509, 1704, 1889, 2199, 1945, 1698, 1537, 1393, 1233, 1140, 1075, 1031, 1037, 1064, 1136, 1237, 1360, 1545, 1687, 1900, 2220, 1976, 1747, 1586, 1393, 1256, 1168, 1094, 1041, 1054, 1071, 1147, 1254, 1402, 1563, 1718, 1923, 2242, 1991, 1785, 1622, 1460, 1300, 1203, 1128, 1106, 1099, 1124, 1194, 1306, 1461, 1596, 1774, 1936, 2323, 2058, 1845, 1671, 1519, 1372, 1245, 1198, 1166, 1154, 1200, 1272, 1357, 1511, 1655, 1831, 2022, 2476, 2153, 1896, 1769, 1608, 1471, 1353, 1276, 1235, 1240, 1258, 1345, 1459, 1566, 1738, 1890, 2104, 2558, 2240, 2000, 1869, 1688, 1544, 1454, 1376, 1331, 1345, 1383, 1440, 1564, 1688, 1813, 1950, 2196, 2738, 2424, 2150, 1945, 1780, 1669, 1581, 1510, 1456, 1476, 1499, 1544, 1658, 1777, 1900, 2055, 2320, 2872, 2601, 2263, 2069, 1931, 1815, 1691, 1653, 1587, 1584, 1633, 1723, 1802, 1909, 2015, 2255, 2514, 2925, 2738, 2406, 2208, 2096, 1948, 1843, 1784, 1777, 1752, 1766, 1856, 1911, 2022, 2151, 2344, 2630]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2430, 2237, 1994, 1791, 1653, 1565, 1492, 1454, 1454, 1422, 1452, 1488, 1571, 1664, 1737, 1903, 2145, 2356, 2084, 1850, 1695, 1576, 1482, 1420, 1357, 1342, 1352, 1362, 1414, 1493, 1570, 1662, 1809, 2006, 2281, 1974, 1748, 1604, 1508, 1414, 1334, 1269, 1257, 1253, 1295, 1340, 1420, 1495, 1604, 1733, 1933, 2091, 1868, 1706, 1552, 1455, 1328, 1267, 1205, 1174, 1187, 1221, 1273, 1357, 1462, 1549, 1673, 1850, 2094, 1831, 1647, 1503, 1378, 1294, 1187, 1132, 1107, 1112, 1158, 1205, 1310, 1408, 1526, 1639, 1790, 2005, 1764, 1625, 1472, 1354, 1228, 1143, 1080, 1054, 1067, 1113, 1161, 1256, 1366, 1502, 1595, 1748, 1979, 1756, 1600, 1448, 1315, 1200, 1110, 1051, 1028, 1036, 1088, 1139, 1245, 1344, 1465, 1587, 1724, 1999, 1745, 1578, 1453, 1312, 1186, 1087, 1045, 1026, 1025, 1066, 1125, 1214, 1344, 1475, 1585, 1724, 1984, 1762, 1591, 1476, 1307, 1199, 1094, 1043, 1024, 1033, 1060, 1137, 1225, 1347, 1463, 1589, 1741, 2009, 1781, 1609, 1465, 1327, 1206, 1120, 1069, 1041, 1044, 1079, 1140, 1241, 1363, 1477, 1616, 1737, 2032, 1818, 1633, 1502, 1364, 1236, 1148, 1091, 1075, 1085, 1111, 1171, 1284, 1391, 1528, 1653, 1801, 2121, 1854, 1675, 1542, 1413, 1291, 1207, 1145, 1123, 1127, 1182, 1235, 1320, 1451, 1561, 1651, 1880, 2189, 1925, 1742, 1590, 1460, 1362, 1277, 1224, 1195, 1200, 1239, 1294, 1390, 1524, 1614, 1718, 1884, 2308, 2040, 1812, 1649, 1549, 1454, 1365, 1306, 1276, 1279, 1324, 1390, 1477, 1572, 1681, 1766, 1968, 2405, 2127, 1918, 1741, 1634, 1521, 1464, 1390, 1389, 1398, 1419, 1467, 1553, 1650, 1747, 1861, 2069, 2549, 2287, 1987, 1845, 1735, 1641, 1568, 1516, 1503, 1485, 1509, 1586, 1653, 1740, 1843, 2000, 2218, 2675, 2488, 2174, 1997, 1857, 1746, 1675, 1602, 1616, 1612, 1648, 1696, 1759, 1826, 1955, 2163, 2373]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2561, 2249, 2026, 1808, 1708, 1639, 1550, 1490, 1466, 1490, 1524, 1522, 1574, 1650, 1768, 1913, 2121, 2416, 2124, 1901, 1741, 1622, 1520, 1451, 1414, 1356, 1378, 1406, 1443, 1503, 1572, 1671, 1817, 2051, 2290, 2001, 1793, 1653, 1542, 1449, 1364, 1295, 1290, 1284, 1309, 1354, 1422, 1512, 1619, 1741, 1917, 2185, 1940, 1714, 1582, 1460, 1355, 1280, 1209, 1195, 1196, 1235, 1283, 1365, 1455, 1566, 1661, 1842, 2086, 1850, 1671, 1548, 1409, 1299, 1210, 1156, 1128, 1129, 1173, 1222, 1301, 1417, 1516, 1612, 1771, 2045, 1808, 1639, 1500, 1384, 1248, 1164, 1099, 1085, 1071, 1123, 1166, 1240, 1354, 1473, 1596, 1762, 1977, 1789, 1630, 1461, 1345, 1210, 1142, 1071, 1050, 1046, 1087, 1141, 1220, 1334, 1457, 1563, 1739, 2015, 1758, 1608, 1461, 1319, 1212, 1115, 1064, 1027, 1024, 1066, 1122, 1210, 1326, 1438, 1574, 1701, 2022, 1788, 1617, 1439, 1326, 1199, 1106, 1061, 1026, 1035, 1055, 1126, 1219, 1321, 1450, 1561, 1741, 1996, 1787, 1633, 1467, 1318, 1197, 1138, 1069, 1046, 1044, 1081, 1135, 1230, 1350, 1471, 1595, 1726, 2043, 1828, 1632, 1513, 1358, 1250, 1165, 1116, 1083, 1085, 1111, 1181, 1268, 1382, 1496, 1617, 1776, 2116, 1880, 1698, 1550, 1420, 1299, 1220, 1164, 1127, 1142, 1167, 1236, 1321, 1425, 1543, 1654, 1844, 2173, 1916, 1762, 1603, 1480, 1373, 1287, 1225, 1207, 1213, 1233, 1285, 1374, 1484, 1590, 1725, 1892, 2308, 2017, 1823, 1668, 1586, 1480, 1387, 1316, 1287, 1291, 1332, 1382, 1454, 1568, 1674, 1784, 1959, 2425, 2146, 1941, 1780, 1662, 1560, 1472, 1442, 1394, 1415, 1429, 1480, 1532, 1654, 1717, 1869, 2093, 2577, 2294, 2049, 1879, 1751, 1665, 1582, 1538, 1529, 1501, 1540, 1605, 1654, 1725, 1831, 1975, 2225, 2657, 2439, 2210, 2026, 1884, 1785, 1723, 1669, 1631, 1618, 1658, 1705, 1794, 1833, 1972, 2150, 2339]
| },
| "lsc_samples_blue": {
| "uCoeff": [2362, 2190, 1891, 1725, 1645, 1560, 1472, 1439, 1426, 1417, 1472, 1499, 1548, 1646, 1722, 1895, 2073, 2278, 2012, 1796, 1641, 1557, 1454, 1397, 1360, 1337, 1344, 1386, 1416, 1482, 1528, 1634, 1755, 1972, 2159, 1890, 1695, 1562, 1484, 1388, 1306, 1273, 1243, 1245, 1277, 1318, 1397, 1475, 1556, 1656, 1852, 2009, 1812, 1642, 1520, 1402, 1307, 1238, 1189, 1169, 1186, 1210, 1258, 1334, 1438, 1531, 1623, 1791, 1954, 1781, 1597, 1469, 1348, 1262, 1184, 1129, 1119, 1103, 1151, 1208, 1297, 1383, 1497, 1603, 1743, 1933, 1740, 1559, 1436, 1323, 1218, 1133, 1089, 1073, 1066, 1111, 1159, 1244, 1350, 1471, 1569, 1727, 1889, 1707, 1542, 1420, 1292, 1182, 1116, 1061, 1038, 1040, 1087, 1125, 1240, 1337, 1438, 1534, 1681, 1878, 1698, 1532, 1419, 1282, 1192, 1087, 1045, 1029, 1024, 1070, 1110, 1210, 1309, 1434, 1554, 1691, 1881, 1700, 1534, 1397, 1281, 1179, 1096, 1056, 1027, 1045, 1066, 1123, 1193, 1316, 1429, 1553, 1685, 1903, 1700, 1569, 1414, 1297, 1196, 1100, 1075, 1046, 1061, 1074, 1129, 1204, 1327, 1435, 1556, 1712, 1926, 1735, 1589, 1452, 1316, 1219, 1146, 1094, 1090, 1086, 1112, 1161, 1270, 1365, 1457, 1598, 1747, 2015, 1810, 1609, 1498, 1373, 1273, 1210, 1154, 1116, 1131, 1153, 1217, 1303, 1394, 1524, 1645, 1822, 2047, 1878, 1654, 1542, 1431, 1321, 1254, 1190, 1179, 1183, 1231, 1281, 1352, 1453, 1565, 1684, 1829, 2170, 1944, 1734, 1593, 1492, 1410, 1331, 1278, 1253, 1258, 1302, 1363, 1428, 1534, 1620, 1707, 1907, 2257, 2036, 1851, 1690, 1591, 1481, 1438, 1387, 1364, 1364, 1384, 1428, 1491, 1582, 1683, 1804, 2004, 2409, 2186, 1925, 1778, 1667, 1586, 1510, 1486, 1462, 1471, 1478, 1529, 1580, 1659, 1754, 1921, 2143, 2521, 2353, 2086, 1891, 1775, 1710, 1579, 1557, 1575, 1553, 1592, 1618, 1692, 1756, 1888, 2072, 2271]
| }
| }, {
| "name": "2592x1944_D75_100",
| "resolution": "2592x1944",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3489, 3032, 2543, 2198, 1990, 1863, 1704, 1616, 1594, 1596, 1665, 1738, 1818, 1973, 2172, 2480, 3044, 3285, 2766, 2349, 2013, 1871, 1688, 1563, 1502, 1467, 1452, 1472, 1563, 1696, 1848, 2015, 2259, 2654, 3038, 2530, 2195, 1937, 1718, 1553, 1445, 1349, 1320, 1311, 1339, 1424, 1543, 1719, 1903, 2103, 2514, 2943, 2395, 2077, 1797, 1609, 1449, 1346, 1264, 1231, 1216, 1264, 1348, 1448, 1622, 1792, 2004, 2354, 2651, 2261, 1947, 1718, 1528, 1363, 1246, 1176, 1135, 1129, 1190, 1246, 1366, 1535, 1690, 1941, 2244, 2531, 2161, 1873, 1654, 1468, 1291, 1197, 1123, 1083, 1071, 1120, 1183, 1301, 1452, 1680, 1887, 2119, 2466, 2143, 1824, 1628, 1419, 1258, 1137, 1090, 1041, 1038, 1090, 1154, 1267, 1422, 1596, 1815, 2105, 2500, 2091, 1810, 1618, 1411, 1249, 1126, 1072, 1024, 1042, 1062, 1147, 1238, 1392, 1572, 1826, 2099, 2482, 2109, 1784, 1581, 1413, 1239, 1142, 1075, 1031, 1037, 1065, 1139, 1249, 1389, 1611, 1805, 2111, 2511, 2147, 1840, 1635, 1414, 1263, 1170, 1094, 1041, 1054, 1072, 1151, 1267, 1435, 1632, 1843, 2141, 2547, 2172, 1888, 1678, 1487, 1310, 1207, 1129, 1107, 1100, 1126, 1200, 1323, 1502, 1673, 1914, 2165, 2664, 2263, 1965, 1739, 1555, 1389, 1252, 1202, 1168, 1157, 1205, 1284, 1381, 1562, 1747, 1991, 2285, 2884, 2395, 2037, 1858, 1658, 1498, 1367, 1284, 1241, 1247, 1268, 1365, 1496, 1631, 1854, 2076, 2407, 3025, 2527, 2177, 1986, 1757, 1585, 1480, 1394, 1346, 1361, 1405, 1473, 1620, 1780, 1956, 2169, 2553, 3313, 2793, 2383, 2095, 1877, 1734, 1627, 1545, 1486, 1509, 1539, 1597, 1739, 1899, 2082, 2327, 2754, 3564, 3070, 2559, 2270, 2072, 1917, 1764, 1715, 1641, 1640, 1700, 1813, 1923, 2079, 2251, 2621, 3071, 3739, 3320, 2788, 2478, 2299, 2097, 1959, 1883, 1873, 1847, 1871, 1991, 2079, 2249, 2463, 2792, 3318]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3032, 2649, 2262, 1966, 1772, 1653, 1559, 1510, 1508, 1474, 1513, 1563, 1675, 1810, 1934, 2201, 2625, 2854, 2399, 2047, 1824, 1662, 1541, 1464, 1390, 1372, 1384, 1399, 1464, 1566, 1675, 1814, 2043, 2374, 2702, 2225, 1898, 1698, 1570, 1454, 1360, 1287, 1273, 1270, 1318, 1372, 1471, 1572, 1724, 1920, 2238, 2416, 2068, 1830, 1625, 1500, 1352, 1282, 1214, 1181, 1195, 1233, 1293, 1392, 1523, 1645, 1827, 2102, 2394, 2004, 1748, 1560, 1408, 1310, 1194, 1136, 1110, 1115, 1164, 1216, 1335, 1454, 1607, 1771, 2005, 2263, 1911, 1713, 1519, 1378, 1238, 1147, 1081, 1055, 1068, 1116, 1168, 1273, 1402, 1572, 1708, 1938, 2218, 1893, 1678, 1488, 1333, 1207, 1112, 1051, 1028, 1036, 1089, 1143, 1259, 1374, 1525, 1692, 1899, 2236, 1875, 1650, 1491, 1328, 1191, 1088, 1045, 1026, 1025, 1067, 1128, 1225, 1372, 1533, 1686, 1894, 2215, 1893, 1663, 1515, 1322, 1204, 1095, 1043, 1024, 1033, 1060, 1140, 1236, 1375, 1519, 1689, 1913, 2248, 1917, 1685, 1504, 1344, 1212, 1121, 1069, 1041, 1044, 1080, 1144, 1253, 1393, 1535, 1723, 1910, 2284, 1966, 1716, 1547, 1385, 1244, 1151, 1092, 1075, 1086, 1113, 1177, 1300, 1426, 1596, 1770, 1995, 2410, 2019, 1770, 1596, 1441, 1304, 1213, 1147, 1125, 1129, 1187, 1245, 1341, 1496, 1640, 1775, 2105, 2516, 2118, 1858, 1658, 1497, 1383, 1288, 1231, 1200, 1206, 1248, 1310, 1421, 1584, 1709, 1867, 2125, 2699, 2280, 1955, 1736, 1604, 1488, 1386, 1320, 1288, 1292, 1342, 1419, 1524, 1648, 1801, 1942, 2256, 2868, 2418, 2104, 1858, 1712, 1571, 1501, 1417, 1414, 1425, 1452, 1512, 1621, 1752, 1897, 2082, 2419, 3120, 2663, 2217, 2003, 1846, 1721, 1628, 1565, 1549, 1531, 1562, 1659, 1751, 1877, 2038, 2291, 2665, 3382, 2985, 2492, 2218, 2015, 1863, 1767, 1677, 1691, 1689, 1737, 1805, 1899, 2008, 2212, 2549, 2951]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3219, 2665, 2303, 1987, 1838, 1738, 1625, 1551, 1522, 1551, 1595, 1603, 1678, 1792, 1974, 2214, 2591, 2937, 2451, 2110, 1879, 1715, 1584, 1498, 1453, 1388, 1413, 1448, 1497, 1578, 1677, 1826, 2053, 2436, 2715, 2259, 1952, 1755, 1608, 1492, 1392, 1315, 1308, 1303, 1333, 1388, 1473, 1591, 1743, 1930, 2217, 2539, 2157, 1839, 1659, 1506, 1381, 1296, 1218, 1203, 1205, 1248, 1304, 1401, 1515, 1665, 1811, 2091, 2384, 2027, 1776, 1611, 1442, 1316, 1218, 1160, 1131, 1132, 1180, 1234, 1325, 1464, 1595, 1738, 1981, 2314, 1964, 1729, 1550, 1410, 1259, 1168, 1101, 1086, 1072, 1126, 1173, 1256, 1388, 1539, 1710, 1956, 2216, 1932, 1712, 1502, 1365, 1217, 1144, 1072, 1050, 1046, 1088, 1145, 1232, 1363, 1516, 1664, 1918, 2256, 1890, 1683, 1499, 1336, 1218, 1116, 1064, 1027, 1024, 1067, 1125, 1220, 1353, 1491, 1673, 1865, 2262, 1924, 1692, 1475, 1342, 1204, 1107, 1061, 1026, 1035, 1055, 1129, 1230, 1347, 1504, 1656, 1913, 2232, 1924, 1711, 1506, 1335, 1203, 1140, 1069, 1046, 1044, 1082, 1139, 1242, 1379, 1529, 1698, 1897, 2298, 1978, 1714, 1559, 1379, 1259, 1168, 1117, 1083, 1086, 1113, 1187, 1283, 1416, 1560, 1728, 1964, 2403, 2050, 1797, 1605, 1448, 1312, 1226, 1167, 1129, 1144, 1171, 1246, 1342, 1467, 1619, 1779, 2060, 2496, 2107, 1881, 1672, 1519, 1394, 1299, 1232, 1213, 1219, 1242, 1301, 1404, 1539, 1682, 1876, 2136, 2699, 2252, 1968, 1757, 1645, 1516, 1409, 1331, 1299, 1305, 1351, 1410, 1499, 1643, 1792, 1964, 2244, 2895, 2442, 2131, 1903, 1743, 1614, 1509, 1472, 1420, 1443, 1463, 1526, 1597, 1757, 1861, 2092, 2452, 3158, 2672, 2293, 2043, 1864, 1748, 1644, 1589, 1577, 1548, 1597, 1680, 1752, 1860, 2023, 2258, 2674, 3357, 2919, 2538, 2254, 2047, 1908, 1822, 1753, 1708, 1696, 1748, 1815, 1940, 2017, 2234, 2532, 2903]
| },
| "lsc_samples_blue": {
| "uCoeff": [2936, 2586, 2131, 1884, 1763, 1647, 1536, 1493, 1477, 1468, 1536, 1576, 1647, 1788, 1915, 2190, 2523, 2747, 2306, 1980, 1760, 1640, 1510, 1438, 1393, 1367, 1376, 1426, 1467, 1554, 1625, 1780, 1972, 2327, 2539, 2118, 1834, 1650, 1543, 1425, 1330, 1291, 1258, 1261, 1298, 1348, 1445, 1548, 1666, 1823, 2130, 2309, 1998, 1755, 1589, 1442, 1329, 1251, 1197, 1176, 1194, 1221, 1276, 1366, 1495, 1623, 1765, 2025, 2215, 1944, 1690, 1522, 1376, 1277, 1191, 1132, 1122, 1106, 1157, 1219, 1320, 1426, 1574, 1727, 1945, 2172, 1882, 1637, 1479, 1345, 1227, 1136, 1090, 1074, 1067, 1114, 1165, 1260, 1384, 1536, 1677, 1912, 2106, 1834, 1612, 1457, 1309, 1188, 1118, 1061, 1038, 1040, 1088, 1129, 1253, 1367, 1494, 1629, 1845, 2085, 1819, 1598, 1454, 1296, 1197, 1088, 1045, 1029, 1024, 1071, 1113, 1220, 1334, 1487, 1649, 1853, 2087, 1820, 1599, 1429, 1295, 1184, 1097, 1056, 1027, 1045, 1067, 1126, 1202, 1341, 1480, 1647, 1844, 2117, 1822, 1639, 1448, 1312, 1202, 1101, 1075, 1046, 1061, 1075, 1132, 1214, 1354, 1488, 1652, 1879, 2152, 1868, 1666, 1492, 1334, 1226, 1149, 1095, 1090, 1087, 1114, 1166, 1285, 1397, 1516, 1705, 1928, 2275, 1966, 1695, 1548, 1398, 1285, 1216, 1157, 1118, 1133, 1157, 1226, 1323, 1433, 1597, 1768, 2032, 2334, 2061, 1756, 1604, 1466, 1339, 1264, 1196, 1184, 1188, 1240, 1297, 1380, 1504, 1653, 1826, 2055, 2519, 2162, 1863, 1672, 1541, 1441, 1350, 1291, 1264, 1270, 1319, 1390, 1470, 1605, 1728, 1869, 2176, 2670, 2303, 2023, 1798, 1663, 1527, 1472, 1413, 1388, 1389, 1414, 1469, 1551, 1673, 1820, 2010, 2333, 2927, 2532, 2140, 1923, 1767, 1659, 1563, 1532, 1504, 1515, 1528, 1594, 1667, 1781, 1928, 2188, 2562, 3162, 2804, 2379, 2088, 1917, 1821, 1658, 1627, 1645, 1622, 1673, 1714, 1819, 1922, 2127, 2428, 2805]
| }
| }, {
| "name": "2592x1944_HZ_70",
| "resolution": "2592x1944",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3345, 2989, 2643, 2400, 2179, 2031, 1882, 1816, 1747, 1774, 1802, 1873, 1975, 2128, 2270, 2479, 2833, 3155, 2813, 2480, 2228, 2033, 1877, 1739, 1635, 1574, 1601, 1638, 1723, 1835, 2002, 2132, 2365, 2614, 3000, 2623, 2328, 2138, 1889, 1725, 1582, 1485, 1436, 1428, 1483, 1590, 1703, 1876, 2039, 2186, 2467, 2883, 2530, 2252, 1980, 1779, 1574, 1440, 1359, 1298, 1313, 1376, 1452, 1599, 1758, 1945, 2113, 2385, 2763, 2423, 2129, 1878, 1666, 1459, 1343, 1238, 1182, 1186, 1257, 1348, 1498, 1665, 1875, 2057, 2317, 2712, 2353, 2087, 1838, 1603, 1392, 1252, 1149, 1104, 1121, 1168, 1267, 1403, 1585, 1824, 2032, 2267, 2616, 2328, 2029, 1772, 1532, 1342, 1189, 1092, 1037, 1062, 1120, 1212, 1363, 1536, 1748, 1979, 2224, 2672, 2263, 2000, 1757, 1493, 1308, 1156, 1062, 1024, 1029, 1094, 1178, 1322, 1515, 1765, 1976, 2180, 2632, 2265, 2005, 1739, 1505, 1303, 1160, 1059, 1032, 1037, 1086, 1191, 1325, 1506, 1730, 1966, 2200, 2678, 2294, 2037, 1756, 1505, 1315, 1183, 1090, 1051, 1058, 1101, 1208, 1371, 1544, 1765, 2003, 2261, 2733, 2347, 2075, 1850, 1611, 1376, 1242, 1155, 1098, 1124, 1150, 1266, 1413, 1606, 1837, 2051, 2278, 2768, 2428, 2124, 1909, 1656, 1465, 1329, 1240, 1182, 1187, 1249, 1330, 1475, 1698, 1918, 2111, 2375, 2862, 2555, 2210, 1991, 1775, 1590, 1445, 1337, 1289, 1298, 1336, 1443, 1610, 1801, 1968, 2198, 2439, 3052, 2735, 2349, 2096, 1896, 1711, 1582, 1467, 1423, 1434, 1487, 1595, 1734, 1908, 2113, 2311, 2583, 3172, 2826, 2502, 2279, 2041, 1876, 1731, 1642, 1590, 1604, 1645, 1757, 1858, 2041, 2225, 2422, 2707, 3361, 2997, 2681, 2415, 2219, 2083, 1933, 1826, 1784, 1779, 1826, 1948, 2050, 2246, 2351, 2573, 2869, 3591, 3219, 2853, 2639, 2430, 2276, 2111, 2024, 1986, 2009, 2069, 2128, 2258, 2375, 2589, 2776, 3063]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2697, 2379, 2162, 1947, 1815, 1704, 1612, 1595, 1558, 1564, 1590, 1631, 1712, 1788, 1894, 2046, 2350, 2576, 2268, 2015, 1849, 1710, 1607, 1546, 1481, 1462, 1455, 1478, 1519, 1617, 1689, 1787, 1942, 2169, 2436, 2136, 1899, 1765, 1617, 1534, 1426, 1394, 1362, 1345, 1394, 1444, 1513, 1614, 1706, 1836, 2079, 2305, 2037, 1851, 1661, 1586, 1446, 1331, 1289, 1227, 1270, 1273, 1349, 1451, 1563, 1667, 1776, 1967, 2274, 1957, 1764, 1612, 1471, 1354, 1249, 1193, 1156, 1172, 1214, 1273, 1364, 1512, 1608, 1753, 1903, 2138, 1918, 1714, 1560, 1439, 1300, 1200, 1133, 1092, 1088, 1150, 1219, 1300, 1434, 1562, 1697, 1832, 2117, 1884, 1692, 1530, 1381, 1244, 1146, 1084, 1049, 1067, 1108, 1168, 1279, 1398, 1547, 1669, 1817, 2092, 1870, 1678, 1506, 1357, 1228, 1124, 1073, 1024, 1039, 1087, 1148, 1262, 1402, 1521, 1662, 1824, 2131, 1865, 1678, 1529, 1368, 1225, 1133, 1064, 1031, 1043, 1066, 1153, 1266, 1369, 1535, 1663, 1798, 2140, 1890, 1709, 1538, 1393, 1249, 1135, 1080, 1056, 1054, 1102, 1163, 1280, 1415, 1557, 1665, 1822, 2154, 1936, 1718, 1563, 1432, 1290, 1203, 1141, 1103, 1110, 1134, 1207, 1335, 1434, 1564, 1709, 1867, 2250, 1996, 1767, 1602, 1485, 1346, 1258, 1182, 1163, 1153, 1216, 1267, 1371, 1495, 1638, 1769, 2018, 2319, 2067, 1841, 1674, 1529, 1443, 1326, 1262, 1245, 1249, 1292, 1343, 1463, 1586, 1701, 1807, 1980, 2483, 2133, 1912, 1766, 1650, 1527, 1442, 1347, 1347, 1357, 1390, 1450, 1543, 1676, 1766, 1897, 2115, 2564, 2280, 2049, 1881, 1764, 1628, 1560, 1492, 1461, 1482, 1498, 1570, 1662, 1735, 1849, 1975, 2249, 2714, 2447, 2181, 2017, 1865, 1753, 1677, 1627, 1607, 1591, 1622, 1667, 1771, 1870, 1967, 2128, 2339, 2843, 2634, 2334, 2151, 2023, 1897, 1829, 1739, 1726, 1722, 1752, 1798, 1895, 1960, 2072, 2323, 2582]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2715, 2383, 2119, 1936, 1797, 1702, 1582, 1545, 1513, 1517, 1552, 1600, 1657, 1762, 1877, 2055, 2309, 2640, 2301, 1987, 1841, 1694, 1584, 1506, 1442, 1403, 1437, 1434, 1499, 1567, 1680, 1758, 1936, 2134, 2503, 2137, 1927, 1766, 1604, 1522, 1421, 1344, 1318, 1299, 1333, 1398, 1514, 1597, 1704, 1819, 2055, 2363, 2076, 1853, 1713, 1524, 1416, 1323, 1241, 1202, 1221, 1270, 1331, 1426, 1521, 1654, 1772, 1997, 2289, 2028, 1792, 1644, 1479, 1342, 1240, 1171, 1141, 1144, 1179, 1254, 1350, 1492, 1606, 1758, 1877, 2228, 1967, 1723, 1586, 1442, 1280, 1187, 1112, 1089, 1083, 1130, 1192, 1295, 1446, 1575, 1722, 1867, 2182, 1937, 1731, 1558, 1386, 1240, 1142, 1081, 1026, 1040, 1097, 1175, 1277, 1408, 1550, 1685, 1884, 2160, 1899, 1738, 1549, 1367, 1246, 1121, 1069, 1028, 1026, 1081, 1143, 1265, 1403, 1546, 1671, 1858, 2135, 1954, 1746, 1546, 1383, 1235, 1125, 1060, 1024, 1041, 1073, 1159, 1278, 1393, 1536, 1677, 1852, 2199, 1947, 1751, 1562, 1400, 1239, 1150, 1084, 1042, 1048, 1102, 1163, 1283, 1425, 1580, 1702, 1856, 2204, 1976, 1760, 1608, 1443, 1303, 1204, 1126, 1092, 1084, 1126, 1204, 1330, 1454, 1589, 1722, 1901, 2298, 2058, 1833, 1669, 1496, 1353, 1248, 1182, 1152, 1155, 1201, 1284, 1392, 1532, 1645, 1768, 1968, 2388, 2107, 1908, 1727, 1570, 1441, 1322, 1266, 1256, 1230, 1274, 1360, 1460, 1583, 1699, 1842, 2010, 2485, 2185, 1962, 1779, 1655, 1553, 1424, 1380, 1338, 1343, 1381, 1461, 1537, 1662, 1784, 1905, 2135, 2608, 2305, 2098, 1894, 1771, 1667, 1538, 1486, 1452, 1455, 1491, 1561, 1632, 1734, 1834, 2033, 2228, 2774, 2476, 2199, 2019, 1860, 1779, 1665, 1613, 1590, 1557, 1624, 1683, 1751, 1878, 1944, 2133, 2353, 2908, 2642, 2358, 2140, 2019, 1884, 1790, 1758, 1698, 1711, 1766, 1805, 1837, 1966, 2119, 2346, 2539]
| },
| "lsc_samples_blue": {
| "uCoeff": [2597, 2482, 2133, 1925, 1792, 1674, 1585, 1578, 1492, 1495, 1567, 1634, 1716, 1777, 1943, 2008, 2308, 2550, 2262, 1943, 1771, 1636, 1545, 1503, 1414, 1408, 1382, 1456, 1491, 1557, 1670, 1733, 1924, 2078, 2493, 2073, 1851, 1702, 1567, 1463, 1399, 1324, 1304, 1278, 1331, 1381, 1484, 1567, 1681, 1808, 2069, 2321, 2048, 1807, 1660, 1520, 1390, 1293, 1227, 1177, 1211, 1237, 1310, 1383, 1519, 1614, 1712, 1953, 2241, 1938, 1763, 1588, 1465, 1331, 1210, 1153, 1105, 1121, 1164, 1226, 1315, 1452, 1583, 1707, 1854, 2126, 1938, 1695, 1561, 1406, 1285, 1175, 1103, 1077, 1074, 1113, 1194, 1279, 1412, 1568, 1657, 1880, 2107, 1880, 1693, 1541, 1386, 1249, 1145, 1084, 1041, 1044, 1081, 1130, 1258, 1366, 1494, 1649, 1873, 2083, 1866, 1697, 1521, 1374, 1242, 1127, 1068, 1024, 1028, 1080, 1130, 1219, 1374, 1485, 1663, 1836, 2136, 1888, 1692, 1537, 1378, 1230, 1156, 1074, 1050, 1055, 1069, 1146, 1236, 1354, 1515, 1640, 1909, 2105, 1956, 1717, 1552, 1388, 1276, 1175, 1111, 1052, 1086, 1124, 1171, 1267, 1398, 1520, 1692, 1908, 2161, 1960, 1745, 1619, 1474, 1339, 1226, 1159, 1122, 1119, 1157, 1221, 1308, 1440, 1582, 1739, 1843, 2292, 2025, 1802, 1621, 1532, 1384, 1321, 1234, 1173, 1185, 1198, 1309, 1352, 1489, 1629, 1766, 1968, 2234, 2083, 1866, 1726, 1589, 1490, 1396, 1303, 1259, 1247, 1313, 1378, 1487, 1576, 1685, 1798, 2025, 2454, 2205, 1956, 1797, 1665, 1566, 1472, 1419, 1366, 1355, 1424, 1448, 1557, 1661, 1770, 1906, 2174, 2623, 2343, 2077, 1906, 1794, 1657, 1596, 1522, 1479, 1492, 1508, 1582, 1620, 1735, 1898, 2033, 2298, 2711, 2517, 2222, 2020, 1878, 1788, 1729, 1681, 1617, 1611, 1655, 1694, 1756, 1845, 1977, 2136, 2407, 2831, 2748, 2388, 2134, 2033, 1896, 1815, 1761, 1728, 1721, 1780, 1762, 1887, 1988, 2111, 2284, 2629]
| }
| }, {
| "name": "2592x1944_HZ_100",
| "resolution": "2592x1944",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4339, 3656, 3091, 2713, 2398, 2194, 2004, 1919, 1839, 1872, 1913, 2010, 2156, 2379, 2614, 2972, 3608, 3952, 3345, 2828, 2459, 2190, 1987, 1818, 1695, 1626, 1658, 1706, 1813, 1962, 2190, 2397, 2764, 3209, 3663, 3045, 2598, 2319, 1999, 1796, 1628, 1518, 1464, 1457, 1521, 1648, 1790, 2015, 2250, 2493, 2951, 3449, 2886, 2475, 2113, 1858, 1618, 1465, 1376, 1311, 1328, 1398, 1486, 1659, 1860, 2112, 2370, 2800, 3251, 2724, 2308, 1980, 1721, 1486, 1357, 1245, 1187, 1191, 1267, 1368, 1539, 1742, 2013, 2279, 2680, 3156, 2617, 2243, 1923, 1645, 1409, 1259, 1152, 1105, 1123, 1172, 1279, 1430, 1644, 1941, 2232, 2594, 3015, 2571, 2165, 1842, 1563, 1354, 1192, 1093, 1037, 1062, 1122, 1219, 1384, 1584, 1846, 2157, 2524, 3072, 2486, 2126, 1822, 1519, 1317, 1158, 1062, 1024, 1029, 1095, 1183, 1339, 1558, 1861, 2147, 2461, 3019, 2486, 2129, 1800, 1531, 1311, 1162, 1059, 1032, 1037, 1087, 1196, 1341, 1548, 1820, 2133, 2483, 3080, 2523, 2168, 1821, 1532, 1324, 1185, 1090, 1051, 1058, 1102, 1214, 1390, 1590, 1861, 2179, 2562, 3161, 2594, 2217, 1928, 1647, 1389, 1247, 1156, 1099, 1125, 1153, 1275, 1437, 1661, 1947, 2243, 2592, 3226, 2707, 2285, 2002, 1701, 1486, 1338, 1244, 1185, 1190, 1256, 1344, 1507, 1769, 2049, 2327, 2730, 3378, 2884, 2402, 2106, 1840, 1625, 1463, 1347, 1297, 1307, 1350, 1469, 1660, 1894, 2121, 2450, 2836, 3670, 3140, 2590, 2244, 1987, 1765, 1616, 1490, 1442, 1455, 1515, 1640, 1808, 2031, 2311, 2615, 3058, 3893, 3301, 2809, 2483, 2171, 1962, 1790, 1687, 1629, 1646, 1697, 1831, 1965, 2206, 2474, 2791, 3272, 4236, 3584, 3076, 2682, 2406, 2220, 2033, 1905, 1857, 1854, 1914, 2067, 2210, 2481, 2668, 3034, 3560, 4691, 3963, 3358, 3006, 2697, 2478, 2266, 2155, 2108, 2138, 2218, 2307, 2492, 2683, 3022, 3370, 3937]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3414, 2839, 2477, 2157, 1965, 1814, 1696, 1670, 1626, 1635, 1670, 1729, 1843, 1962, 2135, 2392, 2918, 3157, 2638, 2252, 2008, 1817, 1682, 1604, 1526, 1504, 1498, 1528, 1583, 1709, 1817, 1969, 2215, 2597, 2910, 2429, 2081, 1886, 1693, 1586, 1460, 1421, 1385, 1368, 1425, 1487, 1575, 1710, 1847, 2050, 2433, 2696, 2277, 2002, 1749, 1645, 1479, 1350, 1302, 1237, 1283, 1288, 1375, 1496, 1638, 1784, 1954, 2254, 2625, 2157, 1884, 1682, 1509, 1374, 1259, 1199, 1160, 1177, 1222, 1288, 1393, 1570, 1703, 1909, 2150, 2431, 2095, 1815, 1616, 1469, 1313, 1205, 1135, 1093, 1089, 1154, 1228, 1320, 1477, 1641, 1831, 2044, 2391, 2045, 1783, 1578, 1403, 1252, 1149, 1085, 1049, 1067, 1110, 1173, 1295, 1433, 1618, 1789, 2015, 2351, 2022, 1762, 1548, 1376, 1235, 1126, 1073, 1024, 1039, 1088, 1152, 1275, 1435, 1585, 1777, 2018, 2397, 2014, 1761, 1572, 1387, 1231, 1134, 1064, 1031, 1043, 1067, 1157, 1279, 1399, 1600, 1777, 1984, 2411, 2046, 1797, 1583, 1414, 1256, 1137, 1080, 1056, 1054, 1103, 1167, 1294, 1449, 1626, 1780, 2016, 2437, 2106, 1812, 1614, 1457, 1300, 1207, 1142, 1104, 1111, 1136, 1214, 1354, 1473, 1637, 1837, 2078, 2572, 2189, 1876, 1663, 1518, 1361, 1265, 1185, 1165, 1156, 1222, 1279, 1396, 1544, 1728, 1917, 2280, 2683, 2291, 1973, 1751, 1573, 1469, 1339, 1270, 1252, 1256, 1304, 1362, 1501, 1653, 1810, 1975, 2248, 2928, 2395, 2074, 1869, 1716, 1567, 1468, 1363, 1362, 1374, 1412, 1484, 1597, 1766, 1901, 2103, 2447, 3080, 2611, 2261, 2020, 1858, 1689, 1605, 1526, 1491, 1515, 1538, 1626, 1743, 1851, 2020, 2226, 2660, 3346, 2871, 2457, 2208, 1996, 1847, 1749, 1687, 1663, 1647, 1688, 1750, 1887, 2032, 2192, 2457, 2831, 3623, 3180, 2696, 2407, 2213, 2038, 1943, 1832, 1815, 1813, 1856, 1923, 2060, 2173, 2361, 2764, 3249]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3440, 2844, 2421, 2143, 1944, 1812, 1661, 1613, 1575, 1581, 1627, 1693, 1777, 1930, 2113, 2405, 2859, 3245, 2681, 2217, 1998, 1798, 1656, 1559, 1483, 1439, 1478, 1479, 1560, 1652, 1806, 1933, 2208, 2550, 2999, 2430, 2114, 1887, 1678, 1573, 1454, 1367, 1338, 1319, 1359, 1436, 1577, 1690, 1845, 2029, 2401, 2771, 2325, 2004, 1808, 1576, 1447, 1341, 1252, 1210, 1231, 1285, 1355, 1468, 1590, 1769, 1949, 2293, 2645, 2244, 1916, 1718, 1518, 1361, 1249, 1176, 1145, 1148, 1186, 1268, 1378, 1548, 1700, 1916, 2117, 2545, 2154, 1825, 1645, 1472, 1292, 1192, 1114, 1090, 1084, 1133, 1200, 1314, 1490, 1656, 1861, 2089, 2472, 2108, 1827, 1608, 1408, 1248, 1144, 1082, 1026, 1040, 1099, 1181, 1293, 1444, 1621, 1809, 2099, 2436, 2057, 1830, 1595, 1386, 1253, 1122, 1069, 1028, 1026, 1082, 1147, 1278, 1436, 1613, 1788, 2061, 2402, 2119, 1838, 1591, 1402, 1241, 1126, 1060, 1024, 1041, 1074, 1163, 1292, 1425, 1601, 1793, 2051, 2484, 2113, 1845, 1609, 1421, 1246, 1152, 1084, 1042, 1048, 1103, 1167, 1297, 1460, 1652, 1824, 2058, 2499, 2154, 1860, 1663, 1469, 1313, 1208, 1127, 1093, 1085, 1128, 1211, 1349, 1494, 1666, 1852, 2121, 2633, 2263, 1951, 1737, 1530, 1369, 1255, 1185, 1154, 1158, 1206, 1296, 1419, 1585, 1736, 1916, 2216, 2771, 2339, 2051, 1811, 1617, 1466, 1335, 1274, 1263, 1237, 1285, 1381, 1497, 1650, 1808, 2018, 2287, 2930, 2460, 2133, 1884, 1721, 1595, 1448, 1398, 1353, 1359, 1403, 1496, 1591, 1750, 1922, 2113, 2473, 3139, 2643, 2321, 2035, 1866, 1732, 1581, 1520, 1482, 1486, 1530, 1616, 1710, 1849, 2002, 2299, 2632, 3429, 2908, 2479, 2210, 1990, 1876, 1736, 1671, 1644, 1610, 1690, 1768, 1864, 2042, 2163, 2463, 2850, 3716, 3191, 2727, 2394, 2208, 2023, 1899, 1854, 1783, 1801, 1871, 1931, 1991, 2180, 2421, 2794, 3188]
| },
| "lsc_samples_blue": {
| "uCoeff": [3271, 2976, 2439, 2130, 1938, 1779, 1665, 1650, 1551, 1557, 1644, 1733, 1847, 1948, 2197, 2342, 2858, 3121, 2630, 2162, 1915, 1732, 1612, 1556, 1453, 1445, 1417, 1504, 1551, 1640, 1794, 1902, 2192, 2473, 2985, 2350, 2022, 1812, 1636, 1508, 1430, 1346, 1323, 1296, 1357, 1417, 1543, 1655, 1817, 2015, 2420, 2716, 2290, 1950, 1748, 1572, 1419, 1310, 1237, 1184, 1220, 1250, 1333, 1421, 1588, 1721, 1875, 2236, 2583, 2134, 1883, 1655, 1503, 1350, 1218, 1157, 1107, 1124, 1170, 1238, 1340, 1503, 1673, 1854, 2087, 2416, 2119, 1793, 1617, 1434, 1297, 1180, 1105, 1078, 1075, 1116, 1202, 1297, 1453, 1648, 1783, 2105, 2378, 2040, 1784, 1590, 1408, 1257, 1147, 1085, 1041, 1044, 1082, 1134, 1273, 1398, 1558, 1766, 2086, 2340, 2018, 1784, 1565, 1394, 1249, 1129, 1068, 1024, 1028, 1081, 1133, 1230, 1405, 1545, 1778, 2033, 2403, 2042, 1777, 1581, 1397, 1236, 1158, 1074, 1050, 1055, 1070, 1150, 1247, 1382, 1577, 1750, 2122, 2368, 2124, 1806, 1599, 1408, 1284, 1177, 1111, 1052, 1086, 1126, 1176, 1281, 1431, 1584, 1812, 2123, 2446, 2135, 1843, 1675, 1502, 1351, 1230, 1160, 1123, 1120, 1160, 1228, 1326, 1479, 1658, 1873, 2048, 2625, 2224, 1916, 1683, 1569, 1401, 1330, 1238, 1176, 1188, 1203, 1323, 1376, 1538, 1718, 1913, 2216, 2574, 2311, 2002, 1810, 1638, 1518, 1412, 1312, 1266, 1254, 1326, 1400, 1527, 1642, 1792, 1964, 2306, 2890, 2484, 2126, 1904, 1732, 1609, 1499, 1439, 1382, 1372, 1449, 1481, 1613, 1749, 1906, 2114, 2524, 3159, 2691, 2296, 2049, 1892, 1721, 1644, 1558, 1510, 1526, 1548, 1639, 1696, 1851, 2079, 2299, 2725, 3343, 2961, 2508, 2211, 2011, 1887, 1807, 1746, 1674, 1669, 1724, 1780, 1870, 2003, 2205, 2467, 2925, 3605, 3333, 2765, 2386, 2224, 2037, 1927, 1857, 1817, 1812, 1888, 1881, 2051, 2207, 2411, 2712, 3317]
| }
| }, {
| "name": "2592x1944_TL84_70",
| "resolution": "2592x1944",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2584, 2323, 2062, 1855, 1751, 1622, 1533, 1475, 1438, 1435, 1492, 1532, 1582, 1694, 1800, 1998, 2214, 2468, 2175, 1944, 1762, 1637, 1501, 1445, 1384, 1356, 1357, 1387, 1427, 1516, 1591, 1703, 1868, 2081, 2370, 2038, 1810, 1687, 1544, 1425, 1341, 1282, 1262, 1249, 1284, 1343, 1425, 1500, 1615, 1758, 1983, 2253, 1990, 1753, 1592, 1469, 1341, 1271, 1216, 1183, 1178, 1210, 1270, 1369, 1451, 1554, 1677, 1875, 2125, 1910, 1693, 1541, 1409, 1300, 1210, 1144, 1098, 1108, 1147, 1218, 1308, 1407, 1500, 1661, 1844, 2076, 1840, 1659, 1504, 1385, 1246, 1151, 1087, 1064, 1068, 1106, 1150, 1239, 1365, 1503, 1614, 1763, 2001, 1779, 1645, 1444, 1327, 1221, 1122, 1066, 1033, 1053, 1084, 1127, 1228, 1323, 1438, 1592, 1762, 2039, 1767, 1607, 1448, 1317, 1200, 1105, 1059, 1026, 1025, 1061, 1115, 1198, 1308, 1442, 1589, 1746, 2024, 1819, 1588, 1471, 1335, 1209, 1103, 1059, 1027, 1024, 1054, 1124, 1204, 1297, 1462, 1563, 1744, 2029, 1805, 1621, 1479, 1318, 1224, 1128, 1078, 1037, 1054, 1068, 1131, 1228, 1340, 1492, 1633, 1776, 2095, 1865, 1653, 1510, 1375, 1244, 1177, 1108, 1080, 1088, 1109, 1167, 1259, 1378, 1489, 1648, 1794, 2142, 1901, 1704, 1555, 1439, 1306, 1239, 1173, 1138, 1133, 1173, 1227, 1309, 1437, 1544, 1692, 1858, 2215, 2005, 1789, 1622, 1491, 1386, 1307, 1234, 1198, 1197, 1232, 1294, 1380, 1476, 1599, 1746, 1935, 2378, 2068, 1831, 1685, 1563, 1474, 1399, 1309, 1288, 1275, 1329, 1378, 1482, 1590, 1683, 1814, 2003, 2482, 2206, 1988, 1804, 1654, 1563, 1474, 1430, 1395, 1381, 1426, 1479, 1558, 1652, 1771, 1882, 2114, 2682, 2359, 2089, 1903, 1784, 1699, 1599, 1526, 1501, 1479, 1515, 1593, 1662, 1764, 1862, 2062, 2259, 2789, 2538, 2252, 2074, 1897, 1807, 1710, 1631, 1609, 1613, 1653, 1676, 1773, 1853, 2008, 2201, 2430]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2498, 2217, 1959, 1829, 1674, 1558, 1499, 1461, 1452, 1441, 1457, 1511, 1590, 1658, 1748, 1918, 2152, 2395, 2094, 1832, 1679, 1577, 1516, 1437, 1379, 1359, 1362, 1379, 1434, 1505, 1579, 1668, 1822, 2003, 2257, 1960, 1777, 1616, 1502, 1433, 1349, 1304, 1288, 1273, 1294, 1358, 1407, 1494, 1597, 1718, 1922, 2153, 1885, 1707, 1561, 1470, 1345, 1269, 1214, 1189, 1205, 1236, 1288, 1367, 1458, 1545, 1649, 1824, 2074, 1853, 1652, 1517, 1388, 1286, 1198, 1144, 1119, 1123, 1173, 1220, 1314, 1415, 1511, 1625, 1756, 2038, 1802, 1614, 1476, 1352, 1240, 1141, 1092, 1065, 1076, 1114, 1179, 1270, 1380, 1479, 1584, 1763, 1976, 1744, 1586, 1436, 1309, 1202, 1121, 1066, 1045, 1057, 1093, 1139, 1234, 1365, 1456, 1581, 1702, 1970, 1747, 1567, 1441, 1298, 1187, 1099, 1043, 1024, 1032, 1062, 1125, 1210, 1348, 1453, 1571, 1726, 1973, 1753, 1585, 1436, 1310, 1187, 1099, 1049, 1031, 1035, 1074, 1145, 1233, 1330, 1459, 1568, 1697, 1997, 1767, 1601, 1450, 1320, 1188, 1109, 1075, 1041, 1049, 1079, 1146, 1241, 1361, 1484, 1599, 1725, 2027, 1793, 1605, 1478, 1363, 1239, 1148, 1103, 1080, 1080, 1109, 1181, 1290, 1382, 1510, 1622, 1744, 2075, 1847, 1659, 1536, 1393, 1300, 1213, 1152, 1129, 1135, 1175, 1239, 1321, 1443, 1544, 1664, 1856, 2161, 1891, 1742, 1572, 1455, 1369, 1292, 1230, 1198, 1207, 1238, 1294, 1398, 1493, 1601, 1700, 1887, 2281, 2030, 1796, 1650, 1546, 1429, 1373, 1305, 1290, 1308, 1316, 1404, 1467, 1576, 1653, 1783, 1961, 2381, 2117, 1884, 1765, 1637, 1539, 1457, 1413, 1377, 1411, 1442, 1462, 1552, 1654, 1745, 1865, 2061, 2557, 2286, 1999, 1859, 1744, 1629, 1566, 1507, 1516, 1483, 1526, 1596, 1655, 1744, 1832, 1987, 2227, 2644, 2484, 2140, 1971, 1854, 1748, 1683, 1628, 1596, 1608, 1621, 1698, 1747, 1830, 1967, 2147, 2391]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2540, 2286, 2013, 1830, 1689, 1584, 1541, 1482, 1446, 1449, 1486, 1515, 1590, 1642, 1760, 1907, 2134, 2427, 2132, 1876, 1723, 1612, 1503, 1441, 1392, 1365, 1372, 1397, 1422, 1508, 1581, 1660, 1820, 2001, 2315, 1989, 1804, 1652, 1537, 1447, 1367, 1299, 1285, 1282, 1312, 1355, 1413, 1518, 1590, 1729, 1904, 2178, 1952, 1723, 1599, 1466, 1348, 1272, 1230, 1209, 1199, 1237, 1281, 1369, 1463, 1547, 1660, 1829, 2089, 1863, 1679, 1556, 1409, 1309, 1203, 1159, 1110, 1125, 1167, 1214, 1307, 1413, 1507, 1632, 1775, 2042, 1818, 1647, 1483, 1372, 1249, 1155, 1105, 1081, 1083, 1110, 1175, 1260, 1370, 1494, 1603, 1774, 1997, 1797, 1615, 1472, 1335, 1217, 1125, 1082, 1050, 1049, 1088, 1151, 1232, 1338, 1463, 1574, 1740, 2022, 1772, 1616, 1470, 1319, 1211, 1115, 1071, 1037, 1033, 1073, 1118, 1213, 1347, 1446, 1579, 1727, 2032, 1789, 1621, 1442, 1325, 1200, 1114, 1061, 1024, 1041, 1071, 1136, 1216, 1332, 1454, 1584, 1733, 2036, 1805, 1621, 1482, 1336, 1210, 1145, 1072, 1048, 1056, 1079, 1134, 1243, 1361, 1492, 1592, 1733, 2056, 1829, 1656, 1525, 1372, 1248, 1165, 1103, 1083, 1094, 1105, 1188, 1270, 1381, 1512, 1616, 1781, 2135, 1901, 1732, 1563, 1432, 1301, 1211, 1162, 1135, 1132, 1173, 1251, 1339, 1429, 1542, 1667, 1836, 2240, 1959, 1754, 1606, 1456, 1365, 1284, 1232, 1207, 1204, 1243, 1310, 1394, 1498, 1594, 1720, 1904, 2306, 2010, 1844, 1669, 1572, 1474, 1387, 1314, 1298, 1305, 1333, 1393, 1457, 1557, 1651, 1791, 1985, 2479, 2150, 1937, 1778, 1676, 1580, 1484, 1427, 1390, 1390, 1423, 1492, 1545, 1645, 1728, 1875, 2067, 2582, 2294, 2045, 1888, 1768, 1669, 1581, 1537, 1511, 1510, 1529, 1571, 1632, 1739, 1835, 1992, 2250, 2725, 2482, 2189, 2013, 1891, 1773, 1703, 1658, 1620, 1609, 1638, 1689, 1727, 1830, 1941, 2130, 2330]
| },
| "lsc_samples_blue": {
| "uCoeff": [2414, 2192, 1887, 1694, 1594, 1553, 1436, 1407, 1379, 1368, 1422, 1485, 1517, 1631, 1723, 1872, 2071, 2228, 1985, 1763, 1622, 1521, 1450, 1371, 1307, 1296, 1264, 1321, 1369, 1443, 1511, 1608, 1733, 1953, 2165, 1854, 1678, 1524, 1422, 1347, 1287, 1241, 1206, 1197, 1248, 1282, 1359, 1449, 1541, 1636, 1842, 2014, 1804, 1565, 1492, 1380, 1291, 1207, 1152, 1134, 1148, 1174, 1228, 1298, 1388, 1485, 1601, 1763, 1925, 1743, 1584, 1426, 1358, 1252, 1173, 1111, 1091, 1086, 1121, 1173, 1254, 1347, 1446, 1553, 1727, 1903, 1702, 1535, 1423, 1280, 1204, 1117, 1063, 1052, 1059, 1090, 1143, 1212, 1304, 1424, 1523, 1686, 1891, 1652, 1526, 1406, 1275, 1173, 1085, 1044, 1024, 1034, 1064, 1101, 1171, 1284, 1392, 1506, 1645, 1864, 1659, 1482, 1376, 1256, 1167, 1084, 1049, 1024, 1025, 1059, 1100, 1160, 1282, 1375, 1517, 1623, 1909, 1669, 1503, 1408, 1257, 1166, 1101, 1051, 1025, 1051, 1047, 1103, 1189, 1284, 1383, 1507, 1644, 1866, 1701, 1545, 1410, 1296, 1181, 1112, 1058, 1052, 1060, 1083, 1106, 1211, 1308, 1387, 1533, 1689, 1938, 1729, 1576, 1434, 1330, 1216, 1146, 1100, 1083, 1092, 1106, 1149, 1236, 1331, 1426, 1549, 1713, 2024, 1768, 1596, 1485, 1373, 1265, 1214, 1165, 1127, 1119, 1146, 1202, 1284, 1369, 1499, 1596, 1784, 2046, 1855, 1689, 1513, 1435, 1326, 1277, 1201, 1180, 1179, 1196, 1268, 1341, 1414, 1519, 1632, 1820, 2165, 1939, 1755, 1612, 1515, 1420, 1370, 1284, 1281, 1263, 1282, 1348, 1395, 1494, 1593, 1714, 1887, 2297, 2023, 1851, 1664, 1592, 1514, 1412, 1375, 1363, 1375, 1387, 1407, 1469, 1528, 1665, 1803, 1993, 2451, 2201, 1895, 1786, 1687, 1605, 1523, 1473, 1453, 1466, 1471, 1496, 1549, 1641, 1747, 1906, 2164, 2553, 2356, 2086, 1908, 1778, 1649, 1588, 1552, 1558, 1539, 1562, 1608, 1658, 1721, 1893, 2060, 2223]
| }
| }, {
| "name": "2592x1944_TL84_100",
| "resolution": "2592x1944",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3253, 2764, 2349, 2044, 1889, 1719, 1605, 1534, 1491, 1489, 1558, 1614, 1688, 1846, 2014, 2329, 2724, 3009, 2517, 2164, 1904, 1733, 1563, 1491, 1420, 1388, 1390, 1427, 1479, 1593, 1700, 1865, 2119, 2476, 2822, 2306, 1973, 1795, 1610, 1466, 1367, 1301, 1278, 1265, 1306, 1375, 1476, 1578, 1738, 1952, 2305, 2627, 2218, 1886, 1671, 1516, 1366, 1286, 1226, 1191, 1186, 1221, 1289, 1405, 1510, 1651, 1831, 2134, 2434, 2100, 1801, 1603, 1442, 1317, 1218, 1148, 1100, 1111, 1152, 1230, 1332, 1453, 1577, 1798, 2074, 2353, 2002, 1752, 1554, 1411, 1257, 1155, 1088, 1065, 1069, 1108, 1156, 1254, 1401, 1573, 1731, 1957, 2246, 1920, 1729, 1484, 1346, 1228, 1124, 1066, 1033, 1053, 1085, 1131, 1241, 1351, 1494, 1698, 1947, 2286, 1901, 1682, 1485, 1333, 1206, 1106, 1059, 1026, 1025, 1062, 1118, 1208, 1333, 1496, 1691, 1921, 2265, 1960, 1659, 1509, 1352, 1215, 1104, 1059, 1027, 1024, 1054, 1127, 1214, 1320, 1517, 1659, 1917, 2273, 1945, 1698, 1519, 1334, 1230, 1130, 1078, 1037, 1054, 1069, 1134, 1239, 1368, 1552, 1742, 1959, 2363, 2022, 1738, 1556, 1397, 1252, 1180, 1109, 1080, 1089, 1111, 1172, 1274, 1411, 1552, 1764, 1987, 2436, 2075, 1804, 1610, 1469, 1319, 1245, 1176, 1140, 1135, 1177, 1237, 1329, 1480, 1620, 1824, 2077, 2549, 2216, 1913, 1693, 1531, 1408, 1319, 1241, 1203, 1203, 1241, 1310, 1411, 1530, 1692, 1901, 2191, 2791, 2315, 1978, 1777, 1619, 1510, 1422, 1323, 1301, 1288, 1348, 1406, 1530, 1668, 1803, 2001, 2302, 2971, 2518, 2188, 1931, 1735, 1618, 1512, 1459, 1421, 1407, 1460, 1525, 1626, 1754, 1926, 2108, 2479, 3303, 2756, 2343, 2072, 1903, 1786, 1662, 1576, 1547, 1524, 1569, 1666, 1762, 1906, 2062, 2371, 2721, 3545, 3052, 2591, 2313, 2063, 1934, 1808, 1710, 1683, 1690, 1742, 1782, 1915, 2042, 2280, 2600, 3032]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3129, 2621, 2217, 2012, 1797, 1644, 1567, 1518, 1506, 1495, 1519, 1590, 1697, 1802, 1948, 2221, 2636, 2908, 2412, 2025, 1805, 1663, 1579, 1483, 1414, 1391, 1396, 1418, 1487, 1580, 1686, 1822, 2059, 2369, 2670, 2207, 1933, 1712, 1563, 1475, 1376, 1324, 1306, 1291, 1316, 1392, 1456, 1571, 1716, 1901, 2223, 2497, 2088, 1831, 1635, 1517, 1370, 1284, 1224, 1197, 1214, 1249, 1309, 1403, 1518, 1640, 1797, 2068, 2369, 2031, 1753, 1576, 1419, 1302, 1206, 1148, 1122, 1126, 1180, 1232, 1339, 1462, 1590, 1754, 1962, 2305, 1956, 1700, 1523, 1376, 1250, 1145, 1093, 1066, 1077, 1117, 1186, 1288, 1417, 1545, 1695, 1957, 2214, 1879, 1662, 1475, 1327, 1209, 1123, 1066, 1045, 1057, 1094, 1143, 1247, 1397, 1514, 1685, 1872, 2200, 1877, 1637, 1478, 1313, 1192, 1100, 1043, 1024, 1032, 1063, 1128, 1220, 1377, 1508, 1670, 1897, 2201, 1883, 1656, 1471, 1325, 1192, 1100, 1049, 1031, 1035, 1075, 1149, 1244, 1356, 1514, 1665, 1859, 2234, 1901, 1675, 1488, 1337, 1193, 1110, 1075, 1041, 1049, 1080, 1150, 1253, 1391, 1543, 1703, 1895, 2278, 1937, 1684, 1521, 1384, 1247, 1151, 1104, 1080, 1081, 1111, 1187, 1306, 1416, 1576, 1734, 1924, 2352, 2010, 1752, 1590, 1420, 1313, 1219, 1155, 1131, 1137, 1180, 1249, 1342, 1487, 1620, 1791, 2075, 2481, 2077, 1858, 1637, 1492, 1390, 1304, 1237, 1203, 1213, 1247, 1311, 1430, 1549, 1694, 1845, 2130, 2664, 2268, 1937, 1737, 1601, 1461, 1394, 1319, 1303, 1322, 1334, 1434, 1513, 1653, 1767, 1962, 2246, 2836, 2405, 2062, 1886, 1715, 1591, 1493, 1441, 1401, 1439, 1477, 1507, 1620, 1756, 1894, 2087, 2409, 3131, 2661, 2232, 2019, 1856, 1707, 1626, 1555, 1563, 1529, 1581, 1670, 1754, 1882, 2025, 2274, 2677, 3338, 2979, 2448, 2186, 2011, 1865, 1777, 1707, 1669, 1684, 1706, 1807, 1884, 2014, 2228, 2528, 2977]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3190, 2714, 2286, 2013, 1815, 1674, 1615, 1542, 1500, 1504, 1552, 1594, 1697, 1783, 1964, 2206, 2609, 2952, 2462, 2079, 1857, 1704, 1565, 1487, 1428, 1397, 1407, 1438, 1473, 1583, 1688, 1812, 2057, 2366, 2748, 2244, 1966, 1754, 1603, 1490, 1396, 1319, 1303, 1301, 1336, 1389, 1463, 1598, 1708, 1915, 2199, 2530, 2172, 1850, 1679, 1512, 1374, 1287, 1240, 1218, 1208, 1250, 1301, 1405, 1524, 1642, 1810, 2074, 2388, 2043, 1785, 1620, 1442, 1326, 1211, 1163, 1113, 1128, 1173, 1226, 1331, 1459, 1585, 1763, 1986, 2310, 1976, 1738, 1531, 1397, 1260, 1159, 1107, 1082, 1084, 1113, 1182, 1277, 1406, 1563, 1718, 1971, 2241, 1941, 1695, 1514, 1354, 1224, 1127, 1083, 1050, 1049, 1089, 1156, 1245, 1368, 1522, 1677, 1919, 2265, 1906, 1692, 1509, 1336, 1217, 1116, 1071, 1037, 1033, 1074, 1121, 1224, 1375, 1500, 1679, 1898, 2275, 1925, 1697, 1478, 1341, 1205, 1115, 1061, 1024, 1041, 1072, 1139, 1226, 1359, 1508, 1683, 1903, 2282, 1946, 1698, 1522, 1353, 1216, 1147, 1072, 1048, 1056, 1080, 1138, 1255, 1391, 1552, 1694, 1905, 2315, 1979, 1742, 1572, 1394, 1256, 1168, 1104, 1083, 1095, 1107, 1194, 1285, 1415, 1578, 1727, 1971, 2427, 2075, 1835, 1619, 1461, 1314, 1217, 1165, 1137, 1134, 1177, 1262, 1362, 1471, 1618, 1794, 2050, 2582, 2160, 1872, 1675, 1493, 1386, 1295, 1239, 1212, 1210, 1253, 1328, 1426, 1555, 1686, 1869, 2151, 2697, 2243, 1993, 1758, 1629, 1510, 1409, 1329, 1311, 1319, 1352, 1422, 1502, 1631, 1765, 1972, 2278, 2967, 2447, 2126, 1901, 1759, 1636, 1522, 1456, 1415, 1417, 1456, 1540, 1612, 1746, 1874, 2099, 2417, 3165, 2672, 2289, 2054, 1884, 1752, 1642, 1588, 1558, 1558, 1585, 1642, 1727, 1876, 2029, 2280, 2709, 3454, 2977, 2511, 2238, 2056, 1894, 1799, 1741, 1696, 1685, 1725, 1797, 1860, 2013, 2194, 2505, 2889]
| },
| "lsc_samples_blue": {
| "uCoeff": [3009, 2588, 2125, 1847, 1702, 1638, 1495, 1457, 1424, 1413, 1479, 1560, 1611, 1769, 1916, 2159, 2520, 2678, 2271, 1939, 1737, 1598, 1505, 1409, 1335, 1322, 1288, 1354, 1414, 1508, 1604, 1747, 1944, 2300, 2548, 2073, 1814, 1605, 1473, 1380, 1309, 1257, 1219, 1210, 1267, 1308, 1402, 1518, 1648, 1797, 2117, 2316, 1988, 1664, 1557, 1417, 1312, 1218, 1159, 1139, 1154, 1183, 1244, 1327, 1438, 1569, 1738, 1988, 2178, 1897, 1674, 1474, 1387, 1266, 1179, 1114, 1093, 1088, 1125, 1182, 1274, 1386, 1514, 1667, 1924, 2134, 1836, 1610, 1465, 1298, 1212, 1120, 1064, 1052, 1060, 1092, 1149, 1225, 1333, 1482, 1622, 1860, 2108, 1769, 1594, 1442, 1291, 1179, 1086, 1044, 1024, 1034, 1065, 1104, 1180, 1309, 1442, 1596, 1800, 2068, 1773, 1541, 1407, 1269, 1172, 1085, 1049, 1024, 1025, 1060, 1102, 1168, 1305, 1420, 1606, 1769, 2122, 1784, 1564, 1441, 1270, 1170, 1102, 1051, 1025, 1051, 1047, 1105, 1198, 1306, 1429, 1593, 1793, 2071, 1823, 1612, 1444, 1311, 1186, 1113, 1058, 1052, 1060, 1084, 1109, 1221, 1333, 1434, 1625, 1850, 2167, 1861, 1651, 1473, 1349, 1223, 1149, 1101, 1083, 1093, 1108, 1154, 1249, 1360, 1480, 1647, 1886, 2287, 1915, 1680, 1533, 1398, 1276, 1220, 1168, 1129, 1121, 1150, 1210, 1303, 1405, 1569, 1710, 1984, 2333, 2034, 1796, 1571, 1470, 1344, 1288, 1207, 1185, 1184, 1203, 1283, 1368, 1460, 1599, 1763, 2043, 2513, 2155, 1888, 1693, 1566, 1451, 1391, 1297, 1293, 1275, 1298, 1374, 1434, 1559, 1696, 1877, 2150, 2724, 2286, 2023, 1768, 1665, 1564, 1444, 1400, 1386, 1400, 1417, 1446, 1526, 1610, 1798, 2008, 2318, 2985, 2551, 2103, 1932, 1790, 1680, 1578, 1518, 1494, 1510, 1520, 1557, 1631, 1760, 1920, 2169, 2591, 3208, 2808, 2380, 2109, 1921, 1750, 1668, 1621, 1626, 1606, 1639, 1702, 1778, 1880, 2133, 2412, 2737]
| }
| }, {
| "name": "2592x1944_GRAY_0",
| "resolution": "2592x1944",
| "illumination": "GRAY",
| "vignetting": 0,
| "lsc_samples_red": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| }
| }, {
| "name": "1296x960_A_100",
| "resolution": "1296x960",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4117, 3514, 2962, 2614, 2309, 2089, 1931, 1803, 1781, 1759, 1823, 1943, 2060, 2222, 2523, 2808, 3345, 3742, 3227, 2685, 2343, 2067, 1894, 1736, 1659, 1598, 1578, 1652, 1740, 1872, 2093, 2305, 2610, 3050, 3479, 2951, 2516, 2186, 1935, 1730, 1583, 1462, 1418, 1427, 1484, 1587, 1732, 1929, 2111, 2420, 2826, 3319, 2753, 2363, 2064, 1794, 1596, 1446, 1339, 1279, 1289, 1341, 1446, 1617, 1779, 2030, 2254, 2675, 3114, 2595, 2225, 1922, 1676, 1475, 1321, 1221, 1180, 1180, 1246, 1339, 1487, 1672, 1918, 2174, 2549, 2989, 2534, 2142, 1837, 1591, 1393, 1243, 1142, 1104, 1115, 1158, 1250, 1416, 1611, 1836, 2102, 2448, 2883, 2467, 2080, 1783, 1518, 1332, 1180, 1082, 1055, 1052, 1112, 1203, 1349, 1539, 1793, 2053, 2361, 2889, 2409, 2062, 1753, 1479, 1298, 1151, 1073, 1034, 1027, 1095, 1176, 1306, 1514, 1748, 2049, 2369, 2879, 2443, 2022, 1737, 1491, 1290, 1147, 1064, 1033, 1024, 1088, 1174, 1323, 1511, 1774, 2027, 2384, 2916, 2426, 2077, 1768, 1534, 1328, 1180, 1091, 1049, 1055, 1108, 1199, 1346, 1559, 1795, 2053, 2442, 2924, 2558, 2120, 1850, 1569, 1366, 1226, 1144, 1095, 1108, 1150, 1245, 1388, 1590, 1856, 2121, 2471, 3084, 2606, 2203, 1915, 1673, 1454, 1315, 1207, 1164, 1177, 1227, 1333, 1494, 1685, 1960, 2210, 2511, 3219, 2744, 2352, 2026, 1786, 1580, 1420, 1319, 1275, 1284, 1332, 1438, 1602, 1800, 2047, 2341, 2714, 3504, 2989, 2526, 2169, 1936, 1693, 1549, 1451, 1415, 1399, 1489, 1581, 1748, 1918, 2209, 2460, 2871, 3674, 3188, 2678, 2380, 2089, 1893, 1719, 1621, 1561, 1578, 1635, 1744, 1876, 2111, 2346, 2628, 3064, 4054, 3486, 2963, 2580, 2282, 2094, 1939, 1822, 1797, 1785, 1827, 1939, 2102, 2322, 2554, 2876, 3346, 4311, 3757, 3222, 2853, 2541, 2306, 2175, 2062, 2007, 2001, 2037, 2156, 2322, 2508, 2806, 3186, 3746]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3325, 2794, 2353, 2078, 1863, 1773, 1680, 1593, 1546, 1569, 1597, 1659, 1758, 1862, 2010, 2301, 2647, 3017, 2526, 2166, 1938, 1751, 1633, 1541, 1482, 1431, 1447, 1493, 1542, 1639, 1740, 1907, 2099, 2520, 2843, 2343, 2021, 1808, 1644, 1541, 1429, 1355, 1326, 1323, 1357, 1432, 1515, 1652, 1792, 2003, 2259, 2631, 2217, 1937, 1727, 1570, 1432, 1332, 1267, 1227, 1234, 1260, 1351, 1456, 1561, 1721, 1877, 2146, 2521, 2107, 1814, 1658, 1482, 1340, 1237, 1168, 1147, 1136, 1194, 1255, 1376, 1493, 1657, 1830, 2073, 2353, 2045, 1791, 1583, 1422, 1290, 1188, 1105, 1077, 1080, 1125, 1190, 1309, 1448, 1595, 1764, 2004, 2318, 1993, 1738, 1545, 1385, 1235, 1117, 1075, 1042, 1046, 1085, 1166, 1286, 1407, 1574, 1725, 1964, 2341, 1959, 1742, 1523, 1361, 1220, 1113, 1055, 1025, 1024, 1064, 1123, 1242, 1377, 1547, 1711, 1973, 2296, 1947, 1727, 1529, 1353, 1225, 1110, 1049, 1031, 1032, 1068, 1135, 1237, 1393, 1568, 1718, 1927, 2321, 2001, 1730, 1562, 1361, 1219, 1135, 1066, 1038, 1042, 1084, 1152, 1277, 1403, 1584, 1760, 1980, 2364, 2038, 1776, 1568, 1418, 1270, 1171, 1111, 1086, 1081, 1128, 1194, 1304, 1458, 1609, 1793, 2020, 2474, 2107, 1841, 1641, 1453, 1340, 1220, 1167, 1132, 1141, 1168, 1263, 1367, 1509, 1672, 1826, 2100, 2610, 2216, 1931, 1742, 1546, 1430, 1325, 1247, 1223, 1232, 1267, 1329, 1453, 1589, 1750, 1911, 2176, 2768, 2356, 2059, 1813, 1664, 1539, 1410, 1337, 1303, 1328, 1368, 1442, 1556, 1681, 1869, 2023, 2336, 2992, 2521, 2187, 1948, 1775, 1657, 1539, 1470, 1452, 1448, 1485, 1566, 1678, 1800, 1983, 2168, 2492, 3228, 2729, 2354, 2103, 1925, 1779, 1671, 1600, 1594, 1592, 1627, 1686, 1809, 1916, 2095, 2350, 2737, 3529, 3024, 2564, 2312, 2079, 1920, 1842, 1753, 1764, 1738, 1769, 1846, 1951, 2086, 2253, 2578, 2971]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3314, 2851, 2411, 2078, 1888, 1751, 1636, 1596, 1553, 1549, 1560, 1640, 1752, 1852, 2035, 2293, 2706, 3105, 2601, 2221, 1957, 1779, 1627, 1531, 1460, 1447, 1424, 1453, 1508, 1631, 1757, 1865, 2115, 2451, 2932, 2443, 2042, 1859, 1663, 1532, 1420, 1332, 1314, 1314, 1361, 1420, 1516, 1643, 1795, 1991, 2312, 2652, 2273, 1958, 1759, 1552, 1441, 1326, 1240, 1210, 1214, 1252, 1328, 1430, 1561, 1702, 1886, 2184, 2549, 2139, 1888, 1673, 1494, 1346, 1243, 1171, 1130, 1142, 1175, 1240, 1352, 1505, 1660, 1830, 2084, 2427, 2076, 1827, 1598, 1438, 1285, 1176, 1097, 1077, 1073, 1119, 1193, 1289, 1435, 1610, 1794, 2053, 2372, 2033, 1775, 1581, 1385, 1251, 1141, 1077, 1041, 1039, 1081, 1154, 1274, 1393, 1578, 1753, 1995, 2371, 2018, 1762, 1534, 1390, 1232, 1128, 1051, 1030, 1024, 1061, 1139, 1232, 1384, 1554, 1752, 2000, 2333, 2043, 1759, 1540, 1364, 1231, 1118, 1059, 1029, 1038, 1068, 1136, 1258, 1385, 1562, 1749, 1966, 2353, 2065, 1795, 1569, 1387, 1236, 1141, 1076, 1045, 1050, 1087, 1152, 1270, 1436, 1585, 1764, 2036, 2423, 2104, 1824, 1623, 1425, 1289, 1189, 1108, 1081, 1098, 1125, 1188, 1299, 1459, 1639, 1823, 2077, 2484, 2170, 1896, 1677, 1480, 1342, 1224, 1172, 1132, 1135, 1175, 1242, 1362, 1517, 1687, 1879, 2148, 2621, 2286, 1969, 1741, 1582, 1433, 1327, 1243, 1213, 1219, 1272, 1341, 1461, 1587, 1780, 1941, 2238, 2793, 2406, 2092, 1876, 1671, 1556, 1434, 1347, 1317, 1320, 1364, 1451, 1556, 1699, 1842, 2072, 2293, 3038, 2548, 2236, 1965, 1809, 1654, 1552, 1474, 1448, 1448, 1482, 1563, 1672, 1813, 1964, 2191, 2502, 3243, 2805, 2414, 2119, 1929, 1792, 1700, 1607, 1593, 1594, 1601, 1676, 1801, 1924, 2087, 2328, 2744, 3612, 3102, 2598, 2311, 2081, 1979, 1851, 1753, 1756, 1755, 1788, 1829, 1917, 2051, 2246, 2555, 3002]
| },
| "lsc_samples_blue": {
| "uCoeff": [3231, 2808, 2362, 2071, 1897, 1722, 1658, 1569, 1536, 1535, 1587, 1637, 1758, 1841, 2042, 2297, 2675, 3004, 2562, 2145, 1923, 1733, 1606, 1484, 1439, 1397, 1398, 1441, 1513, 1589, 1741, 1888, 2056, 2394, 2833, 2305, 2047, 1792, 1603, 1507, 1378, 1323, 1281, 1295, 1345, 1390, 1501, 1638, 1786, 1964, 2275, 2528, 2202, 1921, 1734, 1543, 1404, 1303, 1217, 1182, 1184, 1256, 1321, 1416, 1575, 1698, 1889, 2159, 2501, 2112, 1847, 1620, 1457, 1343, 1223, 1151, 1125, 1128, 1173, 1215, 1340, 1481, 1614, 1794, 2131, 2362, 2028, 1767, 1582, 1418, 1268, 1178, 1099, 1069, 1075, 1114, 1185, 1274, 1407, 1591, 1755, 1987, 2230, 2001, 1754, 1547, 1383, 1242, 1140, 1083, 1053, 1042, 1096, 1155, 1244, 1385, 1545, 1706, 1996, 2257, 2004, 1747, 1541, 1330, 1251, 1127, 1080, 1038, 1024, 1082, 1130, 1215, 1327, 1524, 1673, 1964, 2299, 1976, 1748, 1543, 1398, 1240, 1139, 1070, 1045, 1050, 1086, 1144, 1236, 1337, 1530, 1697, 1943, 2347, 2014, 1750, 1565, 1377, 1244, 1162, 1117, 1062, 1076, 1104, 1159, 1265, 1383, 1573, 1729, 2022, 2404, 2064, 1796, 1597, 1442, 1312, 1195, 1144, 1119, 1109, 1136, 1190, 1302, 1451, 1616, 1777, 2019, 2463, 2147, 1851, 1661, 1491, 1361, 1261, 1204, 1168, 1158, 1184, 1278, 1356, 1512, 1656, 1837, 2101, 2532, 2247, 1952, 1772, 1586, 1466, 1341, 1306, 1257, 1240, 1262, 1339, 1449, 1576, 1772, 1919, 2284, 2810, 2395, 2074, 1820, 1693, 1558, 1462, 1373, 1346, 1329, 1369, 1444, 1554, 1666, 1853, 2014, 2352, 2999, 2552, 2212, 1955, 1772, 1683, 1598, 1524, 1460, 1457, 1494, 1571, 1668, 1797, 1951, 2168, 2517, 3244, 2736, 2378, 2154, 1966, 1815, 1709, 1625, 1577, 1607, 1610, 1694, 1814, 1887, 2088, 2336, 2769, 3464, 3016, 2594, 2309, 2067, 1948, 1840, 1775, 1744, 1756, 1760, 1846, 1899, 2058, 2246, 2516, 3002]
| }
| }, {
| "name": "1296x960_A_70",
| "resolution": "1296x960",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3189, 2884, 2544, 2321, 2106, 1942, 1820, 1714, 1697, 1675, 1725, 1816, 1896, 2001, 2200, 2357, 2649, 3001, 2722, 2366, 2131, 1927, 1796, 1666, 1603, 1549, 1529, 1590, 1659, 1758, 1921, 2059, 2246, 2497, 2861, 2548, 2260, 2024, 1832, 1665, 1540, 1433, 1393, 1400, 1449, 1535, 1652, 1803, 1924, 2128, 2372, 2781, 2421, 2156, 1937, 1721, 1554, 1422, 1324, 1268, 1276, 1323, 1415, 1561, 1687, 1875, 2018, 2288, 2653, 2316, 2057, 1826, 1624, 1449, 1309, 1215, 1176, 1175, 1237, 1321, 1450, 1603, 1793, 1970, 2213, 2577, 2283, 1999, 1760, 1553, 1376, 1237, 1140, 1103, 1113, 1154, 1240, 1390, 1555, 1732, 1922, 2150, 2508, 2238, 1953, 1717, 1489, 1321, 1177, 1081, 1055, 1052, 1110, 1196, 1330, 1494, 1701, 1890, 2091, 2521, 2196, 1942, 1693, 1455, 1289, 1149, 1073, 1034, 1027, 1094, 1171, 1291, 1474, 1665, 1891, 2104, 2516, 2227, 1909, 1680, 1467, 1282, 1145, 1064, 1033, 1024, 1087, 1170, 1308, 1472, 1689, 1874, 2118, 2543, 2210, 1956, 1707, 1507, 1319, 1178, 1091, 1049, 1055, 1107, 1194, 1329, 1515, 1706, 1895, 2163, 2541, 2315, 1988, 1778, 1537, 1354, 1222, 1143, 1094, 1107, 1147, 1237, 1367, 1541, 1756, 1947, 2179, 2652, 2343, 2052, 1830, 1629, 1435, 1307, 1203, 1162, 1174, 1221, 1319, 1462, 1622, 1840, 2013, 2199, 2735, 2438, 2166, 1919, 1726, 1548, 1404, 1310, 1268, 1276, 1319, 1414, 1556, 1717, 1904, 2107, 2341, 2922, 2612, 2294, 2030, 1850, 1644, 1519, 1431, 1398, 1381, 1462, 1540, 1680, 1809, 2026, 2185, 2438, 3007, 2736, 2394, 2191, 1969, 1813, 1666, 1581, 1527, 1541, 1589, 1678, 1780, 1959, 2119, 2293, 2550, 3228, 2921, 2590, 2330, 2113, 1973, 1849, 1751, 1731, 1717, 1748, 1835, 1957, 2114, 2260, 2451, 2713, 3325, 3066, 2748, 2516, 2301, 2129, 2034, 1944, 1898, 1890, 1913, 2000, 2117, 2234, 2421, 2639, 2929]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2635, 2346, 2066, 1884, 1730, 1670, 1599, 1528, 1488, 1507, 1527, 1572, 1642, 1707, 1797, 1978, 2160, 2473, 2181, 1946, 1791, 1654, 1564, 1490, 1441, 1396, 1409, 1447, 1483, 1557, 1625, 1737, 1852, 2112, 2385, 2067, 1850, 1699, 1574, 1494, 1398, 1333, 1307, 1303, 1332, 1395, 1460, 1564, 1660, 1798, 1948, 2254, 1988, 1796, 1641, 1518, 1402, 1314, 1255, 1218, 1224, 1247, 1327, 1415, 1496, 1614, 1713, 1883, 2191, 1915, 1704, 1590, 1446, 1322, 1228, 1163, 1143, 1132, 1187, 1242, 1348, 1443, 1569, 1687, 1842, 2074, 1875, 1693, 1530, 1395, 1278, 1183, 1103, 1076, 1079, 1122, 1182, 1290, 1408, 1522, 1641, 1799, 2057, 1839, 1652, 1500, 1364, 1227, 1115, 1074, 1042, 1046, 1084, 1161, 1271, 1374, 1508, 1614, 1774, 2081, 1815, 1659, 1482, 1343, 1214, 1112, 1055, 1025, 1024, 1063, 1120, 1230, 1348, 1487, 1605, 1786, 2047, 1807, 1647, 1489, 1336, 1219, 1109, 1049, 1031, 1032, 1067, 1132, 1226, 1364, 1506, 1612, 1750, 2065, 1851, 1649, 1518, 1343, 1213, 1133, 1066, 1038, 1042, 1083, 1148, 1263, 1372, 1520, 1647, 1792, 2094, 1877, 1686, 1521, 1395, 1261, 1168, 1110, 1086, 1080, 1126, 1188, 1288, 1420, 1539, 1671, 1819, 2170, 1927, 1736, 1582, 1424, 1326, 1214, 1164, 1130, 1139, 1164, 1252, 1344, 1463, 1589, 1692, 1874, 2260, 2004, 1804, 1665, 1505, 1407, 1313, 1240, 1217, 1225, 1257, 1312, 1419, 1529, 1649, 1753, 1922, 2359, 2100, 1899, 1717, 1604, 1501, 1388, 1322, 1291, 1314, 1348, 1412, 1506, 1601, 1739, 1831, 2028, 2496, 2208, 1987, 1819, 1690, 1599, 1500, 1440, 1425, 1420, 1450, 1516, 1604, 1692, 1818, 1929, 2122, 2627, 2338, 2098, 1930, 1804, 1694, 1608, 1549, 1545, 1542, 1568, 1611, 1704, 1773, 1889, 2046, 2270, 2778, 2518, 2232, 2075, 1912, 1797, 1741, 1670, 1682, 1657, 1677, 1733, 1804, 1890, 1988, 2185, 2387]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2627, 2389, 2112, 1884, 1751, 1651, 1561, 1531, 1494, 1489, 1494, 1555, 1637, 1699, 1817, 1972, 2201, 2537, 2239, 1991, 1807, 1678, 1559, 1481, 1421, 1411, 1388, 1411, 1453, 1550, 1639, 1703, 1865, 2062, 2451, 2146, 1867, 1742, 1591, 1486, 1390, 1311, 1296, 1295, 1335, 1384, 1461, 1557, 1663, 1789, 1988, 2270, 2033, 1814, 1670, 1502, 1411, 1309, 1230, 1202, 1205, 1239, 1306, 1392, 1496, 1597, 1721, 1912, 2213, 1941, 1767, 1604, 1457, 1328, 1234, 1166, 1127, 1138, 1169, 1228, 1326, 1454, 1571, 1687, 1850, 2133, 1901, 1724, 1543, 1410, 1273, 1172, 1096, 1076, 1072, 1116, 1185, 1271, 1396, 1535, 1666, 1837, 2100, 1873, 1685, 1533, 1364, 1243, 1139, 1076, 1041, 1039, 1080, 1149, 1259, 1361, 1511, 1637, 1799, 2106, 1865, 1677, 1492, 1370, 1226, 1126, 1051, 1030, 1024, 1060, 1135, 1221, 1355, 1493, 1640, 1808, 2077, 1888, 1676, 1499, 1346, 1225, 1117, 1059, 1029, 1038, 1067, 1133, 1246, 1356, 1501, 1639, 1782, 2091, 1905, 1706, 1525, 1368, 1229, 1139, 1076, 1045, 1050, 1086, 1148, 1257, 1402, 1520, 1650, 1837, 2141, 1933, 1728, 1571, 1401, 1279, 1186, 1107, 1081, 1097, 1123, 1182, 1283, 1421, 1565, 1696, 1865, 2178, 1979, 1784, 1615, 1449, 1328, 1218, 1169, 1130, 1133, 1171, 1232, 1339, 1470, 1602, 1737, 1912, 2269, 2062, 1837, 1664, 1538, 1410, 1314, 1236, 1208, 1213, 1262, 1323, 1426, 1527, 1674, 1778, 1970, 2378, 2141, 1927, 1772, 1610, 1517, 1411, 1332, 1304, 1306, 1345, 1420, 1506, 1617, 1716, 1871, 1995, 2531, 2229, 2028, 1834, 1720, 1596, 1512, 1444, 1421, 1420, 1447, 1514, 1599, 1703, 1803, 1947, 2130, 2638, 2396, 2147, 1943, 1808, 1705, 1634, 1555, 1544, 1543, 1544, 1602, 1697, 1779, 1883, 2029, 2275, 2836, 2576, 2258, 2074, 1914, 1847, 1749, 1670, 1675, 1672, 1694, 1718, 1776, 1862, 1982, 2168, 2409]
| },
| "lsc_samples_blue": {
| "uCoeff": [2569, 2357, 2073, 1878, 1759, 1626, 1580, 1507, 1479, 1477, 1518, 1553, 1642, 1690, 1822, 1975, 2180, 2464, 2209, 1929, 1779, 1638, 1540, 1439, 1402, 1365, 1365, 1400, 1458, 1513, 1626, 1722, 1819, 2020, 2377, 2037, 1871, 1685, 1538, 1463, 1351, 1303, 1265, 1277, 1321, 1357, 1447, 1552, 1655, 1767, 1960, 2175, 1976, 1783, 1648, 1494, 1376, 1287, 1208, 1175, 1176, 1243, 1299, 1379, 1508, 1594, 1723, 1893, 2175, 1919, 1732, 1556, 1423, 1325, 1215, 1147, 1122, 1125, 1167, 1204, 1315, 1432, 1532, 1657, 1887, 2082, 1861, 1672, 1529, 1391, 1257, 1174, 1098, 1068, 1074, 1111, 1178, 1257, 1371, 1518, 1633, 1785, 1987, 1846, 1666, 1502, 1362, 1234, 1138, 1082, 1053, 1042, 1095, 1150, 1231, 1354, 1482, 1598, 1800, 2014, 1853, 1664, 1499, 1314, 1244, 1125, 1080, 1038, 1024, 1081, 1127, 1205, 1302, 1466, 1573, 1779, 2050, 1831, 1666, 1502, 1379, 1234, 1137, 1070, 1045, 1050, 1085, 1140, 1225, 1312, 1473, 1595, 1763, 2086, 1862, 1666, 1521, 1358, 1237, 1160, 1117, 1062, 1076, 1103, 1155, 1252, 1354, 1510, 1621, 1825, 2126, 1899, 1703, 1547, 1417, 1302, 1192, 1143, 1118, 1108, 1134, 1184, 1286, 1414, 1545, 1658, 1818, 2161, 1960, 1745, 1600, 1460, 1346, 1254, 1200, 1166, 1155, 1179, 1267, 1334, 1466, 1575, 1702, 1875, 2199, 2030, 1822, 1692, 1541, 1441, 1328, 1297, 1250, 1233, 1252, 1321, 1415, 1517, 1668, 1760, 2006, 2391, 2132, 1912, 1723, 1630, 1519, 1437, 1356, 1332, 1314, 1349, 1413, 1504, 1588, 1725, 1824, 2040, 2502, 2233, 2008, 1825, 1688, 1623, 1554, 1491, 1432, 1428, 1458, 1521, 1595, 1689, 1792, 1929, 2141, 2639, 2343, 2118, 1973, 1840, 1725, 1642, 1572, 1530, 1555, 1553, 1618, 1708, 1748, 1883, 2035, 2293, 2732, 2512, 2255, 2072, 1902, 1821, 1740, 1689, 1664, 1673, 1670, 1733, 1760, 1867, 1982, 2139, 2409]
| }
| }, {
| "name": "1296x960_CWF_100",
| "resolution": "1296x960",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3288, 2806, 2363, 2073, 1858, 1705, 1606, 1521, 1500, 1483, 1533, 1617, 1703, 1831, 2044, 2302, 2680, 2986, 2540, 2164, 1900, 1723, 1580, 1477, 1420, 1375, 1380, 1416, 1481, 1591, 1697, 1891, 2106, 2445, 2785, 2378, 1996, 1786, 1609, 1467, 1379, 1297, 1263, 1260, 1300, 1382, 1473, 1609, 1759, 1958, 2249, 2596, 2211, 1902, 1698, 1526, 1392, 1276, 1218, 1171, 1172, 1221, 1294, 1393, 1534, 1680, 1870, 2147, 2450, 2089, 1832, 1620, 1445, 1314, 1211, 1136, 1105, 1106, 1152, 1210, 1323, 1454, 1605, 1785, 2044, 2352, 2012, 1748, 1568, 1395, 1256, 1152, 1091, 1061, 1070, 1105, 1166, 1255, 1404, 1556, 1751, 1965, 2298, 1989, 1722, 1520, 1345, 1210, 1124, 1065, 1036, 1039, 1072, 1124, 1228, 1337, 1513, 1696, 1946, 2277, 1932, 1702, 1511, 1324, 1210, 1118, 1058, 1027, 1024, 1050, 1110, 1194, 1335, 1506, 1693, 1926, 2260, 1958, 1704, 1510, 1327, 1207, 1117, 1061, 1034, 1024, 1060, 1111, 1211, 1343, 1519, 1688, 1936, 2329, 1984, 1710, 1523, 1348, 1213, 1122, 1077, 1051, 1050, 1077, 1130, 1239, 1370, 1526, 1712, 1952, 2376, 2037, 1751, 1557, 1396, 1276, 1177, 1112, 1082, 1083, 1106, 1162, 1274, 1407, 1573, 1761, 1995, 2492, 2104, 1853, 1626, 1445, 1325, 1220, 1163, 1129, 1133, 1171, 1230, 1328, 1479, 1627, 1824, 2088, 2632, 2186, 1914, 1704, 1537, 1395, 1306, 1239, 1206, 1200, 1236, 1301, 1401, 1552, 1711, 1920, 2162, 2759, 2345, 2029, 1788, 1627, 1504, 1394, 1323, 1284, 1291, 1341, 1405, 1516, 1637, 1802, 1998, 2329, 2974, 2551, 2158, 1922, 1744, 1613, 1519, 1433, 1397, 1396, 1445, 1500, 1624, 1746, 1927, 2128, 2527, 3231, 2796, 2368, 2075, 1879, 1763, 1638, 1584, 1547, 1520, 1577, 1650, 1764, 1890, 2054, 2347, 2725, 3522, 3060, 2616, 2281, 2046, 1895, 1777, 1723, 1673, 1687, 1732, 1793, 1921, 2036, 2238, 2560, 3065]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3113, 2625, 2232, 1935, 1786, 1643, 1563, 1512, 1494, 1479, 1525, 1582, 1657, 1783, 1928, 2156, 2552, 2846, 2387, 2046, 1815, 1668, 1563, 1465, 1402, 1372, 1381, 1426, 1480, 1564, 1667, 1789, 2000, 2355, 2658, 2208, 1917, 1715, 1570, 1460, 1362, 1305, 1275, 1279, 1315, 1378, 1464, 1585, 1717, 1872, 2155, 2447, 2084, 1818, 1646, 1499, 1374, 1274, 1212, 1190, 1203, 1229, 1300, 1392, 1519, 1637, 1800, 2052, 2354, 1987, 1752, 1581, 1428, 1299, 1200, 1141, 1117, 1122, 1161, 1228, 1316, 1449, 1585, 1749, 1966, 2269, 1935, 1711, 1520, 1373, 1249, 1150, 1092, 1069, 1075, 1113, 1177, 1273, 1398, 1541, 1684, 1884, 2199, 1890, 1657, 1481, 1323, 1205, 1113, 1063, 1037, 1048, 1086, 1147, 1247, 1370, 1513, 1652, 1870, 2168, 1879, 1644, 1470, 1316, 1191, 1101, 1047, 1024, 1029, 1062, 1136, 1225, 1352, 1495, 1658, 1857, 2175, 1885, 1656, 1478, 1325, 1193, 1095, 1045, 1025, 1028, 1061, 1125, 1238, 1352, 1503, 1663, 1876, 2209, 1879, 1673, 1498, 1328, 1201, 1111, 1064, 1045, 1048, 1090, 1143, 1241, 1378, 1513, 1686, 1894, 2259, 1946, 1703, 1534, 1363, 1245, 1157, 1099, 1085, 1084, 1120, 1184, 1289, 1417, 1559, 1728, 1945, 2322, 2002, 1764, 1580, 1428, 1304, 1204, 1150, 1125, 1132, 1175, 1229, 1334, 1467, 1623, 1781, 2004, 2451, 2106, 1830, 1648, 1500, 1375, 1273, 1216, 1189, 1201, 1234, 1309, 1414, 1540, 1686, 1836, 2099, 2642, 2238, 1943, 1728, 1579, 1478, 1373, 1314, 1278, 1289, 1322, 1398, 1517, 1624, 1762, 1943, 2195, 2813, 2415, 2087, 1857, 1685, 1574, 1486, 1421, 1398, 1395, 1437, 1501, 1608, 1729, 1877, 2061, 2352, 3043, 2620, 2242, 1996, 1811, 1703, 1609, 1527, 1524, 1541, 1563, 1620, 1744, 1830, 2008, 2206, 2579, 3303, 2873, 2469, 2166, 1946, 1833, 1740, 1687, 1657, 1647, 1690, 1755, 1869, 1956, 2192, 2420, 2850]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3127, 2677, 2253, 1977, 1808, 1664, 1581, 1513, 1489, 1488, 1514, 1563, 1638, 1744, 1929, 2155, 2526, 2892, 2459, 2062, 1838, 1680, 1559, 1472, 1416, 1381, 1383, 1404, 1460, 1550, 1644, 1782, 1999, 2330, 2692, 2244, 1964, 1751, 1595, 1459, 1363, 1302, 1274, 1278, 1323, 1374, 1462, 1569, 1695, 1893, 2181, 2493, 2121, 1842, 1645, 1510, 1374, 1272, 1228, 1186, 1189, 1223, 1296, 1384, 1503, 1635, 1805, 2059, 2400, 2026, 1768, 1595, 1425, 1305, 1210, 1148, 1128, 1117, 1160, 1221, 1314, 1453, 1571, 1736, 1979, 2251, 1966, 1727, 1521, 1374, 1253, 1157, 1098, 1077, 1074, 1109, 1171, 1262, 1393, 1531, 1695, 1932, 2228, 1913, 1687, 1506, 1331, 1208, 1130, 1075, 1036, 1042, 1071, 1138, 1236, 1356, 1488, 1660, 1861, 2202, 1907, 1675, 1486, 1322, 1203, 1107, 1052, 1026, 1024, 1061, 1120, 1218, 1335, 1486, 1650, 1870, 2217, 1897, 1671, 1478, 1325, 1204, 1101, 1051, 1031, 1032, 1060, 1122, 1220, 1340, 1490, 1650, 1900, 2229, 1926, 1682, 1499, 1333, 1206, 1119, 1065, 1046, 1038, 1073, 1133, 1240, 1361, 1509, 1667, 1896, 2280, 1966, 1714, 1551, 1377, 1244, 1166, 1099, 1073, 1085, 1112, 1170, 1261, 1383, 1553, 1711, 1933, 2360, 2022, 1776, 1592, 1438, 1304, 1214, 1151, 1119, 1127, 1170, 1218, 1329, 1452, 1609, 1768, 1992, 2474, 2125, 1868, 1671, 1502, 1375, 1288, 1220, 1186, 1195, 1224, 1296, 1398, 1522, 1662, 1835, 2095, 2655, 2254, 1951, 1758, 1598, 1482, 1373, 1313, 1284, 1284, 1321, 1382, 1489, 1604, 1749, 1913, 2192, 2833, 2423, 2082, 1871, 1701, 1594, 1490, 1425, 1387, 1400, 1446, 1502, 1588, 1709, 1846, 2049, 2371, 3072, 2632, 2254, 2005, 1814, 1698, 1612, 1551, 1519, 1524, 1541, 1620, 1702, 1822, 1982, 2231, 2568, 3322, 2919, 2444, 2160, 1968, 1857, 1758, 1689, 1662, 1647, 1679, 1746, 1827, 1955, 2172, 2433, 2889]
| },
| "lsc_samples_blue": {
| "uCoeff": [2996, 2551, 2143, 1920, 1705, 1607, 1507, 1443, 1429, 1436, 1472, 1519, 1613, 1710, 1877, 2137, 2508, 2706, 2308, 1968, 1743, 1596, 1513, 1411, 1356, 1338, 1330, 1369, 1426, 1509, 1626, 1730, 1938, 2280, 2544, 2131, 1844, 1633, 1524, 1388, 1308, 1247, 1235, 1233, 1277, 1323, 1394, 1515, 1639, 1799, 2122, 2336, 2026, 1740, 1572, 1444, 1329, 1230, 1191, 1154, 1150, 1185, 1249, 1330, 1455, 1585, 1725, 1971, 2220, 1922, 1696, 1510, 1366, 1256, 1180, 1113, 1096, 1088, 1133, 1179, 1280, 1390, 1515, 1680, 1877, 2150, 1859, 1625, 1459, 1323, 1212, 1128, 1081, 1051, 1060, 1096, 1137, 1226, 1358, 1484, 1617, 1837, 2115, 1808, 1613, 1424, 1289, 1196, 1107, 1060, 1024, 1034, 1071, 1108, 1190, 1306, 1434, 1608, 1807, 2066, 1820, 1578, 1423, 1283, 1184, 1097, 1050, 1029, 1028, 1059, 1103, 1179, 1292, 1437, 1594, 1826, 2080, 1815, 1597, 1428, 1293, 1184, 1093, 1052, 1033, 1036, 1068, 1115, 1181, 1303, 1427, 1601, 1826, 2097, 1858, 1601, 1467, 1304, 1199, 1122, 1089, 1056, 1051, 1081, 1120, 1219, 1324, 1459, 1616, 1844, 2128, 1886, 1652, 1481, 1341, 1227, 1149, 1112, 1090, 1079, 1107, 1156, 1237, 1348, 1494, 1669, 1884, 2231, 1934, 1705, 1535, 1395, 1291, 1214, 1158, 1127, 1129, 1146, 1204, 1295, 1405, 1540, 1724, 1979, 2389, 2035, 1776, 1597, 1450, 1362, 1264, 1226, 1193, 1192, 1214, 1283, 1365, 1462, 1630, 1786, 2044, 2511, 2172, 1877, 1677, 1555, 1450, 1355, 1301, 1264, 1262, 1302, 1364, 1448, 1552, 1685, 1827, 2165, 2720, 2343, 2020, 1796, 1645, 1550, 1467, 1398, 1368, 1373, 1397, 1457, 1542, 1643, 1791, 1979, 2334, 2929, 2562, 2158, 1900, 1764, 1672, 1575, 1526, 1477, 1473, 1511, 1572, 1655, 1748, 1915, 2144, 2538, 3127, 2787, 2345, 2030, 1915, 1770, 1698, 1646, 1589, 1614, 1615, 1689, 1776, 1866, 2040, 2367, 2763]
| }
| }, {
| "name": "1296x960_CWF_70",
| "resolution": "1296x960",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2609, 2355, 2074, 1880, 1726, 1611, 1534, 1464, 1447, 1431, 1470, 1535, 1596, 1682, 1824, 1979, 2183, 2451, 2192, 1945, 1759, 1629, 1517, 1433, 1385, 1345, 1348, 1378, 1429, 1515, 1589, 1724, 1858, 2057, 2341, 2095, 1829, 1680, 1543, 1426, 1352, 1279, 1248, 1244, 1279, 1349, 1422, 1527, 1633, 1763, 1940, 2227, 1983, 1767, 1616, 1479, 1365, 1262, 1209, 1164, 1165, 1210, 1274, 1358, 1472, 1579, 1708, 1884, 2136, 1900, 1719, 1556, 1412, 1297, 1203, 1132, 1103, 1103, 1147, 1199, 1299, 1408, 1524, 1650, 1819, 2074, 1847, 1655, 1516, 1370, 1246, 1148, 1090, 1060, 1069, 1103, 1160, 1239, 1368, 1488, 1630, 1768, 2041, 1836, 1638, 1477, 1326, 1203, 1122, 1065, 1036, 1039, 1071, 1120, 1216, 1310, 1454, 1589, 1760, 2030, 1792, 1624, 1471, 1308, 1204, 1117, 1058, 1027, 1024, 1050, 1107, 1185, 1310, 1450, 1590, 1748, 2018, 1816, 1627, 1471, 1311, 1202, 1116, 1061, 1034, 1024, 1060, 1108, 1201, 1318, 1463, 1587, 1758, 2072, 1836, 1631, 1482, 1331, 1207, 1121, 1077, 1051, 1050, 1076, 1127, 1227, 1342, 1468, 1606, 1769, 2103, 1876, 1664, 1511, 1374, 1267, 1174, 1111, 1082, 1082, 1104, 1157, 1259, 1374, 1507, 1644, 1799, 2184, 1924, 1747, 1569, 1417, 1311, 1214, 1160, 1127, 1131, 1167, 1221, 1308, 1436, 1550, 1691, 1865, 2277, 1980, 1790, 1631, 1496, 1374, 1294, 1232, 1201, 1194, 1227, 1285, 1371, 1496, 1615, 1761, 1911, 2352, 2092, 1874, 1695, 1570, 1469, 1373, 1309, 1272, 1278, 1323, 1377, 1470, 1562, 1682, 1811, 2023, 2483, 2232, 1963, 1797, 1663, 1559, 1481, 1406, 1373, 1371, 1413, 1456, 1556, 1645, 1772, 1897, 2148, 2629, 2390, 2110, 1906, 1764, 1679, 1578, 1534, 1502, 1476, 1523, 1579, 1665, 1751, 1856, 2044, 2261, 2773, 2545, 2272, 2049, 1884, 1775, 1684, 1643, 1601, 1612, 1645, 1687, 1779, 1849, 1976, 2172, 2453]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2486, 2220, 1971, 1767, 1665, 1558, 1497, 1456, 1442, 1427, 1463, 1505, 1557, 1643, 1733, 1870, 2094, 2349, 2074, 1849, 1688, 1582, 1502, 1422, 1368, 1342, 1349, 1387, 1428, 1492, 1564, 1642, 1776, 1992, 2246, 1960, 1764, 1619, 1508, 1420, 1336, 1286, 1259, 1262, 1293, 1346, 1414, 1507, 1598, 1695, 1870, 2113, 1881, 1696, 1570, 1454, 1349, 1260, 1203, 1183, 1194, 1217, 1280, 1357, 1459, 1542, 1651, 1811, 2061, 1816, 1650, 1522, 1396, 1283, 1193, 1137, 1114, 1119, 1155, 1216, 1293, 1404, 1507, 1620, 1758, 2008, 1783, 1623, 1473, 1350, 1239, 1146, 1091, 1068, 1074, 1110, 1170, 1256, 1362, 1475, 1574, 1704, 1962, 1753, 1581, 1441, 1305, 1198, 1111, 1063, 1037, 1048, 1085, 1143, 1234, 1340, 1454, 1552, 1699, 1943, 1748, 1573, 1434, 1300, 1186, 1100, 1047, 1024, 1029, 1061, 1133, 1214, 1325, 1441, 1561, 1693, 1950, 1754, 1584, 1442, 1309, 1188, 1094, 1045, 1025, 1028, 1061, 1122, 1227, 1326, 1449, 1566, 1709, 1975, 1748, 1598, 1459, 1312, 1195, 1110, 1064, 1045, 1048, 1089, 1139, 1229, 1349, 1457, 1584, 1723, 2010, 1800, 1621, 1490, 1343, 1237, 1154, 1098, 1085, 1083, 1118, 1178, 1273, 1383, 1495, 1616, 1759, 2050, 1839, 1669, 1527, 1401, 1291, 1199, 1148, 1123, 1130, 1171, 1220, 1313, 1425, 1546, 1655, 1799, 2136, 1914, 1717, 1581, 1462, 1355, 1263, 1210, 1184, 1195, 1225, 1293, 1383, 1485, 1594, 1692, 1862, 2262, 2005, 1801, 1642, 1527, 1445, 1353, 1300, 1267, 1276, 1305, 1371, 1470, 1551, 1648, 1767, 1920, 2362, 2124, 1904, 1741, 1610, 1524, 1451, 1395, 1374, 1370, 1406, 1457, 1542, 1631, 1730, 1844, 2018, 2492, 2254, 2008, 1840, 1705, 1626, 1552, 1482, 1481, 1495, 1510, 1553, 1647, 1701, 1819, 1935, 2155, 2619, 2405, 2157, 1955, 1800, 1722, 1652, 1612, 1587, 1576, 1608, 1654, 1735, 1784, 1940, 2067, 2302]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2496, 2259, 1988, 1801, 1684, 1576, 1513, 1457, 1437, 1435, 1454, 1489, 1541, 1611, 1734, 1869, 2075, 2383, 2130, 1862, 1707, 1592, 1498, 1428, 1381, 1350, 1351, 1367, 1411, 1479, 1544, 1636, 1775, 1974, 2272, 1989, 1803, 1649, 1531, 1419, 1337, 1283, 1258, 1261, 1300, 1342, 1413, 1493, 1580, 1711, 1890, 2148, 1911, 1716, 1569, 1464, 1349, 1258, 1218, 1179, 1181, 1212, 1276, 1350, 1445, 1541, 1655, 1816, 2097, 1848, 1664, 1534, 1393, 1289, 1202, 1144, 1125, 1114, 1154, 1210, 1291, 1407, 1495, 1610, 1768, 1994, 1809, 1637, 1474, 1350, 1243, 1153, 1097, 1076, 1073, 1107, 1164, 1246, 1358, 1466, 1583, 1742, 1985, 1772, 1607, 1464, 1313, 1201, 1128, 1074, 1036, 1042, 1070, 1134, 1224, 1327, 1432, 1559, 1692, 1970, 1771, 1600, 1448, 1306, 1197, 1106, 1052, 1026, 1024, 1060, 1117, 1208, 1310, 1433, 1554, 1703, 1984, 1764, 1598, 1442, 1309, 1199, 1100, 1051, 1031, 1032, 1060, 1119, 1210, 1315, 1437, 1555, 1729, 1992, 1787, 1606, 1460, 1316, 1200, 1118, 1065, 1046, 1038, 1072, 1130, 1228, 1333, 1453, 1568, 1724, 2027, 1817, 1631, 1505, 1356, 1236, 1163, 1098, 1073, 1084, 1110, 1165, 1247, 1352, 1489, 1602, 1750, 2080, 1856, 1680, 1538, 1410, 1291, 1208, 1149, 1117, 1125, 1166, 1209, 1308, 1411, 1534, 1644, 1789, 2154, 1929, 1750, 1602, 1464, 1355, 1277, 1214, 1181, 1190, 1216, 1280, 1368, 1469, 1573, 1691, 1859, 2272, 2018, 1808, 1669, 1544, 1449, 1353, 1299, 1272, 1272, 1304, 1356, 1445, 1533, 1637, 1742, 1918, 2377, 2131, 1900, 1753, 1625, 1542, 1455, 1398, 1364, 1375, 1414, 1458, 1524, 1613, 1705, 1835, 2032, 2513, 2263, 2017, 1847, 1708, 1622, 1554, 1504, 1477, 1480, 1490, 1553, 1611, 1694, 1798, 1954, 2147, 2633, 2440, 2138, 1951, 1819, 1742, 1668, 1613, 1591, 1576, 1599, 1647, 1700, 1783, 1924, 2077, 2330]
| },
| "lsc_samples_blue": {
| "uCoeff": [2404, 2165, 1902, 1755, 1597, 1527, 1448, 1395, 1384, 1389, 1417, 1451, 1520, 1584, 1693, 1856, 2063, 2247, 2013, 1786, 1628, 1519, 1458, 1373, 1327, 1311, 1303, 1335, 1381, 1444, 1529, 1594, 1728, 1937, 2161, 1900, 1703, 1548, 1468, 1355, 1286, 1232, 1222, 1219, 1258, 1296, 1352, 1446, 1533, 1637, 1845, 2028, 1834, 1630, 1505, 1404, 1307, 1218, 1183, 1148, 1144, 1176, 1233, 1301, 1403, 1498, 1591, 1749, 1956, 1762, 1602, 1458, 1339, 1243, 1174, 1110, 1094, 1086, 1128, 1170, 1260, 1351, 1446, 1563, 1689, 1914, 1720, 1548, 1418, 1303, 1204, 1125, 1080, 1051, 1059, 1094, 1132, 1212, 1326, 1425, 1518, 1667, 1895, 1684, 1542, 1389, 1273, 1190, 1105, 1060, 1024, 1034, 1070, 1105, 1180, 1282, 1385, 1515, 1649, 1861, 1698, 1514, 1390, 1269, 1179, 1096, 1050, 1029, 1028, 1058, 1101, 1171, 1270, 1389, 1506, 1668, 1874, 1695, 1532, 1396, 1279, 1179, 1092, 1052, 1033, 1036, 1067, 1112, 1173, 1281, 1381, 1513, 1669, 1886, 1730, 1535, 1431, 1289, 1194, 1121, 1089, 1056, 1051, 1080, 1117, 1209, 1300, 1409, 1525, 1682, 1905, 1749, 1577, 1441, 1322, 1220, 1146, 1111, 1090, 1078, 1105, 1151, 1225, 1320, 1438, 1567, 1710, 1978, 1782, 1618, 1486, 1370, 1279, 1208, 1155, 1125, 1127, 1142, 1196, 1277, 1369, 1474, 1607, 1779, 2088, 1855, 1671, 1536, 1416, 1343, 1254, 1220, 1188, 1187, 1206, 1268, 1338, 1415, 1545, 1651, 1819, 2162, 1952, 1745, 1598, 1505, 1419, 1336, 1288, 1253, 1251, 1286, 1339, 1408, 1488, 1583, 1673, 1897, 2293, 2067, 1849, 1688, 1575, 1502, 1433, 1373, 1346, 1350, 1369, 1417, 1484, 1557, 1659, 1779, 2004, 2409, 2209, 1940, 1759, 1665, 1599, 1521, 1481, 1438, 1433, 1463, 1510, 1570, 1632, 1744, 1887, 2125, 2496, 2341, 2060, 1845, 1774, 1667, 1615, 1575, 1526, 1547, 1542, 1597, 1657, 1711, 1821, 2027, 2241]
| }
| }, {
| "name": "1296x960_D50_100",
| "resolution": "1296x960",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3348, 2848, 2403, 2083, 1863, 1731, 1602, 1511, 1481, 1482, 1547, 1625, 1703, 1857, 2116, 2321, 2798, 3128, 2583, 2182, 1925, 1720, 1585, 1477, 1404, 1361, 1356, 1416, 1481, 1605, 1731, 1939, 2182, 2557, 2859, 2442, 2026, 1824, 1628, 1488, 1362, 1297, 1254, 1254, 1282, 1364, 1486, 1630, 1794, 1997, 2360, 2694, 2255, 1945, 1727, 1550, 1391, 1284, 1212, 1173, 1173, 1209, 1294, 1398, 1544, 1699, 1904, 2219, 2519, 2165, 1861, 1647, 1469, 1317, 1198, 1143, 1107, 1103, 1153, 1213, 1310, 1479, 1623, 1848, 2116, 2461, 2079, 1790, 1578, 1413, 1271, 1167, 1093, 1061, 1073, 1106, 1151, 1264, 1417, 1582, 1800, 2069, 2370, 2015, 1754, 1549, 1359, 1231, 1140, 1074, 1026, 1043, 1068, 1135, 1228, 1368, 1558, 1751, 2011, 2377, 2008, 1752, 1543, 1362, 1225, 1116, 1063, 1024, 1038, 1068, 1121, 1221, 1357, 1548, 1761, 2000, 2393, 2036, 1768, 1555, 1353, 1226, 1133, 1058, 1048, 1035, 1069, 1127, 1224, 1370, 1545, 1774, 2044, 2422, 2079, 1769, 1564, 1402, 1265, 1139, 1091, 1059, 1069, 1095, 1141, 1257, 1395, 1586, 1789, 2076, 2522, 2134, 1840, 1617, 1442, 1294, 1205, 1131, 1099, 1102, 1136, 1191, 1290, 1437, 1621, 1846, 2063, 2609, 2215, 1933, 1700, 1502, 1363, 1269, 1188, 1161, 1149, 1206, 1251, 1378, 1517, 1707, 1922, 2225, 2771, 2343, 1999, 1775, 1593, 1465, 1342, 1289, 1242, 1235, 1266, 1336, 1451, 1608, 1788, 2020, 2322, 2963, 2522, 2178, 1888, 1698, 1555, 1443, 1384, 1324, 1333, 1378, 1452, 1571, 1716, 1918, 2138, 2467, 3220, 2711, 2282, 2024, 1849, 1704, 1585, 1497, 1454, 1462, 1493, 1566, 1690, 1842, 2023, 2311, 2658, 3447, 2963, 2524, 2213, 1995, 1854, 1728, 1643, 1618, 1599, 1653, 1735, 1839, 2013, 2192, 2475, 2960, 3738, 3290, 2805, 2395, 2179, 2013, 1892, 1800, 1760, 1754, 1810, 1910, 2017, 2169, 2363, 2728, 3243]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3008, 2653, 2185, 1934, 1745, 1625, 1535, 1479, 1459, 1470, 1504, 1559, 1648, 1761, 1906, 2181, 2581, 2888, 2401, 2027, 1796, 1655, 1521, 1444, 1374, 1355, 1358, 1397, 1468, 1554, 1670, 1819, 2009, 2366, 2711, 2241, 1924, 1708, 1563, 1441, 1348, 1275, 1256, 1259, 1309, 1371, 1465, 1602, 1709, 1907, 2202, 2488, 2110, 1832, 1649, 1495, 1361, 1262, 1196, 1170, 1176, 1221, 1297, 1395, 1507, 1668, 1835, 2118, 2398, 2027, 1758, 1580, 1424, 1292, 1188, 1135, 1111, 1118, 1152, 1220, 1332, 1464, 1601, 1781, 2002, 2295, 1964, 1726, 1538, 1374, 1247, 1148, 1087, 1057, 1072, 1109, 1187, 1289, 1419, 1576, 1738, 1984, 2261, 1925, 1685, 1518, 1346, 1205, 1115, 1055, 1032, 1045, 1083, 1157, 1263, 1400, 1544, 1728, 1916, 2275, 1924, 1696, 1491, 1326, 1206, 1110, 1054, 1024, 1033, 1071, 1141, 1239, 1385, 1545, 1709, 1936, 2270, 1954, 1696, 1507, 1347, 1202, 1111, 1053, 1035, 1034, 1082, 1145, 1254, 1382, 1552, 1716, 1936, 2283, 1959, 1705, 1530, 1350, 1219, 1131, 1084, 1054, 1052, 1102, 1166, 1281, 1411, 1562, 1748, 1949, 2331, 2029, 1775, 1568, 1396, 1267, 1169, 1119, 1096, 1093, 1135, 1197, 1309, 1464, 1615, 1783, 1999, 2455, 2086, 1818, 1635, 1462, 1330, 1230, 1171, 1140, 1149, 1188, 1265, 1383, 1517, 1691, 1844, 2081, 2549, 2172, 1926, 1712, 1542, 1421, 1303, 1237, 1210, 1220, 1255, 1342, 1450, 1591, 1752, 1926, 2186, 2732, 2323, 2021, 1806, 1650, 1514, 1399, 1334, 1309, 1315, 1355, 1444, 1552, 1666, 1842, 2002, 2279, 2924, 2485, 2159, 1913, 1744, 1626, 1527, 1457, 1423, 1439, 1482, 1561, 1646, 1790, 1940, 2157, 2486, 3220, 2723, 2282, 2078, 1879, 1768, 1657, 1590, 1571, 1571, 1606, 1672, 1792, 1921, 2083, 2327, 2737, 3474, 2970, 2560, 2243, 2040, 1893, 1809, 1731, 1716, 1707, 1755, 1822, 1933, 2085, 2244, 2552, 3031]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3158, 2692, 2248, 1988, 1789, 1661, 1563, 1505, 1473, 1484, 1509, 1554, 1655, 1779, 1929, 2188, 2601, 2919, 2439, 2084, 1828, 1679, 1565, 1461, 1413, 1380, 1390, 1415, 1450, 1557, 1666, 1806, 2019, 2384, 2699, 2233, 1947, 1754, 1590, 1475, 1369, 1304, 1279, 1270, 1316, 1372, 1469, 1577, 1712, 1915, 2211, 2505, 2108, 1862, 1657, 1512, 1378, 1286, 1225, 1189, 1195, 1221, 1304, 1384, 1498, 1625, 1825, 2080, 2408, 2049, 1768, 1590, 1442, 1306, 1215, 1150, 1122, 1119, 1161, 1228, 1321, 1446, 1574, 1757, 1985, 2332, 1998, 1726, 1550, 1390, 1246, 1151, 1100, 1075, 1067, 1103, 1171, 1262, 1395, 1548, 1722, 1933, 2271, 1942, 1706, 1522, 1346, 1218, 1118, 1067, 1033, 1046, 1079, 1141, 1252, 1372, 1517, 1684, 1909, 2235, 1934, 1686, 1500, 1334, 1209, 1108, 1055, 1024, 1035, 1067, 1122, 1222, 1342, 1521, 1686, 1906, 2238, 1932, 1702, 1503, 1337, 1215, 1109, 1053, 1035, 1036, 1065, 1133, 1233, 1359, 1514, 1689, 1916, 2289, 1954, 1712, 1524, 1349, 1221, 1133, 1075, 1054, 1053, 1091, 1146, 1249, 1379, 1546, 1718, 1939, 2327, 2010, 1769, 1567, 1391, 1274, 1178, 1110, 1091, 1096, 1117, 1194, 1291, 1415, 1591, 1760, 1986, 2409, 2056, 1822, 1623, 1459, 1332, 1231, 1158, 1139, 1137, 1186, 1243, 1350, 1494, 1655, 1835, 2077, 2544, 2177, 1909, 1708, 1539, 1406, 1309, 1247, 1209, 1218, 1258, 1323, 1432, 1551, 1716, 1901, 2201, 2707, 2325, 2034, 1793, 1643, 1512, 1406, 1351, 1308, 1312, 1355, 1415, 1530, 1658, 1810, 2004, 2312, 2982, 2515, 2143, 1919, 1757, 1628, 1539, 1467, 1440, 1444, 1482, 1535, 1644, 1757, 1931, 2127, 2450, 3171, 2736, 2362, 2083, 1886, 1763, 1671, 1589, 1580, 1579, 1605, 1662, 1777, 1900, 2048, 2304, 2695, 3441, 3033, 2554, 2235, 2083, 1895, 1819, 1758, 1709, 1723, 1743, 1824, 1906, 2050, 2213, 2509, 2979]
| },
| "lsc_samples_blue": {
| "uCoeff": [2935, 2526, 2140, 1862, 1711, 1628, 1511, 1467, 1416, 1432, 1495, 1533, 1625, 1725, 1905, 2123, 2498, 2717, 2350, 1967, 1740, 1597, 1500, 1420, 1351, 1338, 1324, 1390, 1429, 1548, 1624, 1776, 1953, 2307, 2535, 2159, 1854, 1669, 1525, 1403, 1317, 1253, 1240, 1258, 1282, 1339, 1436, 1544, 1673, 1859, 2154, 2434, 2032, 1749, 1587, 1462, 1343, 1246, 1184, 1151, 1158, 1208, 1269, 1377, 1489, 1622, 1771, 2053, 2295, 1946, 1715, 1541, 1403, 1261, 1183, 1118, 1106, 1099, 1145, 1206, 1302, 1424, 1557, 1729, 1935, 2200, 1909, 1675, 1498, 1345, 1221, 1131, 1076, 1054, 1070, 1101, 1159, 1247, 1382, 1524, 1679, 1895, 2123, 1862, 1629, 1479, 1306, 1189, 1111, 1060, 1032, 1047, 1077, 1140, 1227, 1338, 1485, 1649, 1864, 2131, 1861, 1643, 1445, 1296, 1190, 1090, 1047, 1029, 1024, 1067, 1110, 1212, 1344, 1486, 1636, 1872, 2157, 1863, 1624, 1467, 1308, 1201, 1100, 1064, 1035, 1039, 1064, 1115, 1228, 1359, 1488, 1640, 1898, 2164, 1877, 1647, 1481, 1321, 1211, 1125, 1084, 1047, 1060, 1087, 1145, 1249, 1360, 1524, 1689, 1916, 2214, 1945, 1701, 1522, 1365, 1234, 1159, 1114, 1089, 1088, 1114, 1176, 1275, 1401, 1560, 1717, 1920, 2291, 2005, 1743, 1575, 1430, 1311, 1216, 1166, 1133, 1136, 1168, 1237, 1329, 1463, 1614, 1782, 2005, 2445, 2070, 1816, 1661, 1503, 1386, 1288, 1220, 1197, 1205, 1241, 1309, 1400, 1528, 1682, 1824, 2130, 2589, 2224, 1933, 1730, 1597, 1471, 1379, 1319, 1274, 1282, 1329, 1385, 1489, 1599, 1750, 1918, 2239, 2867, 2365, 2060, 1848, 1685, 1597, 1502, 1444, 1391, 1395, 1437, 1507, 1572, 1698, 1855, 2039, 2378, 3025, 2641, 2213, 1978, 1819, 1701, 1621, 1565, 1521, 1538, 1562, 1630, 1721, 1795, 1987, 2228, 2644, 3283, 2926, 2406, 2141, 1959, 1835, 1709, 1685, 1630, 1654, 1697, 1754, 1825, 1912, 2122, 2418, 2873]
| }
| }, {
| "name": "1296x960_D50_70",
| "resolution": "1296x960",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2651, 2387, 2105, 1888, 1730, 1634, 1531, 1456, 1430, 1430, 1483, 1542, 1596, 1703, 1880, 1993, 2266, 2554, 2225, 1959, 1780, 1627, 1522, 1433, 1370, 1332, 1327, 1378, 1429, 1527, 1617, 1763, 1916, 2139, 2397, 2146, 1854, 1712, 1560, 1446, 1336, 1279, 1239, 1239, 1262, 1333, 1434, 1545, 1662, 1794, 2024, 2302, 2019, 1803, 1641, 1500, 1364, 1269, 1203, 1166, 1166, 1198, 1274, 1363, 1481, 1595, 1735, 1939, 2189, 1962, 1744, 1580, 1434, 1300, 1191, 1139, 1105, 1100, 1148, 1202, 1287, 1430, 1539, 1702, 1875, 2160, 1903, 1692, 1525, 1387, 1260, 1163, 1092, 1060, 1072, 1104, 1145, 1248, 1380, 1510, 1671, 1850, 2098, 1858, 1666, 1503, 1339, 1223, 1138, 1073, 1026, 1043, 1067, 1131, 1216, 1338, 1494, 1636, 1812, 2110, 1857, 1668, 1501, 1344, 1219, 1115, 1063, 1024, 1038, 1067, 1118, 1210, 1330, 1488, 1648, 1808, 2125, 1882, 1684, 1513, 1336, 1220, 1132, 1058, 1048, 1035, 1068, 1124, 1214, 1342, 1486, 1660, 1845, 2146, 1917, 1683, 1520, 1382, 1257, 1137, 1091, 1059, 1069, 1094, 1137, 1245, 1365, 1521, 1671, 1869, 2220, 1958, 1742, 1566, 1417, 1284, 1201, 1130, 1098, 1101, 1134, 1185, 1274, 1401, 1549, 1716, 1853, 2277, 2017, 1816, 1636, 1470, 1348, 1262, 1185, 1159, 1147, 1201, 1241, 1354, 1470, 1619, 1772, 1973, 2386, 2109, 1863, 1695, 1548, 1440, 1329, 1281, 1236, 1228, 1256, 1318, 1417, 1546, 1681, 1843, 2036, 2508, 2235, 2000, 1783, 1634, 1516, 1419, 1367, 1311, 1318, 1358, 1421, 1519, 1632, 1780, 1924, 2128, 2667, 2358, 2066, 1884, 1756, 1642, 1542, 1465, 1427, 1433, 1457, 1516, 1615, 1728, 1851, 2042, 2246, 2786, 2518, 2236, 2022, 1865, 1760, 1659, 1588, 1567, 1548, 1591, 1655, 1730, 1854, 1967, 2142, 2432, 2924, 2717, 2421, 2142, 1996, 1877, 1785, 1712, 1678, 1671, 1713, 1788, 1860, 1958, 2074, 2297, 2577]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2413, 2241, 1934, 1766, 1631, 1542, 1472, 1427, 1411, 1419, 1445, 1485, 1549, 1625, 1716, 1888, 2114, 2380, 2085, 1834, 1672, 1570, 1465, 1403, 1343, 1327, 1328, 1360, 1418, 1483, 1566, 1666, 1783, 2000, 2286, 1987, 1769, 1612, 1502, 1403, 1323, 1258, 1241, 1243, 1287, 1339, 1415, 1521, 1591, 1722, 1905, 2145, 1902, 1707, 1573, 1451, 1336, 1248, 1188, 1164, 1169, 1210, 1277, 1360, 1448, 1569, 1679, 1861, 2095, 1849, 1655, 1521, 1392, 1277, 1181, 1131, 1109, 1115, 1147, 1209, 1308, 1417, 1520, 1647, 1786, 2029, 1807, 1636, 1489, 1350, 1237, 1144, 1086, 1056, 1071, 1107, 1180, 1271, 1381, 1505, 1619, 1783, 2011, 1782, 1606, 1475, 1327, 1198, 1113, 1055, 1032, 1045, 1082, 1152, 1249, 1367, 1482, 1616, 1736, 2028, 1786, 1619, 1453, 1310, 1200, 1109, 1054, 1024, 1033, 1070, 1137, 1227, 1356, 1485, 1604, 1756, 2026, 1813, 1620, 1468, 1330, 1197, 1110, 1053, 1035, 1034, 1081, 1141, 1242, 1353, 1492, 1611, 1758, 2035, 1815, 1627, 1489, 1333, 1213, 1129, 1084, 1054, 1052, 1101, 1162, 1267, 1379, 1500, 1637, 1767, 2067, 1870, 1685, 1521, 1374, 1258, 1166, 1118, 1095, 1092, 1133, 1191, 1292, 1426, 1544, 1663, 1802, 2155, 1909, 1716, 1577, 1433, 1316, 1224, 1168, 1138, 1147, 1183, 1254, 1359, 1470, 1605, 1707, 1859, 2213, 1968, 1800, 1639, 1501, 1398, 1291, 1230, 1205, 1214, 1245, 1324, 1416, 1530, 1650, 1766, 1930, 2331, 2074, 1867, 1711, 1591, 1478, 1378, 1319, 1296, 1301, 1336, 1413, 1502, 1588, 1716, 1814, 1985, 2445, 2180, 1964, 1789, 1663, 1571, 1489, 1428, 1398, 1411, 1447, 1512, 1576, 1683, 1783, 1920, 2118, 2621, 2333, 2040, 1909, 1764, 1684, 1595, 1540, 1524, 1522, 1549, 1599, 1689, 1777, 1879, 2028, 2270, 2739, 2478, 2229, 2018, 1879, 1773, 1713, 1650, 1639, 1629, 1665, 1712, 1789, 1889, 1981, 2166, 2429]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2518, 2270, 1984, 1810, 1668, 1573, 1497, 1450, 1423, 1432, 1449, 1481, 1555, 1640, 1734, 1894, 2128, 2402, 2114, 1880, 1699, 1591, 1504, 1418, 1378, 1349, 1357, 1377, 1402, 1486, 1563, 1656, 1791, 2013, 2277, 1980, 1788, 1652, 1526, 1434, 1343, 1285, 1263, 1254, 1294, 1340, 1419, 1500, 1594, 1729, 1912, 2158, 1900, 1733, 1580, 1466, 1352, 1271, 1215, 1182, 1187, 1210, 1284, 1350, 1440, 1532, 1671, 1832, 2103, 1867, 1664, 1530, 1409, 1290, 1207, 1146, 1119, 1116, 1155, 1216, 1297, 1401, 1497, 1627, 1773, 2058, 1836, 1636, 1500, 1365, 1236, 1147, 1099, 1074, 1066, 1101, 1164, 1246, 1360, 1481, 1606, 1742, 2019, 1796, 1624, 1479, 1327, 1211, 1116, 1067, 1033, 1046, 1078, 1137, 1239, 1342, 1458, 1579, 1730, 1996, 1794, 1610, 1461, 1317, 1203, 1107, 1055, 1024, 1035, 1066, 1119, 1211, 1316, 1464, 1584, 1732, 2001, 1794, 1625, 1465, 1321, 1209, 1108, 1053, 1035, 1036, 1064, 1130, 1222, 1332, 1458, 1588, 1742, 2040, 1811, 1633, 1483, 1332, 1215, 1131, 1075, 1054, 1053, 1090, 1142, 1237, 1350, 1486, 1611, 1759, 2064, 1854, 1680, 1520, 1369, 1265, 1175, 1109, 1091, 1095, 1115, 1188, 1275, 1381, 1523, 1643, 1792, 2119, 1884, 1720, 1566, 1430, 1318, 1225, 1155, 1137, 1135, 1181, 1233, 1328, 1449, 1574, 1700, 1856, 2209, 1972, 1785, 1635, 1498, 1384, 1297, 1240, 1204, 1212, 1248, 1306, 1400, 1495, 1619, 1745, 1941, 2312, 2075, 1878, 1699, 1585, 1476, 1384, 1335, 1295, 1298, 1336, 1387, 1482, 1581, 1689, 1816, 2010, 2489, 2203, 1951, 1794, 1674, 1573, 1500, 1437, 1414, 1416, 1447, 1488, 1574, 1655, 1775, 1896, 2091, 2585, 2343, 2105, 1913, 1770, 1679, 1608, 1539, 1532, 1530, 1548, 1590, 1676, 1759, 1851, 2010, 2239, 2716, 2525, 2224, 2012, 1915, 1775, 1721, 1674, 1633, 1643, 1655, 1714, 1766, 1861, 1956, 2133, 2393]
| },
| "lsc_samples_blue": {
| "uCoeff": [2362, 2146, 1899, 1707, 1602, 1545, 1451, 1417, 1373, 1386, 1437, 1463, 1530, 1596, 1715, 1845, 2056, 2255, 2046, 1786, 1625, 1520, 1446, 1381, 1322, 1311, 1297, 1354, 1383, 1478, 1528, 1631, 1740, 1957, 2154, 1922, 1711, 1579, 1469, 1368, 1295, 1238, 1226, 1242, 1262, 1310, 1390, 1471, 1562, 1684, 1869, 2103, 1839, 1637, 1518, 1421, 1320, 1233, 1176, 1145, 1152, 1197, 1251, 1344, 1432, 1530, 1628, 1812, 2015, 1782, 1618, 1486, 1373, 1247, 1176, 1115, 1104, 1097, 1140, 1196, 1280, 1381, 1483, 1604, 1734, 1954, 1762, 1591, 1453, 1323, 1212, 1128, 1075, 1054, 1069, 1099, 1153, 1232, 1348, 1460, 1570, 1712, 1901, 1729, 1556, 1440, 1289, 1183, 1109, 1060, 1032, 1047, 1076, 1136, 1215, 1311, 1430, 1550, 1695, 1913, 1732, 1572, 1411, 1281, 1185, 1089, 1047, 1029, 1024, 1066, 1107, 1202, 1318, 1433, 1542, 1705, 1935, 1735, 1556, 1432, 1293, 1196, 1099, 1064, 1035, 1039, 1063, 1112, 1217, 1332, 1435, 1546, 1727, 1939, 1746, 1575, 1444, 1305, 1205, 1123, 1084, 1047, 1060, 1086, 1141, 1237, 1333, 1466, 1587, 1740, 1974, 1799, 1620, 1479, 1345, 1226, 1156, 1113, 1089, 1087, 1112, 1170, 1260, 1368, 1496, 1607, 1739, 2025, 1842, 1651, 1523, 1403, 1298, 1210, 1163, 1131, 1134, 1164, 1227, 1308, 1421, 1538, 1656, 1799, 2132, 1884, 1705, 1593, 1465, 1365, 1277, 1214, 1192, 1199, 1232, 1293, 1370, 1474, 1590, 1682, 1886, 2222, 1994, 1793, 1644, 1543, 1438, 1359, 1305, 1263, 1270, 1312, 1359, 1445, 1529, 1638, 1746, 1954, 2403, 2085, 1882, 1733, 1610, 1545, 1466, 1416, 1368, 1370, 1406, 1463, 1510, 1604, 1712, 1827, 2037, 2479, 2270, 1984, 1825, 1712, 1624, 1562, 1517, 1478, 1492, 1509, 1561, 1628, 1671, 1802, 1952, 2202, 2605, 2445, 2108, 1935, 1811, 1723, 1625, 1610, 1563, 1582, 1614, 1653, 1698, 1748, 1885, 2065, 2318]
| }
| }, {
| "name": "1296x960_D65_100",
| "resolution": "1296x960",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3633, 3047, 2575, 2298, 2012, 1848, 1734, 1639, 1612, 1615, 1662, 1726, 1841, 2021, 2235, 2517, 3001, 3312, 2763, 2367, 2092, 1873, 1721, 1584, 1489, 1445, 1457, 1491, 1567, 1697, 1856, 2042, 2316, 2732, 3065, 2560, 2215, 1935, 1723, 1580, 1444, 1356, 1313, 1316, 1350, 1444, 1576, 1735, 1921, 2149, 2532, 2845, 2435, 2089, 1836, 1617, 1459, 1331, 1256, 1206, 1210, 1262, 1340, 1465, 1636, 1796, 2026, 2394, 2684, 2323, 1990, 1727, 1542, 1375, 1247, 1167, 1135, 1139, 1172, 1246, 1372, 1538, 1710, 1930, 2251, 2616, 2238, 1919, 1681, 1483, 1307, 1188, 1108, 1075, 1068, 1113, 1186, 1305, 1462, 1672, 1911, 2182, 2521, 2165, 1859, 1625, 1424, 1261, 1150, 1073, 1033, 1046, 1076, 1153, 1262, 1418, 1626, 1833, 2139, 2549, 2140, 1847, 1610, 1384, 1253, 1123, 1063, 1029, 1028, 1067, 1133, 1235, 1404, 1613, 1839, 2099, 2502, 2146, 1848, 1594, 1403, 1253, 1131, 1049, 1031, 1024, 1068, 1124, 1245, 1394, 1620, 1836, 2104, 2573, 2169, 1890, 1636, 1414, 1258, 1160, 1079, 1049, 1050, 1100, 1147, 1271, 1448, 1644, 1868, 2161, 2603, 2260, 1919, 1675, 1478, 1304, 1202, 1126, 1098, 1099, 1123, 1211, 1311, 1481, 1703, 1906, 2215, 2740, 2305, 2007, 1758, 1556, 1393, 1275, 1188, 1156, 1156, 1189, 1281, 1398, 1552, 1759, 1994, 2296, 2898, 2441, 2091, 1865, 1644, 1488, 1371, 1279, 1240, 1241, 1285, 1359, 1490, 1657, 1829, 2079, 2448, 3075, 2596, 2236, 1969, 1783, 1608, 1465, 1389, 1337, 1338, 1384, 1469, 1614, 1769, 1987, 2217, 2567, 3272, 2804, 2392, 2111, 1906, 1757, 1619, 1525, 1480, 1478, 1539, 1594, 1750, 1912, 2108, 2332, 2743, 3530, 3084, 2645, 2316, 2062, 1901, 1776, 1705, 1655, 1649, 1695, 1772, 1919, 2061, 2289, 2572, 2980, 3838, 3366, 2875, 2509, 2274, 2127, 1951, 1895, 1817, 1813, 1847, 1976, 2106, 2241, 2466, 2828, 3314]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3041, 2608, 2226, 1952, 1764, 1648, 1552, 1494, 1480, 1466, 1518, 1563, 1657, 1767, 1911, 2167, 2542, 2860, 2418, 2053, 1821, 1681, 1531, 1455, 1392, 1362, 1372, 1406, 1462, 1553, 1674, 1797, 2008, 2368, 2652, 2206, 1914, 1714, 1562, 1458, 1356, 1291, 1251, 1262, 1309, 1379, 1467, 1582, 1714, 1892, 2185, 2503, 2100, 1830, 1644, 1497, 1364, 1270, 1199, 1175, 1189, 1223, 1298, 1398, 1514, 1660, 1795, 2053, 2381, 2018, 1768, 1588, 1420, 1295, 1197, 1136, 1102, 1111, 1153, 1214, 1329, 1453, 1598, 1749, 1996, 2287, 1964, 1718, 1537, 1377, 1237, 1138, 1082, 1059, 1066, 1106, 1173, 1276, 1417, 1549, 1711, 1920, 2218, 1911, 1683, 1498, 1344, 1204, 1113, 1060, 1029, 1045, 1077, 1142, 1255, 1376, 1520, 1690, 1895, 2217, 1892, 1669, 1475, 1319, 1193, 1096, 1044, 1024, 1030, 1058, 1125, 1225, 1358, 1509, 1695, 1889, 2215, 1915, 1667, 1491, 1320, 1188, 1097, 1050, 1024, 1029, 1061, 1125, 1238, 1368, 1515, 1679, 1865, 2257, 1920, 1686, 1515, 1331, 1209, 1117, 1063, 1044, 1041, 1082, 1143, 1247, 1389, 1528, 1702, 1893, 2291, 1966, 1717, 1546, 1373, 1255, 1147, 1102, 1074, 1079, 1107, 1185, 1284, 1415, 1570, 1742, 1955, 2357, 2024, 1781, 1595, 1441, 1298, 1212, 1141, 1122, 1129, 1169, 1231, 1346, 1474, 1631, 1777, 2030, 2500, 2138, 1849, 1659, 1508, 1374, 1277, 1212, 1191, 1192, 1234, 1310, 1408, 1544, 1695, 1860, 2099, 2642, 2259, 1983, 1749, 1592, 1467, 1373, 1316, 1282, 1285, 1333, 1399, 1507, 1638, 1791, 1939, 2223, 2871, 2413, 2086, 1862, 1704, 1577, 1489, 1432, 1387, 1402, 1429, 1525, 1601, 1733, 1889, 2080, 2395, 3040, 2615, 2243, 2013, 1834, 1722, 1614, 1549, 1529, 1537, 1577, 1629, 1739, 1850, 2015, 2237, 2614, 3321, 2887, 2449, 2149, 1969, 1841, 1746, 1682, 1663, 1667, 1698, 1765, 1867, 1986, 2179, 2466, 2894]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3066, 2677, 2246, 1999, 1800, 1696, 1600, 1527, 1504, 1499, 1543, 1583, 1663, 1766, 1938, 2144, 2538, 2868, 2418, 2083, 1855, 1690, 1578, 1473, 1428, 1397, 1388, 1432, 1469, 1561, 1652, 1799, 1998, 2362, 2649, 2231, 1966, 1743, 1594, 1477, 1376, 1311, 1285, 1281, 1319, 1376, 1472, 1577, 1708, 1895, 2201, 2476, 2121, 1837, 1657, 1515, 1385, 1292, 1219, 1190, 1195, 1228, 1300, 1385, 1510, 1631, 1800, 2067, 2348, 2015, 1776, 1589, 1433, 1311, 1211, 1146, 1120, 1119, 1156, 1220, 1318, 1441, 1580, 1747, 1982, 2273, 1965, 1715, 1526, 1383, 1248, 1152, 1087, 1071, 1074, 1107, 1157, 1262, 1374, 1528, 1692, 1912, 2216, 1917, 1689, 1503, 1341, 1216, 1119, 1062, 1033, 1039, 1073, 1129, 1230, 1363, 1491, 1669, 1881, 2204, 1892, 1686, 1489, 1325, 1198, 1105, 1050, 1024, 1026, 1056, 1118, 1209, 1337, 1495, 1659, 1869, 2175, 1903, 1670, 1473, 1313, 1188, 1101, 1047, 1025, 1028, 1055, 1117, 1215, 1340, 1485, 1659, 1884, 2233, 1913, 1689, 1496, 1324, 1216, 1115, 1061, 1041, 1044, 1078, 1128, 1233, 1357, 1515, 1669, 1892, 2273, 1960, 1720, 1540, 1373, 1251, 1159, 1101, 1072, 1076, 1109, 1162, 1259, 1394, 1548, 1718, 1929, 2353, 2015, 1785, 1595, 1428, 1309, 1220, 1150, 1118, 1121, 1159, 1216, 1319, 1458, 1613, 1773, 1997, 2464, 2121, 1856, 1656, 1509, 1386, 1278, 1219, 1192, 1201, 1232, 1288, 1393, 1516, 1665, 1836, 2115, 2647, 2249, 1965, 1765, 1598, 1491, 1381, 1320, 1284, 1291, 1324, 1388, 1487, 1604, 1751, 1929, 2231, 2803, 2412, 2112, 1881, 1724, 1596, 1500, 1442, 1400, 1410, 1437, 1499, 1610, 1718, 1860, 2072, 2355, 3047, 2626, 2281, 2015, 1838, 1723, 1630, 1559, 1539, 1555, 1561, 1631, 1733, 1851, 1992, 2237, 2581, 3339, 2922, 2456, 2184, 1980, 1858, 1769, 1718, 1679, 1679, 1704, 1756, 1845, 1972, 2170, 2399, 2834]
| },
| "lsc_samples_blue": {
| "uCoeff": [2990, 2550, 2176, 1924, 1742, 1636, 1546, 1485, 1466, 1470, 1510, 1554, 1655, 1747, 1910, 2132, 2502, 2717, 2325, 1981, 1759, 1619, 1510, 1440, 1376, 1356, 1356, 1407, 1466, 1548, 1642, 1770, 1965, 2271, 2535, 2147, 1858, 1668, 1530, 1436, 1334, 1279, 1247, 1260, 1323, 1363, 1438, 1555, 1688, 1829, 2122, 2373, 2026, 1767, 1613, 1466, 1352, 1255, 1194, 1168, 1173, 1233, 1280, 1366, 1477, 1619, 1760, 2028, 2259, 1960, 1701, 1523, 1394, 1276, 1179, 1135, 1107, 1112, 1153, 1211, 1307, 1435, 1552, 1719, 1917, 2165, 1882, 1663, 1489, 1343, 1220, 1131, 1083, 1057, 1071, 1104, 1157, 1252, 1372, 1517, 1661, 1865, 2086, 1860, 1624, 1461, 1305, 1186, 1116, 1058, 1038, 1040, 1079, 1131, 1223, 1339, 1484, 1625, 1835, 2072, 1849, 1602, 1453, 1291, 1183, 1102, 1052, 1031, 1024, 1072, 1118, 1212, 1335, 1468, 1641, 1846, 2097, 1828, 1601, 1461, 1303, 1171, 1095, 1054, 1041, 1042, 1058, 1115, 1207, 1338, 1478, 1627, 1838, 2106, 1838, 1616, 1461, 1309, 1189, 1114, 1077, 1053, 1048, 1077, 1129, 1228, 1346, 1503, 1660, 1883, 2143, 1893, 1664, 1499, 1355, 1240, 1140, 1104, 1073, 1078, 1107, 1168, 1267, 1368, 1530, 1687, 1896, 2267, 1956, 1731, 1548, 1407, 1277, 1190, 1152, 1113, 1128, 1156, 1215, 1310, 1421, 1588, 1748, 1998, 2355, 2062, 1801, 1613, 1472, 1356, 1265, 1212, 1188, 1182, 1214, 1285, 1381, 1504, 1645, 1806, 2065, 2506, 2160, 1875, 1702, 1551, 1443, 1353, 1302, 1272, 1273, 1297, 1378, 1479, 1573, 1726, 1882, 2178, 2737, 2326, 1998, 1788, 1639, 1541, 1468, 1406, 1372, 1374, 1407, 1467, 1557, 1659, 1823, 1993, 2316, 2895, 2524, 2160, 1932, 1790, 1663, 1586, 1524, 1493, 1491, 1515, 1582, 1678, 1770, 1947, 2146, 2512, 3145, 2760, 2334, 2097, 1916, 1797, 1702, 1647, 1617, 1613, 1675, 1721, 1779, 1885, 2108, 2369, 2782]
| }
| }, {
| "name": "1296x960_D65_70",
| "resolution": "1296x960",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2850, 2535, 2240, 2063, 1856, 1734, 1647, 1569, 1547, 1548, 1584, 1629, 1712, 1837, 1974, 2139, 2408, 2688, 2364, 2109, 1921, 1759, 1642, 1529, 1448, 1409, 1419, 1445, 1506, 1607, 1722, 1846, 2020, 2266, 2551, 2239, 2010, 1808, 1644, 1529, 1412, 1334, 1295, 1297, 1325, 1406, 1514, 1636, 1767, 1914, 2152, 2418, 2164, 1925, 1737, 1561, 1427, 1313, 1245, 1198, 1201, 1248, 1317, 1423, 1562, 1677, 1834, 2073, 2318, 2092, 1855, 1652, 1501, 1355, 1238, 1162, 1132, 1135, 1166, 1233, 1344, 1483, 1614, 1769, 1980, 2282, 2036, 1804, 1619, 1452, 1294, 1183, 1106, 1074, 1067, 1110, 1179, 1286, 1420, 1589, 1763, 1939, 2219, 1984, 1759, 1573, 1401, 1252, 1147, 1072, 1033, 1046, 1075, 1148, 1248, 1384, 1554, 1705, 1914, 2248, 1968, 1752, 1562, 1365, 1246, 1122, 1063, 1029, 1028, 1066, 1130, 1224, 1373, 1545, 1714, 1887, 2213, 1975, 1754, 1548, 1383, 1246, 1130, 1049, 1031, 1024, 1067, 1121, 1234, 1364, 1552, 1712, 1893, 2268, 1993, 1790, 1586, 1393, 1251, 1158, 1079, 1049, 1050, 1099, 1143, 1258, 1413, 1573, 1738, 1937, 2284, 2064, 1812, 1619, 1451, 1294, 1198, 1125, 1097, 1098, 1121, 1204, 1294, 1441, 1621, 1766, 1975, 2380, 2092, 1881, 1688, 1520, 1376, 1268, 1185, 1154, 1153, 1184, 1269, 1373, 1502, 1665, 1832, 2029, 2485, 2189, 1942, 1775, 1595, 1461, 1357, 1271, 1234, 1234, 1274, 1340, 1453, 1589, 1717, 1892, 2134, 2594, 2294, 2049, 1854, 1711, 1565, 1440, 1372, 1323, 1323, 1363, 1437, 1558, 1678, 1838, 1988, 2205, 2706, 2432, 2157, 1959, 1807, 1690, 1574, 1492, 1451, 1448, 1500, 1542, 1668, 1788, 1922, 2059, 2310, 2847, 2611, 2333, 2109, 1923, 1802, 1702, 1645, 1601, 1593, 1629, 1687, 1799, 1895, 2046, 2217, 2447, 2994, 2774, 2476, 2235, 2076, 1975, 1837, 1796, 1729, 1723, 1746, 1845, 1935, 2017, 2155, 2372, 2627]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2436, 2207, 1967, 1781, 1647, 1562, 1487, 1440, 1429, 1416, 1457, 1489, 1557, 1630, 1720, 1878, 2087, 2359, 2098, 1855, 1693, 1593, 1474, 1413, 1359, 1333, 1341, 1369, 1412, 1482, 1570, 1648, 1782, 2001, 2242, 1959, 1761, 1618, 1501, 1418, 1331, 1273, 1237, 1246, 1287, 1347, 1417, 1504, 1595, 1711, 1893, 2156, 1894, 1706, 1569, 1452, 1339, 1256, 1191, 1168, 1181, 1212, 1278, 1363, 1454, 1562, 1647, 1812, 2082, 1841, 1664, 1528, 1389, 1279, 1190, 1132, 1100, 1108, 1148, 1203, 1305, 1407, 1518, 1620, 1782, 2022, 1807, 1629, 1488, 1353, 1227, 1135, 1081, 1058, 1065, 1104, 1166, 1259, 1380, 1482, 1597, 1732, 1977, 1770, 1604, 1457, 1325, 1197, 1111, 1060, 1029, 1045, 1076, 1138, 1241, 1345, 1460, 1584, 1719, 1982, 1759, 1595, 1438, 1303, 1188, 1095, 1044, 1024, 1030, 1057, 1122, 1214, 1331, 1453, 1592, 1719, 1982, 1779, 1594, 1454, 1305, 1183, 1096, 1050, 1024, 1029, 1061, 1122, 1227, 1341, 1459, 1579, 1701, 2014, 1782, 1610, 1475, 1315, 1203, 1116, 1063, 1044, 1041, 1081, 1139, 1235, 1359, 1470, 1598, 1722, 2035, 1817, 1634, 1501, 1353, 1247, 1145, 1101, 1074, 1078, 1105, 1179, 1269, 1381, 1504, 1628, 1767, 2078, 1857, 1684, 1541, 1413, 1286, 1207, 1139, 1120, 1127, 1165, 1222, 1324, 1431, 1553, 1652, 1819, 2174, 1940, 1734, 1591, 1470, 1354, 1266, 1206, 1186, 1187, 1225, 1294, 1378, 1488, 1601, 1711, 1862, 2262, 2022, 1835, 1661, 1538, 1435, 1353, 1302, 1271, 1273, 1315, 1372, 1461, 1563, 1673, 1763, 1942, 2406, 2123, 1904, 1745, 1627, 1526, 1454, 1405, 1364, 1377, 1398, 1479, 1536, 1634, 1740, 1859, 2050, 2490, 2250, 2009, 1854, 1725, 1643, 1556, 1502, 1486, 1491, 1523, 1561, 1643, 1717, 1824, 1959, 2180, 2632, 2416, 2141, 1942, 1819, 1728, 1657, 1607, 1592, 1594, 1615, 1663, 1734, 1809, 1930, 2101, 2333]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2453, 2259, 1982, 1819, 1677, 1603, 1529, 1470, 1451, 1445, 1479, 1506, 1562, 1629, 1741, 1861, 2084, 2365, 2098, 1879, 1722, 1601, 1515, 1429, 1392, 1365, 1356, 1392, 1419, 1489, 1551, 1650, 1775, 1997, 2240, 1979, 1804, 1643, 1530, 1436, 1349, 1292, 1268, 1264, 1297, 1344, 1421, 1500, 1590, 1713, 1905, 2135, 1911, 1712, 1580, 1469, 1359, 1277, 1210, 1183, 1187, 1216, 1280, 1351, 1451, 1537, 1651, 1822, 2056, 1839, 1671, 1529, 1401, 1295, 1203, 1142, 1117, 1116, 1151, 1209, 1295, 1396, 1502, 1619, 1771, 2011, 1808, 1626, 1478, 1359, 1238, 1148, 1086, 1070, 1073, 1105, 1151, 1246, 1341, 1463, 1581, 1726, 1975, 1775, 1609, 1461, 1322, 1209, 1117, 1062, 1033, 1039, 1072, 1125, 1218, 1334, 1435, 1567, 1708, 1971, 1759, 1610, 1451, 1309, 1193, 1104, 1050, 1024, 1026, 1056, 1115, 1199, 1311, 1441, 1561, 1702, 1950, 1769, 1597, 1437, 1298, 1183, 1100, 1047, 1025, 1028, 1055, 1114, 1205, 1315, 1433, 1562, 1716, 1995, 1776, 1612, 1457, 1308, 1210, 1114, 1061, 1041, 1044, 1077, 1125, 1222, 1330, 1458, 1570, 1721, 2021, 1812, 1636, 1495, 1353, 1243, 1156, 1100, 1072, 1075, 1107, 1157, 1245, 1362, 1485, 1608, 1746, 2074, 1850, 1687, 1541, 1401, 1296, 1214, 1148, 1116, 1119, 1155, 1207, 1299, 1417, 1537, 1648, 1793, 2146, 1926, 1740, 1589, 1471, 1365, 1267, 1213, 1187, 1195, 1223, 1273, 1364, 1463, 1575, 1692, 1874, 2266, 2014, 1820, 1675, 1544, 1457, 1361, 1306, 1272, 1278, 1307, 1361, 1443, 1533, 1639, 1755, 1948, 2355, 2122, 1925, 1761, 1645, 1544, 1464, 1414, 1376, 1384, 1406, 1456, 1544, 1621, 1716, 1853, 2020, 2495, 2259, 2039, 1856, 1729, 1644, 1571, 1511, 1495, 1508, 1508, 1562, 1638, 1718, 1806, 1959, 2156, 2645, 2442, 2147, 1970, 1829, 1743, 1677, 1639, 1606, 1604, 1620, 1655, 1715, 1797, 1923, 2051, 2291]
| },
| "lsc_samples_blue": {
| "uCoeff": [2400, 2164, 1927, 1758, 1628, 1552, 1482, 1433, 1417, 1419, 1450, 1481, 1555, 1614, 1719, 1852, 2059, 2255, 2027, 1797, 1641, 1539, 1455, 1399, 1345, 1328, 1327, 1369, 1416, 1478, 1543, 1627, 1749, 1931, 2154, 1912, 1715, 1578, 1473, 1398, 1310, 1262, 1233, 1244, 1300, 1332, 1391, 1481, 1574, 1661, 1845, 2057, 1834, 1652, 1541, 1424, 1328, 1242, 1186, 1162, 1166, 1221, 1261, 1334, 1422, 1527, 1619, 1792, 1987, 1794, 1606, 1470, 1365, 1262, 1173, 1131, 1105, 1109, 1148, 1200, 1285, 1391, 1478, 1596, 1720, 1926, 1739, 1581, 1445, 1322, 1211, 1128, 1082, 1056, 1070, 1102, 1151, 1237, 1339, 1454, 1555, 1689, 1872, 1727, 1552, 1423, 1289, 1180, 1114, 1058, 1038, 1040, 1078, 1127, 1211, 1312, 1429, 1530, 1671, 1865, 1722, 1535, 1418, 1277, 1178, 1101, 1052, 1031, 1024, 1071, 1115, 1202, 1310, 1417, 1546, 1684, 1887, 1706, 1536, 1426, 1289, 1167, 1094, 1054, 1041, 1042, 1058, 1112, 1198, 1313, 1426, 1535, 1679, 1893, 1713, 1548, 1425, 1294, 1184, 1113, 1077, 1053, 1048, 1076, 1126, 1217, 1320, 1448, 1562, 1714, 1917, 1755, 1587, 1458, 1336, 1232, 1138, 1103, 1073, 1077, 1105, 1163, 1253, 1338, 1469, 1582, 1720, 2006, 1801, 1640, 1498, 1381, 1266, 1185, 1150, 1112, 1126, 1152, 1206, 1291, 1383, 1516, 1627, 1794, 2061, 1878, 1692, 1550, 1436, 1337, 1255, 1206, 1183, 1177, 1206, 1270, 1353, 1453, 1558, 1667, 1835, 2158, 1942, 1744, 1620, 1501, 1412, 1334, 1289, 1261, 1261, 1281, 1352, 1436, 1506, 1618, 1717, 1907, 2306, 2054, 1831, 1681, 1570, 1494, 1434, 1381, 1350, 1351, 1378, 1426, 1497, 1570, 1686, 1790, 1991, 2385, 2180, 1942, 1786, 1687, 1591, 1531, 1480, 1453, 1450, 1467, 1519, 1590, 1650, 1769, 1889, 2106, 2509, 2321, 2051, 1899, 1775, 1691, 1619, 1576, 1551, 1546, 1595, 1625, 1659, 1726, 1874, 2029, 2255]
| }
| }, {
| "name": "1296x960_D75_100",
| "resolution": "1296x960",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3464, 3049, 2542, 2212, 1993, 1822, 1714, 1619, 1571, 1577, 1630, 1706, 1816, 1967, 2178, 2449, 2937, 3182, 2750, 2321, 2045, 1833, 1700, 1550, 1486, 1434, 1433, 1474, 1554, 1675, 1833, 2026, 2245, 2668, 2970, 2504, 2140, 1933, 1710, 1558, 1438, 1360, 1315, 1312, 1339, 1435, 1533, 1703, 1885, 2114, 2471, 2848, 2364, 2055, 1803, 1611, 1462, 1333, 1247, 1206, 1219, 1252, 1327, 1440, 1608, 1780, 2019, 2309, 2629, 2252, 1961, 1712, 1525, 1365, 1243, 1165, 1132, 1128, 1175, 1252, 1367, 1532, 1688, 1924, 2208, 2563, 2169, 1853, 1652, 1456, 1296, 1191, 1115, 1082, 1076, 1115, 1186, 1299, 1453, 1628, 1857, 2152, 2500, 2123, 1818, 1613, 1395, 1252, 1146, 1076, 1037, 1058, 1083, 1151, 1268, 1402, 1604, 1823, 2101, 2492, 2077, 1821, 1587, 1398, 1250, 1125, 1063, 1024, 1025, 1056, 1141, 1232, 1388, 1565, 1801, 2071, 2481, 2106, 1799, 1578, 1390, 1244, 1142, 1060, 1029, 1029, 1068, 1132, 1248, 1383, 1600, 1790, 2052, 2537, 2119, 1841, 1601, 1408, 1271, 1162, 1090, 1046, 1051, 1091, 1150, 1272, 1428, 1613, 1844, 2125, 2524, 2204, 1869, 1670, 1483, 1314, 1206, 1131, 1100, 1098, 1130, 1201, 1304, 1476, 1664, 1875, 2157, 2672, 2290, 1953, 1724, 1540, 1391, 1274, 1185, 1160, 1152, 1192, 1271, 1382, 1549, 1733, 1965, 2254, 2783, 2414, 2065, 1832, 1625, 1473, 1357, 1272, 1230, 1229, 1269, 1347, 1474, 1618, 1828, 2056, 2377, 2960, 2534, 2197, 1923, 1743, 1579, 1450, 1396, 1341, 1328, 1385, 1442, 1598, 1747, 1927, 2143, 2471, 3268, 2764, 2333, 2080, 1868, 1713, 1625, 1505, 1464, 1483, 1522, 1579, 1726, 1880, 2068, 2315, 2693, 3486, 2990, 2570, 2254, 2014, 1892, 1758, 1682, 1641, 1633, 1686, 1755, 1856, 2033, 2242, 2512, 2945, 3700, 3297, 2782, 2455, 2203, 2048, 1938, 1840, 1798, 1798, 1854, 1914, 2060, 2210, 2430, 2780, 3244]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3066, 2676, 2254, 1935, 1754, 1636, 1551, 1494, 1463, 1481, 1502, 1568, 1666, 1785, 1922, 2165, 2571, 2834, 2393, 2036, 1811, 1663, 1540, 1447, 1378, 1364, 1364, 1408, 1458, 1559, 1670, 1824, 1999, 2373, 2644, 2244, 1905, 1729, 1577, 1452, 1360, 1290, 1260, 1268, 1304, 1367, 1466, 1585, 1706, 1882, 2181, 2494, 2114, 1825, 1646, 1497, 1372, 1267, 1206, 1186, 1186, 1221, 1296, 1390, 1511, 1650, 1797, 2078, 2366, 2004, 1764, 1587, 1424, 1302, 1196, 1138, 1107, 1106, 1158, 1217, 1323, 1443, 1601, 1753, 2014, 2275, 1946, 1715, 1537, 1375, 1246, 1152, 1088, 1065, 1069, 1108, 1179, 1274, 1403, 1563, 1713, 1935, 2228, 1904, 1684, 1496, 1337, 1216, 1104, 1057, 1036, 1043, 1078, 1144, 1251, 1385, 1528, 1682, 1893, 2211, 1904, 1663, 1491, 1327, 1193, 1097, 1048, 1026, 1024, 1067, 1131, 1226, 1363, 1525, 1672, 1896, 2210, 1909, 1671, 1500, 1327, 1197, 1093, 1045, 1026, 1027, 1070, 1136, 1232, 1360, 1525, 1678, 1878, 2239, 1915, 1685, 1523, 1337, 1215, 1121, 1069, 1050, 1047, 1085, 1145, 1261, 1384, 1534, 1716, 1930, 2284, 1974, 1731, 1549, 1383, 1244, 1152, 1102, 1078, 1081, 1117, 1178, 1288, 1420, 1576, 1740, 1960, 2354, 2039, 1790, 1608, 1438, 1313, 1204, 1147, 1122, 1126, 1173, 1238, 1348, 1481, 1645, 1789, 2022, 2508, 2124, 1858, 1664, 1503, 1375, 1276, 1214, 1196, 1198, 1233, 1295, 1406, 1543, 1689, 1872, 2122, 2640, 2253, 1966, 1755, 1600, 1478, 1372, 1305, 1282, 1286, 1321, 1408, 1526, 1633, 1789, 1955, 2190, 2850, 2414, 2095, 1857, 1712, 1589, 1491, 1429, 1389, 1390, 1443, 1520, 1619, 1725, 1882, 2070, 2410, 3063, 2665, 2233, 1990, 1818, 1708, 1606, 1547, 1524, 1522, 1559, 1631, 1737, 1847, 2010, 2230, 2574, 3374, 2901, 2469, 2150, 1954, 1827, 1738, 1684, 1653, 1662, 1693, 1767, 1876, 1987, 2184, 2451, 2907]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3087, 2683, 2256, 2014, 1816, 1700, 1601, 1543, 1506, 1499, 1532, 1585, 1636, 1786, 1927, 2174, 2582, 2903, 2449, 2079, 1854, 1683, 1584, 1480, 1436, 1400, 1398, 1434, 1468, 1566, 1661, 1810, 2027, 2381, 2663, 2238, 1946, 1757, 1593, 1488, 1384, 1322, 1297, 1292, 1332, 1375, 1468, 1574, 1706, 1882, 2189, 2495, 2121, 1845, 1659, 1516, 1387, 1291, 1227, 1188, 1192, 1240, 1293, 1396, 1495, 1628, 1801, 2064, 2398, 2039, 1785, 1599, 1430, 1312, 1218, 1151, 1123, 1121, 1165, 1211, 1311, 1441, 1573, 1736, 1970, 2282, 1956, 1716, 1541, 1389, 1253, 1161, 1098, 1069, 1072, 1107, 1164, 1256, 1383, 1528, 1695, 1920, 2234, 1908, 1680, 1517, 1335, 1216, 1125, 1067, 1034, 1041, 1073, 1129, 1223, 1341, 1488, 1665, 1868, 2189, 1890, 1664, 1480, 1334, 1205, 1099, 1061, 1026, 1028, 1058, 1111, 1212, 1330, 1490, 1644, 1845, 2190, 1894, 1663, 1482, 1324, 1197, 1102, 1050, 1025, 1024, 1050, 1120, 1210, 1322, 1489, 1650, 1873, 2226, 1922, 1689, 1496, 1335, 1207, 1112, 1071, 1039, 1041, 1079, 1128, 1229, 1347, 1505, 1665, 1875, 2269, 1956, 1719, 1535, 1372, 1250, 1162, 1105, 1075, 1086, 1102, 1166, 1263, 1388, 1540, 1708, 1947, 2357, 2027, 1774, 1592, 1428, 1303, 1212, 1155, 1128, 1125, 1164, 1221, 1324, 1441, 1596, 1776, 1998, 2483, 2106, 1842, 1661, 1501, 1387, 1277, 1222, 1200, 1190, 1232, 1295, 1387, 1522, 1666, 1826, 2112, 2629, 2254, 1969, 1756, 1599, 1482, 1387, 1325, 1282, 1293, 1323, 1395, 1485, 1602, 1748, 1928, 2222, 2843, 2411, 2090, 1870, 1700, 1585, 1497, 1428, 1413, 1414, 1441, 1497, 1595, 1707, 1856, 2059, 2370, 3074, 2652, 2247, 2011, 1845, 1723, 1635, 1564, 1540, 1536, 1566, 1610, 1724, 1835, 2006, 2233, 2589, 3365, 2929, 2459, 2193, 1980, 1862, 1768, 1713, 1678, 1678, 1707, 1745, 1839, 1982, 2151, 2443, 2853]
| },
| "lsc_samples_blue": {
| "uCoeff": [2970, 2545, 2147, 1906, 1742, 1643, 1557, 1487, 1456, 1459, 1502, 1557, 1640, 1728, 1883, 2117, 2455, 2723, 2301, 1994, 1747, 1632, 1531, 1423, 1370, 1359, 1348, 1403, 1463, 1538, 1638, 1774, 1962, 2258, 2529, 2158, 1870, 1670, 1538, 1425, 1339, 1290, 1262, 1262, 1292, 1352, 1420, 1558, 1681, 1819, 2138, 2342, 2017, 1763, 1592, 1464, 1339, 1264, 1200, 1177, 1177, 1222, 1291, 1363, 1473, 1603, 1767, 2016, 2221, 1935, 1700, 1530, 1400, 1269, 1187, 1129, 1105, 1114, 1151, 1205, 1298, 1417, 1543, 1712, 1911, 2132, 1876, 1649, 1499, 1337, 1227, 1131, 1084, 1067, 1078, 1108, 1163, 1255, 1378, 1524, 1654, 1877, 2092, 1845, 1625, 1454, 1301, 1194, 1110, 1063, 1036, 1050, 1078, 1125, 1224, 1336, 1477, 1624, 1854, 2060, 1797, 1592, 1434, 1289, 1180, 1089, 1056, 1024, 1040, 1057, 1114, 1201, 1332, 1471, 1631, 1835, 2076, 1831, 1599, 1452, 1289, 1171, 1096, 1045, 1031, 1038, 1063, 1120, 1212, 1338, 1464, 1627, 1832, 2102, 1828, 1610, 1452, 1305, 1180, 1115, 1067, 1045, 1050, 1081, 1135, 1220, 1356, 1498, 1649, 1862, 2142, 1873, 1657, 1483, 1335, 1226, 1135, 1095, 1084, 1076, 1104, 1161, 1251, 1378, 1517, 1693, 1904, 2187, 1934, 1700, 1535, 1394, 1268, 1200, 1142, 1125, 1115, 1150, 1207, 1314, 1421, 1582, 1744, 1942, 2323, 2012, 1769, 1618, 1465, 1354, 1262, 1201, 1177, 1180, 1214, 1282, 1370, 1484, 1623, 1804, 2055, 2484, 2131, 1849, 1689, 1544, 1432, 1342, 1300, 1247, 1252, 1296, 1367, 1452, 1550, 1712, 1847, 2147, 2671, 2282, 1977, 1781, 1636, 1538, 1446, 1390, 1359, 1364, 1396, 1464, 1547, 1651, 1777, 1992, 2279, 2878, 2491, 2141, 1923, 1763, 1644, 1556, 1497, 1486, 1479, 1512, 1573, 1664, 1757, 1942, 2133, 2485, 3096, 2745, 2300, 2069, 1869, 1778, 1659, 1623, 1595, 1592, 1628, 1709, 1760, 1855, 2069, 2321, 2716]
| }
| }, {
| "name": "1296x960_D75_70",
| "resolution": "1296x960",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2732, 2537, 2214, 1993, 1840, 1712, 1629, 1551, 1510, 1514, 1556, 1612, 1691, 1793, 1929, 2089, 2363, 2593, 2354, 2072, 1881, 1725, 1623, 1498, 1445, 1399, 1397, 1430, 1494, 1588, 1703, 1833, 1965, 2220, 2480, 2195, 1948, 1806, 1633, 1509, 1407, 1338, 1296, 1293, 1315, 1397, 1476, 1608, 1737, 1886, 2107, 2420, 2107, 1896, 1708, 1556, 1430, 1315, 1236, 1198, 1210, 1239, 1305, 1401, 1537, 1663, 1828, 2008, 2275, 2034, 1830, 1639, 1485, 1345, 1234, 1161, 1129, 1125, 1169, 1239, 1340, 1478, 1595, 1764, 1947, 2240, 1978, 1747, 1592, 1427, 1284, 1186, 1113, 1081, 1075, 1112, 1179, 1280, 1412, 1551, 1718, 1916, 2202, 1949, 1723, 1562, 1373, 1244, 1144, 1075, 1037, 1058, 1082, 1146, 1254, 1369, 1534, 1696, 1884, 2203, 1915, 1729, 1541, 1378, 1243, 1123, 1063, 1024, 1025, 1056, 1137, 1221, 1358, 1503, 1682, 1865, 2196, 1941, 1711, 1534, 1371, 1238, 1140, 1060, 1029, 1029, 1067, 1129, 1236, 1354, 1535, 1673, 1851, 2239, 1951, 1747, 1554, 1387, 1263, 1160, 1090, 1046, 1051, 1090, 1146, 1259, 1395, 1545, 1718, 1908, 2221, 2017, 1768, 1614, 1456, 1303, 1202, 1130, 1099, 1097, 1128, 1195, 1288, 1437, 1587, 1740, 1928, 2327, 2079, 1834, 1657, 1505, 1374, 1267, 1182, 1158, 1150, 1187, 1260, 1358, 1499, 1642, 1808, 1996, 2395, 2167, 1920, 1746, 1577, 1447, 1343, 1264, 1224, 1222, 1259, 1328, 1438, 1555, 1716, 1873, 2079, 2506, 2244, 2016, 1814, 1675, 1539, 1426, 1378, 1327, 1314, 1364, 1412, 1544, 1659, 1788, 1928, 2132, 2703, 2400, 2108, 1933, 1773, 1650, 1579, 1473, 1436, 1452, 1484, 1528, 1647, 1760, 1889, 2045, 2273, 2815, 2539, 2273, 2057, 1881, 1794, 1686, 1624, 1588, 1579, 1621, 1672, 1744, 1871, 2008, 2171, 2421, 2897, 2722, 2403, 2191, 2016, 1907, 1826, 1747, 1712, 1710, 1752, 1791, 1896, 1991, 2127, 2336, 2578]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2453, 2258, 1989, 1767, 1638, 1552, 1486, 1440, 1414, 1429, 1443, 1493, 1564, 1645, 1728, 1876, 2107, 2340, 2079, 1841, 1685, 1577, 1482, 1406, 1347, 1335, 1334, 1370, 1409, 1487, 1566, 1670, 1775, 2005, 2236, 1989, 1754, 1631, 1515, 1413, 1334, 1272, 1245, 1252, 1283, 1336, 1416, 1507, 1589, 1703, 1890, 2149, 1905, 1701, 1570, 1452, 1347, 1253, 1197, 1179, 1178, 1210, 1276, 1355, 1452, 1553, 1649, 1831, 2070, 1830, 1661, 1527, 1392, 1286, 1189, 1134, 1105, 1103, 1152, 1206, 1299, 1398, 1520, 1624, 1796, 2013, 1792, 1626, 1488, 1351, 1236, 1148, 1087, 1064, 1068, 1106, 1172, 1257, 1367, 1494, 1598, 1744, 1985, 1764, 1605, 1455, 1319, 1209, 1102, 1057, 1036, 1043, 1077, 1140, 1238, 1354, 1467, 1578, 1718, 1977, 1769, 1589, 1453, 1311, 1188, 1096, 1048, 1026, 1024, 1066, 1128, 1215, 1335, 1467, 1572, 1724, 1978, 1774, 1598, 1462, 1311, 1192, 1092, 1045, 1026, 1027, 1069, 1133, 1221, 1333, 1468, 1579, 1711, 2000, 1778, 1609, 1482, 1320, 1209, 1120, 1069, 1050, 1047, 1084, 1141, 1248, 1355, 1475, 1610, 1751, 2030, 1823, 1646, 1503, 1362, 1236, 1149, 1101, 1078, 1080, 1115, 1172, 1273, 1386, 1510, 1626, 1771, 2075, 1870, 1692, 1552, 1410, 1300, 1199, 1145, 1120, 1124, 1169, 1228, 1326, 1438, 1565, 1662, 1813, 2181, 1929, 1741, 1596, 1465, 1355, 1266, 1208, 1191, 1192, 1224, 1279, 1376, 1488, 1596, 1721, 1880, 2261, 2017, 1821, 1666, 1546, 1445, 1352, 1292, 1271, 1274, 1304, 1380, 1479, 1559, 1671, 1776, 1916, 2390, 2123, 1911, 1741, 1634, 1537, 1455, 1402, 1366, 1366, 1411, 1475, 1552, 1627, 1735, 1851, 2061, 2507, 2289, 2000, 1835, 1712, 1631, 1549, 1501, 1481, 1478, 1507, 1562, 1641, 1715, 1820, 1953, 2151, 2669, 2426, 2157, 1942, 1807, 1716, 1650, 1609, 1583, 1589, 1611, 1665, 1741, 1809, 1934, 2090, 2342]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2468, 2263, 1990, 1831, 1691, 1607, 1530, 1484, 1453, 1445, 1470, 1508, 1539, 1646, 1732, 1883, 2115, 2391, 2122, 1876, 1721, 1595, 1521, 1435, 1399, 1368, 1365, 1394, 1418, 1493, 1559, 1659, 1797, 2011, 2250, 1984, 1788, 1655, 1529, 1446, 1357, 1302, 1280, 1274, 1309, 1343, 1418, 1497, 1589, 1703, 1896, 2150, 1911, 1718, 1582, 1470, 1361, 1276, 1217, 1181, 1184, 1228, 1273, 1361, 1438, 1535, 1652, 1820, 2095, 1859, 1679, 1538, 1398, 1295, 1210, 1147, 1120, 1118, 1159, 1200, 1288, 1396, 1496, 1610, 1761, 2018, 1801, 1627, 1492, 1364, 1243, 1157, 1097, 1068, 1071, 1105, 1158, 1240, 1349, 1463, 1583, 1732, 1990, 1768, 1601, 1474, 1317, 1209, 1123, 1067, 1034, 1041, 1072, 1125, 1211, 1314, 1432, 1563, 1698, 1959, 1757, 1590, 1443, 1317, 1199, 1098, 1061, 1026, 1028, 1057, 1108, 1202, 1305, 1436, 1549, 1683, 1962, 1762, 1590, 1445, 1308, 1192, 1101, 1050, 1025, 1024, 1050, 1117, 1200, 1298, 1436, 1555, 1707, 1989, 1784, 1612, 1457, 1318, 1201, 1111, 1071, 1039, 1041, 1078, 1125, 1218, 1321, 1450, 1566, 1707, 2018, 1808, 1636, 1491, 1352, 1242, 1159, 1104, 1075, 1085, 1100, 1161, 1249, 1356, 1478, 1600, 1761, 2078, 1860, 1678, 1538, 1401, 1290, 1207, 1152, 1126, 1123, 1160, 1212, 1304, 1401, 1523, 1651, 1794, 2161, 1914, 1728, 1593, 1463, 1366, 1266, 1216, 1195, 1185, 1223, 1279, 1358, 1469, 1576, 1684, 1872, 2252, 2018, 1823, 1667, 1545, 1449, 1366, 1311, 1271, 1280, 1306, 1368, 1441, 1532, 1636, 1755, 1941, 2385, 2121, 1907, 1752, 1624, 1534, 1461, 1401, 1388, 1388, 1409, 1454, 1531, 1612, 1713, 1843, 2031, 2515, 2279, 2012, 1853, 1735, 1644, 1575, 1516, 1496, 1491, 1513, 1544, 1630, 1705, 1817, 1956, 2162, 2663, 2447, 2149, 1977, 1829, 1747, 1677, 1635, 1606, 1604, 1623, 1646, 1710, 1805, 1908, 2084, 2304]
| },
| "lsc_samples_blue": {
| "uCoeff": [2386, 2160, 1905, 1743, 1628, 1558, 1492, 1434, 1408, 1409, 1443, 1484, 1542, 1598, 1698, 1841, 2026, 2260, 2008, 1807, 1631, 1550, 1474, 1384, 1339, 1330, 1319, 1366, 1413, 1469, 1539, 1630, 1747, 1921, 2150, 1921, 1725, 1580, 1480, 1388, 1315, 1272, 1247, 1246, 1272, 1322, 1375, 1483, 1568, 1653, 1857, 2033, 1827, 1649, 1523, 1422, 1316, 1250, 1192, 1170, 1170, 1211, 1272, 1331, 1418, 1514, 1624, 1783, 1957, 1773, 1606, 1476, 1370, 1255, 1180, 1126, 1103, 1111, 1146, 1195, 1276, 1375, 1470, 1590, 1715, 1900, 1734, 1569, 1454, 1316, 1218, 1128, 1083, 1066, 1077, 1106, 1157, 1239, 1344, 1460, 1549, 1698, 1876, 1715, 1553, 1417, 1285, 1188, 1108, 1063, 1036, 1050, 1077, 1121, 1212, 1309, 1423, 1529, 1687, 1856, 1678, 1527, 1401, 1275, 1175, 1088, 1056, 1024, 1040, 1057, 1111, 1192, 1307, 1420, 1538, 1675, 1870, 1708, 1534, 1418, 1275, 1167, 1095, 1045, 1031, 1038, 1062, 1117, 1202, 1313, 1414, 1535, 1674, 1890, 1704, 1543, 1417, 1290, 1175, 1114, 1067, 1045, 1050, 1080, 1132, 1210, 1329, 1443, 1553, 1697, 1916, 1738, 1581, 1443, 1317, 1219, 1133, 1094, 1084, 1075, 1102, 1156, 1238, 1347, 1458, 1587, 1726, 1943, 1782, 1613, 1486, 1369, 1257, 1195, 1140, 1123, 1113, 1146, 1199, 1294, 1383, 1510, 1624, 1750, 2037, 1836, 1665, 1555, 1430, 1335, 1252, 1195, 1173, 1175, 1206, 1267, 1343, 1435, 1539, 1665, 1828, 2142, 1919, 1722, 1608, 1495, 1402, 1324, 1287, 1237, 1241, 1280, 1342, 1412, 1486, 1606, 1689, 1884, 2256, 2019, 1813, 1675, 1567, 1491, 1414, 1366, 1338, 1341, 1368, 1424, 1488, 1563, 1648, 1790, 1963, 2372, 2155, 1926, 1779, 1664, 1574, 1504, 1455, 1446, 1439, 1464, 1511, 1578, 1639, 1765, 1879, 2087, 2474, 2310, 2025, 1876, 1735, 1674, 1581, 1555, 1532, 1527, 1554, 1615, 1643, 1702, 1843, 1993, 2208]
| }
| }, {
| "name": "1296x960_HZ_100",
| "resolution": "1296x960",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [4315, 3671, 3081, 2690, 2365, 2171, 1983, 1894, 1862, 1850, 1915, 2004, 2136, 2334, 2584, 2913, 3392, 3983, 3304, 2768, 2495, 2171, 1979, 1797, 1699, 1635, 1640, 1719, 1786, 1957, 2161, 2410, 2671, 3186, 3669, 3046, 2600, 2281, 2015, 1795, 1633, 1514, 1468, 1454, 1508, 1628, 1778, 2004, 2241, 2516, 2955, 3405, 2875, 2438, 2125, 1868, 1640, 1462, 1362, 1300, 1314, 1384, 1490, 1652, 1852, 2102, 2344, 2716, 3186, 2720, 2316, 2001, 1736, 1517, 1342, 1239, 1195, 1193, 1265, 1367, 1520, 1750, 1987, 2267, 2664, 3086, 2625, 2231, 1923, 1636, 1420, 1253, 1154, 1107, 1109, 1171, 1279, 1442, 1659, 1920, 2174, 2546, 3045, 2558, 2178, 1829, 1561, 1354, 1191, 1095, 1057, 1055, 1110, 1210, 1374, 1593, 1824, 2137, 2506, 3025, 2524, 2111, 1806, 1522, 1320, 1160, 1076, 1024, 1029, 1096, 1184, 1341, 1546, 1825, 2117, 2468, 2989, 2495, 2126, 1809, 1501, 1313, 1160, 1061, 1034, 1040, 1092, 1192, 1344, 1551, 1802, 2120, 2454, 3067, 2534, 2158, 1840, 1551, 1336, 1183, 1100, 1050, 1049, 1115, 1209, 1371, 1583, 1860, 2151, 2529, 3054, 2626, 2203, 1896, 1607, 1392, 1242, 1140, 1093, 1112, 1157, 1264, 1437, 1642, 1914, 2213, 2564, 3237, 2742, 2318, 1966, 1706, 1492, 1332, 1215, 1178, 1183, 1246, 1341, 1512, 1739, 2010, 2313, 2655, 3368, 2851, 2453, 2137, 1840, 1615, 1458, 1337, 1298, 1299, 1350, 1461, 1641, 1853, 2133, 2454, 2839, 3651, 3007, 2600, 2239, 1970, 1758, 1587, 1478, 1407, 1426, 1505, 1619, 1797, 2004, 2279, 2550, 2986, 3864, 3248, 2804, 2422, 2170, 1948, 1782, 1664, 1599, 1609, 1676, 1790, 1965, 2155, 2416, 2751, 3151, 4155, 3546, 3064, 2657, 2359, 2151, 1999, 1879, 1833, 1839, 1904, 2014, 2173, 2363, 2659, 2992, 3503, 4416, 3905, 3327, 2928, 2614, 2404, 2207, 2104, 2045, 2078, 2139, 2248, 2407, 2640, 2920, 3291, 3850]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3335, 2848, 2408, 2092, 1920, 1807, 1700, 1627, 1618, 1614, 1647, 1683, 1795, 1906, 2082, 2336, 2806, 3094, 2587, 2219, 1949, 1819, 1668, 1574, 1503, 1481, 1502, 1515, 1588, 1680, 1789, 1939, 2163, 2517, 2903, 2419, 2056, 1866, 1690, 1556, 1477, 1390, 1357, 1351, 1394, 1489, 1551, 1693, 1851, 2033, 2342, 2696, 2252, 1951, 1766, 1591, 1468, 1360, 1274, 1238, 1247, 1294, 1368, 1475, 1591, 1750, 1934, 2238, 2544, 2162, 1873, 1696, 1519, 1375, 1264, 1184, 1164, 1160, 1208, 1281, 1398, 1522, 1687, 1848, 2125, 2415, 2077, 1849, 1624, 1445, 1295, 1191, 1125, 1098, 1096, 1149, 1212, 1329, 1458, 1639, 1814, 2051, 2367, 2025, 1783, 1577, 1399, 1251, 1142, 1083, 1041, 1051, 1104, 1178, 1290, 1437, 1599, 1773, 1982, 2323, 2018, 1766, 1559, 1371, 1226, 1129, 1058, 1024, 1028, 1069, 1148, 1258, 1406, 1560, 1748, 2012, 2327, 2022, 1772, 1562, 1387, 1224, 1110, 1054, 1030, 1034, 1079, 1143, 1262, 1404, 1586, 1752, 1981, 2386, 2051, 1756, 1572, 1383, 1252, 1144, 1082, 1048, 1054, 1092, 1156, 1272, 1414, 1594, 1786, 2022, 2438, 2086, 1818, 1623, 1429, 1289, 1181, 1116, 1089, 1085, 1136, 1204, 1318, 1484, 1634, 1821, 2038, 2535, 2144, 1867, 1693, 1489, 1361, 1248, 1180, 1143, 1152, 1190, 1260, 1388, 1534, 1716, 1899, 2139, 2630, 2249, 1952, 1769, 1587, 1443, 1329, 1260, 1221, 1228, 1276, 1347, 1474, 1624, 1795, 1972, 2241, 2826, 2376, 2086, 1846, 1677, 1550, 1427, 1382, 1340, 1336, 1388, 1470, 1599, 1720, 1884, 2039, 2373, 3049, 2584, 2241, 1986, 1819, 1696, 1578, 1505, 1473, 1473, 1516, 1596, 1712, 1861, 1995, 2216, 2519, 3216, 2777, 2411, 2132, 1959, 1836, 1727, 1643, 1620, 1640, 1667, 1727, 1855, 1957, 2142, 2367, 2749, 3582, 3078, 2611, 2346, 2149, 1992, 1879, 1816, 1757, 1794, 1824, 1909, 2005, 2121, 2330, 2618, 3068]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3431, 2918, 2463, 2120, 1933, 1773, 1677, 1607, 1551, 1575, 1605, 1670, 1781, 1915, 2103, 2363, 2723, 3145, 2647, 2261, 1991, 1809, 1684, 1551, 1491, 1451, 1463, 1501, 1553, 1663, 1784, 1950, 2170, 2547, 2944, 2437, 2137, 1897, 1695, 1551, 1443, 1372, 1338, 1331, 1372, 1445, 1559, 1697, 1847, 2052, 2401, 2776, 2326, 2018, 1758, 1606, 1462, 1346, 1261, 1205, 1232, 1272, 1347, 1450, 1603, 1760, 1932, 2252, 2622, 2245, 1923, 1702, 1523, 1366, 1262, 1184, 1141, 1141, 1192, 1266, 1389, 1545, 1688, 1887, 2147, 2492, 2152, 1871, 1654, 1478, 1296, 1185, 1105, 1086, 1082, 1142, 1209, 1319, 1467, 1657, 1841, 2085, 2455, 2105, 1846, 1607, 1414, 1267, 1160, 1085, 1045, 1057, 1093, 1171, 1289, 1447, 1608, 1797, 2055, 2419, 2076, 1815, 1600, 1410, 1248, 1134, 1068, 1024, 1029, 1082, 1149, 1274, 1418, 1608, 1793, 2088, 2444, 2075, 1826, 1591, 1405, 1252, 1137, 1063, 1030, 1051, 1088, 1144, 1265, 1432, 1594, 1819, 2056, 2477, 2106, 1835, 1622, 1420, 1264, 1148, 1089, 1050, 1054, 1102, 1166, 1304, 1449, 1616, 1836, 2076, 2536, 2167, 1894, 1678, 1476, 1318, 1203, 1124, 1101, 1098, 1133, 1213, 1348, 1493, 1676, 1823, 2135, 2623, 2224, 1942, 1704, 1546, 1390, 1257, 1181, 1161, 1152, 1200, 1286, 1387, 1563, 1759, 1943, 2175, 2724, 2332, 2037, 1808, 1619, 1472, 1347, 1279, 1235, 1234, 1280, 1372, 1498, 1639, 1819, 2013, 2289, 2949, 2464, 2153, 1927, 1723, 1570, 1442, 1390, 1339, 1346, 1396, 1481, 1596, 1728, 1893, 2103, 2406, 3124, 2632, 2264, 2027, 1813, 1692, 1599, 1527, 1474, 1479, 1518, 1592, 1716, 1855, 2019, 2233, 2567, 3399, 2891, 2486, 2165, 1984, 1831, 1754, 1657, 1620, 1630, 1659, 1725, 1833, 1986, 2183, 2399, 2839, 3550, 3227, 2685, 2367, 2159, 1979, 1894, 1826, 1783, 1776, 1810, 1887, 1995, 2103, 2341, 2639, 3074]
| },
| "lsc_samples_blue": {
| "uCoeff": [3286, 2877, 2438, 2086, 1927, 1790, 1684, 1594, 1571, 1559, 1600, 1674, 1751, 1903, 2141, 2361, 2792, 3108, 2622, 2222, 1958, 1756, 1618, 1537, 1448, 1394, 1400, 1470, 1544, 1658, 1760, 1956, 2163, 2589, 2890, 2408, 2058, 1819, 1634, 1516, 1420, 1332, 1278, 1282, 1342, 1408, 1530, 1655, 1809, 2017, 2357, 2627, 2285, 1940, 1737, 1569, 1439, 1301, 1233, 1198, 1197, 1239, 1327, 1437, 1576, 1706, 1883, 2194, 2498, 2149, 1846, 1662, 1479, 1338, 1233, 1144, 1110, 1121, 1172, 1232, 1348, 1503, 1627, 1823, 2104, 2443, 2093, 1817, 1610, 1458, 1299, 1178, 1118, 1068, 1068, 1104, 1185, 1294, 1436, 1610, 1800, 2044, 2319, 2052, 1763, 1603, 1389, 1247, 1134, 1078, 1042, 1040, 1083, 1132, 1256, 1392, 1564, 1742, 2037, 2362, 2054, 1777, 1580, 1387, 1244, 1127, 1062, 1031, 1024, 1050, 1111, 1233, 1364, 1548, 1733, 2011, 2353, 2043, 1763, 1580, 1403, 1247, 1124, 1067, 1034, 1037, 1074, 1119, 1225, 1359, 1582, 1715, 2028, 2416, 2093, 1802, 1606, 1396, 1256, 1163, 1082, 1067, 1060, 1086, 1160, 1257, 1404, 1569, 1750, 2110, 2429, 2144, 1849, 1694, 1469, 1324, 1212, 1157, 1113, 1109, 1139, 1213, 1316, 1443, 1637, 1804, 2096, 2515, 2227, 1927, 1699, 1517, 1397, 1279, 1221, 1174, 1190, 1200, 1265, 1368, 1542, 1705, 1892, 2215, 2662, 2377, 2011, 1787, 1637, 1517, 1367, 1314, 1262, 1244, 1318, 1353, 1480, 1609, 1761, 1971, 2299, 2797, 2477, 2133, 1893, 1738, 1609, 1502, 1391, 1381, 1360, 1409, 1473, 1592, 1726, 1886, 2072, 2459, 3167, 2664, 2332, 1989, 1821, 1746, 1614, 1567, 1508, 1475, 1535, 1605, 1729, 1790, 1999, 2214, 2623, 3431, 2903, 2454, 2194, 1997, 1856, 1772, 1682, 1637, 1646, 1702, 1761, 1818, 1973, 2140, 2388, 2780, 3622, 3141, 2684, 2324, 2176, 1996, 1897, 1813, 1808, 1772, 1835, 1907, 1952, 2154, 2305, 2661, 3062]
| }
| }, {
| "name": "1296x960_HZ_70",
| "resolution": "1296x960",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3328, 3002, 2637, 2383, 2153, 2013, 1865, 1795, 1769, 1756, 1806, 1869, 1960, 2092, 2247, 2435, 2682, 3176, 2781, 2433, 2259, 2017, 1871, 1721, 1639, 1583, 1585, 1651, 1700, 1832, 1978, 2143, 2293, 2596, 3003, 2623, 2329, 2105, 1903, 1724, 1587, 1481, 1440, 1425, 1471, 1573, 1693, 1867, 2032, 2204, 2469, 2846, 2520, 2220, 1991, 1788, 1595, 1437, 1346, 1288, 1300, 1363, 1456, 1593, 1751, 1936, 2091, 2319, 2709, 2419, 2136, 1897, 1680, 1489, 1329, 1232, 1190, 1188, 1255, 1347, 1481, 1672, 1852, 2046, 2302, 2654, 2358, 2076, 1837, 1595, 1402, 1246, 1151, 1106, 1107, 1167, 1267, 1414, 1599, 1805, 1982, 2227, 2637, 2315, 2039, 1759, 1529, 1342, 1188, 1094, 1057, 1055, 1108, 1203, 1353, 1544, 1728, 1961, 2207, 2631, 2293, 1986, 1742, 1495, 1311, 1158, 1076, 1024, 1029, 1095, 1179, 1324, 1503, 1733, 1949, 2183, 2605, 2271, 2001, 1746, 1476, 1305, 1158, 1061, 1034, 1040, 1091, 1187, 1327, 1509, 1714, 1953, 2174, 2664, 2302, 2027, 1773, 1523, 1326, 1181, 1100, 1050, 1049, 1114, 1203, 1352, 1537, 1764, 1978, 2232, 2644, 2372, 2061, 1820, 1573, 1379, 1238, 1139, 1093, 1111, 1154, 1255, 1413, 1588, 1807, 2024, 2253, 2773, 2456, 2152, 1876, 1660, 1471, 1323, 1211, 1176, 1180, 1240, 1327, 1479, 1671, 1883, 2098, 2313, 2851, 2526, 2253, 2018, 1775, 1581, 1440, 1327, 1290, 1290, 1336, 1436, 1592, 1764, 1978, 2200, 2439, 3035, 2627, 2357, 2091, 1881, 1705, 1555, 1456, 1390, 1407, 1477, 1576, 1724, 1885, 2085, 2257, 2526, 3149, 2783, 2498, 2227, 2041, 1863, 1724, 1621, 1562, 1570, 1626, 1720, 1859, 1997, 2177, 2390, 2615, 3301, 2968, 2672, 2395, 2180, 2023, 1903, 1803, 1764, 1767, 1818, 1902, 2019, 2148, 2345, 2541, 2827, 3398, 3176, 2830, 2577, 2362, 2214, 2062, 1981, 1932, 1958, 2002, 2079, 2188, 2342, 2511, 2718, 3002]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2642, 2387, 2109, 1895, 1778, 1699, 1617, 1558, 1552, 1547, 1570, 1592, 1673, 1743, 1854, 2004, 2271, 2529, 2228, 1989, 1800, 1712, 1595, 1520, 1460, 1442, 1460, 1467, 1524, 1592, 1666, 1763, 1902, 2110, 2430, 2127, 1879, 1748, 1615, 1507, 1443, 1366, 1336, 1329, 1366, 1446, 1492, 1600, 1709, 1822, 2010, 2304, 2016, 1808, 1676, 1537, 1436, 1341, 1262, 1228, 1236, 1279, 1343, 1432, 1522, 1638, 1759, 1953, 2209, 1960, 1754, 1624, 1480, 1355, 1254, 1179, 1160, 1156, 1200, 1266, 1368, 1469, 1594, 1702, 1882, 2123, 1902, 1743, 1567, 1417, 1283, 1186, 1123, 1097, 1095, 1145, 1204, 1308, 1417, 1560, 1682, 1836, 2096, 1866, 1692, 1529, 1377, 1243, 1140, 1082, 1041, 1051, 1102, 1172, 1274, 1401, 1530, 1654, 1789, 2067, 1865, 1681, 1515, 1352, 1220, 1127, 1058, 1024, 1028, 1068, 1144, 1245, 1375, 1498, 1637, 1817, 2072, 1870, 1687, 1519, 1368, 1218, 1109, 1054, 1030, 1034, 1078, 1140, 1250, 1374, 1522, 1641, 1794, 2118, 1893, 1672, 1527, 1364, 1245, 1142, 1082, 1048, 1054, 1091, 1152, 1259, 1382, 1528, 1669, 1825, 2153, 1918, 1723, 1571, 1405, 1279, 1178, 1115, 1089, 1084, 1134, 1197, 1301, 1444, 1561, 1695, 1833, 2218, 1957, 1759, 1629, 1458, 1346, 1241, 1177, 1141, 1150, 1185, 1249, 1364, 1485, 1627, 1753, 1905, 2276, 2031, 1822, 1689, 1542, 1419, 1316, 1252, 1215, 1221, 1266, 1328, 1438, 1560, 1687, 1804, 1973, 2403, 2117, 1922, 1746, 1615, 1512, 1404, 1365, 1326, 1321, 1367, 1438, 1545, 1635, 1751, 1844, 2057, 2539, 2258, 2032, 1852, 1729, 1635, 1536, 1473, 1444, 1443, 1479, 1544, 1634, 1744, 1828, 1967, 2142, 2618, 2375, 2144, 1954, 1834, 1744, 1658, 1588, 1569, 1585, 1604, 1647, 1744, 1807, 1927, 2059, 2279, 2815, 2559, 2269, 2102, 1971, 1859, 1774, 1726, 1676, 1706, 1726, 1787, 1850, 1919, 2048, 2215, 2455]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2709, 2439, 2152, 1918, 1789, 1670, 1597, 1541, 1493, 1512, 1534, 1581, 1661, 1751, 1870, 2024, 2213, 2567, 2275, 2023, 1836, 1704, 1609, 1499, 1450, 1414, 1424, 1454, 1493, 1577, 1662, 1772, 1907, 2132, 2460, 2142, 1946, 1775, 1619, 1503, 1411, 1349, 1318, 1311, 1346, 1406, 1499, 1603, 1706, 1837, 2054, 2365, 2076, 1865, 1669, 1551, 1430, 1328, 1250, 1197, 1222, 1258, 1323, 1410, 1533, 1646, 1758, 1964, 2270, 2028, 1797, 1630, 1483, 1346, 1252, 1179, 1138, 1137, 1185, 1252, 1360, 1489, 1595, 1734, 1899, 2184, 1964, 1762, 1594, 1447, 1284, 1180, 1103, 1085, 1081, 1139, 1201, 1299, 1425, 1576, 1705, 1863, 2166, 1934, 1747, 1556, 1391, 1258, 1157, 1084, 1045, 1057, 1092, 1166, 1273, 1410, 1538, 1674, 1847, 2144, 1914, 1724, 1553, 1389, 1241, 1132, 1068, 1024, 1029, 1081, 1145, 1261, 1386, 1541, 1675, 1878, 2166, 1915, 1735, 1546, 1385, 1245, 1136, 1063, 1030, 1051, 1087, 1140, 1253, 1399, 1529, 1698, 1854, 2191, 1940, 1742, 1573, 1399, 1257, 1146, 1089, 1050, 1054, 1101, 1162, 1289, 1414, 1548, 1711, 1869, 2231, 1986, 1790, 1621, 1449, 1307, 1199, 1123, 1100, 1097, 1131, 1206, 1329, 1452, 1598, 1696, 1911, 2288, 2024, 1824, 1639, 1511, 1373, 1250, 1178, 1159, 1150, 1195, 1274, 1363, 1512, 1665, 1790, 1934, 2349, 2100, 1895, 1724, 1572, 1446, 1334, 1271, 1229, 1227, 1269, 1352, 1460, 1573, 1708, 1837, 2010, 2497, 2188, 1979, 1817, 1657, 1530, 1418, 1373, 1325, 1331, 1375, 1448, 1542, 1642, 1759, 1896, 2082, 2595, 2296, 2051, 1887, 1724, 1631, 1555, 1493, 1445, 1449, 1480, 1540, 1638, 1739, 1848, 1980, 2178, 2751, 2463, 2205, 1982, 1855, 1740, 1682, 1601, 1569, 1576, 1597, 1646, 1725, 1832, 1960, 2084, 2344, 2792, 2670, 2327, 2119, 1979, 1847, 1787, 1735, 1699, 1690, 1713, 1768, 1841, 1904, 2057, 2231, 2459]
| },
| "lsc_samples_blue": {
| "uCoeff": [2607, 2408, 2133, 1890, 1784, 1684, 1603, 1529, 1510, 1498, 1529, 1584, 1636, 1741, 1900, 2023, 2262, 2540, 2255, 1992, 1808, 1658, 1551, 1487, 1410, 1362, 1367, 1426, 1485, 1573, 1642, 1777, 1902, 2162, 2420, 2119, 1880, 1708, 1565, 1471, 1390, 1311, 1262, 1265, 1318, 1373, 1473, 1567, 1674, 1809, 2021, 2251, 2043, 1799, 1650, 1518, 1409, 1285, 1223, 1190, 1189, 1227, 1305, 1398, 1509, 1601, 1718, 1920, 2173, 1949, 1731, 1594, 1443, 1320, 1224, 1140, 1108, 1118, 1166, 1220, 1322, 1452, 1543, 1681, 1866, 2146, 1915, 1715, 1554, 1429, 1287, 1174, 1116, 1067, 1067, 1102, 1178, 1276, 1397, 1535, 1671, 1830, 2058, 1889, 1674, 1553, 1368, 1239, 1132, 1077, 1042, 1040, 1082, 1128, 1242, 1360, 1499, 1628, 1833, 2098, 1896, 1690, 1535, 1368, 1237, 1125, 1062, 1031, 1024, 1050, 1108, 1222, 1336, 1488, 1624, 1816, 2093, 1888, 1679, 1536, 1383, 1240, 1123, 1067, 1034, 1037, 1073, 1116, 1215, 1332, 1519, 1610, 1832, 2142, 1929, 1712, 1558, 1376, 1249, 1161, 1082, 1067, 1060, 1085, 1156, 1245, 1373, 1506, 1638, 1896, 2145, 1966, 1750, 1636, 1443, 1313, 1208, 1156, 1112, 1108, 1137, 1206, 1299, 1407, 1563, 1680, 1880, 2202, 2027, 1811, 1635, 1484, 1380, 1272, 1217, 1172, 1187, 1195, 1254, 1345, 1493, 1618, 1747, 1965, 2301, 2137, 1873, 1706, 1588, 1489, 1353, 1305, 1255, 1237, 1306, 1334, 1444, 1547, 1658, 1803, 2018, 2381, 2198, 1962, 1787, 1671, 1566, 1475, 1373, 1365, 1344, 1387, 1440, 1538, 1641, 1753, 1871, 2122, 2627, 2321, 2107, 1854, 1731, 1680, 1569, 1531, 1477, 1445, 1496, 1552, 1649, 1683, 1832, 1965, 2220, 2775, 2472, 2179, 2006, 1867, 1762, 1699, 1624, 1584, 1591, 1636, 1678, 1712, 1821, 1925, 2075, 2301, 2843, 2606, 2326, 2084, 1994, 1862, 1790, 1723, 1721, 1687, 1735, 1785, 1805, 1946, 2029, 2247, 2451]
| }
| }, {
| "name": "1296x960_TL84_100",
| "resolution": "1296x960",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3213, 2770, 2353, 2023, 1823, 1704, 1592, 1532, 1492, 1494, 1552, 1602, 1688, 1800, 1989, 2265, 2635, 3026, 2529, 2125, 1908, 1693, 1579, 1489, 1420, 1365, 1397, 1423, 1488, 1589, 1697, 1853, 2087, 2443, 2755, 2319, 1979, 1780, 1594, 1486, 1373, 1303, 1278, 1282, 1307, 1371, 1477, 1601, 1740, 1940, 2261, 2575, 2189, 1908, 1681, 1532, 1390, 1299, 1235, 1186, 1195, 1211, 1303, 1387, 1525, 1683, 1859, 2155, 2446, 2092, 1808, 1637, 1458, 1314, 1219, 1157, 1124, 1119, 1167, 1208, 1328, 1452, 1584, 1779, 2061, 2367, 1994, 1761, 1548, 1379, 1268, 1171, 1095, 1077, 1074, 1094, 1164, 1254, 1393, 1549, 1718, 1972, 2315, 1952, 1725, 1519, 1344, 1238, 1127, 1071, 1048, 1042, 1074, 1128, 1234, 1346, 1496, 1702, 1930, 2300, 1931, 1687, 1499, 1333, 1216, 1113, 1061, 1030, 1024, 1059, 1108, 1207, 1317, 1489, 1685, 1928, 2265, 1936, 1705, 1501, 1339, 1222, 1126, 1055, 1033, 1033, 1068, 1124, 1201, 1325, 1516, 1679, 1912, 2309, 1959, 1704, 1516, 1351, 1223, 1131, 1090, 1052, 1052, 1082, 1127, 1233, 1357, 1511, 1699, 1930, 2347, 2036, 1756, 1567, 1403, 1274, 1179, 1107, 1079, 1078, 1115, 1183, 1281, 1390, 1561, 1739, 1984, 2463, 2076, 1835, 1635, 1456, 1322, 1231, 1172, 1134, 1141, 1170, 1226, 1323, 1460, 1629, 1812, 2053, 2591, 2187, 1893, 1687, 1544, 1411, 1304, 1232, 1208, 1190, 1239, 1307, 1411, 1540, 1711, 1903, 2159, 2772, 2349, 2020, 1789, 1624, 1505, 1394, 1324, 1283, 1281, 1347, 1388, 1516, 1657, 1776, 1977, 2325, 2973, 2529, 2164, 1928, 1722, 1608, 1523, 1436, 1404, 1413, 1451, 1500, 1601, 1731, 1926, 2126, 2467, 3179, 2749, 2373, 2063, 1865, 1743, 1629, 1580, 1531, 1514, 1574, 1641, 1736, 1878, 2039, 2314, 2682, 3441, 3029, 2551, 2271, 2031, 1898, 1796, 1696, 1674, 1676, 1733, 1798, 1890, 2003, 2226, 2517, 2941]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3121, 2625, 2250, 1968, 1788, 1668, 1589, 1520, 1501, 1498, 1530, 1584, 1678, 1764, 1936, 2206, 2577, 2880, 2406, 2039, 1836, 1675, 1560, 1480, 1434, 1385, 1397, 1435, 1475, 1575, 1675, 1815, 2017, 2357, 2694, 2235, 1912, 1731, 1584, 1467, 1368, 1318, 1280, 1292, 1327, 1389, 1480, 1591, 1719, 1876, 2182, 2496, 2119, 1852, 1658, 1493, 1381, 1300, 1229, 1190, 1209, 1239, 1312, 1407, 1501, 1649, 1810, 2053, 2356, 1995, 1758, 1570, 1427, 1309, 1210, 1158, 1131, 1136, 1167, 1239, 1338, 1456, 1587, 1779, 1983, 2264, 1959, 1702, 1548, 1383, 1250, 1162, 1099, 1079, 1080, 1119, 1183, 1276, 1401, 1542, 1702, 1888, 2191, 1890, 1656, 1505, 1346, 1210, 1119, 1072, 1032, 1053, 1085, 1151, 1251, 1373, 1529, 1682, 1862, 2214, 1885, 1663, 1483, 1329, 1202, 1105, 1060, 1024, 1032, 1073, 1129, 1218, 1357, 1510, 1653, 1870, 2168, 1887, 1643, 1492, 1331, 1190, 1104, 1055, 1030, 1041, 1077, 1129, 1235, 1357, 1515, 1656, 1856, 2193, 1906, 1686, 1504, 1331, 1208, 1114, 1076, 1053, 1042, 1090, 1143, 1250, 1379, 1515, 1693, 1897, 2256, 1953, 1712, 1527, 1375, 1254, 1158, 1106, 1083, 1084, 1123, 1187, 1282, 1412, 1566, 1719, 1934, 2386, 2014, 1764, 1591, 1431, 1301, 1207, 1162, 1129, 1136, 1174, 1235, 1337, 1470, 1642, 1781, 1999, 2444, 2121, 1857, 1653, 1497, 1377, 1287, 1217, 1205, 1200, 1238, 1306, 1430, 1542, 1676, 1840, 2083, 2662, 2268, 1948, 1743, 1598, 1480, 1381, 1323, 1293, 1286, 1334, 1399, 1502, 1616, 1782, 1915, 2206, 2857, 2402, 2093, 1844, 1710, 1587, 1488, 1429, 1403, 1408, 1440, 1524, 1597, 1730, 1884, 2068, 2371, 3073, 2641, 2236, 1977, 1844, 1705, 1632, 1554, 1534, 1542, 1570, 1629, 1748, 1845, 2017, 2223, 2606, 3332, 2869, 2466, 2180, 1974, 1849, 1743, 1687, 1673, 1653, 1706, 1764, 1870, 1979, 2180, 2416, 2822]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3094, 2650, 2253, 1967, 1776, 1668, 1573, 1510, 1486, 1489, 1498, 1565, 1632, 1755, 1909, 2156, 2513, 2890, 2433, 2062, 1833, 1662, 1574, 1472, 1406, 1371, 1374, 1403, 1461, 1541, 1655, 1790, 1992, 2340, 2649, 2227, 1921, 1730, 1574, 1467, 1362, 1307, 1286, 1278, 1312, 1370, 1453, 1552, 1707, 1882, 2169, 2553, 2094, 1845, 1659, 1500, 1377, 1277, 1221, 1186, 1191, 1229, 1278, 1380, 1491, 1626, 1789, 2052, 2375, 2033, 1770, 1588, 1437, 1307, 1208, 1144, 1114, 1124, 1158, 1206, 1316, 1451, 1561, 1730, 1955, 2269, 1968, 1718, 1541, 1381, 1250, 1157, 1092, 1066, 1060, 1106, 1160, 1260, 1373, 1525, 1690, 1919, 2211, 1918, 1690, 1498, 1337, 1211, 1118, 1061, 1031, 1036, 1077, 1136, 1226, 1346, 1495, 1647, 1876, 2175, 1900, 1656, 1485, 1317, 1202, 1103, 1057, 1024, 1025, 1067, 1123, 1216, 1344, 1493, 1661, 1858, 2213, 1920, 1671, 1481, 1326, 1195, 1099, 1053, 1025, 1025, 1058, 1123, 1214, 1335, 1477, 1645, 1857, 2245, 1920, 1674, 1495, 1339, 1204, 1117, 1064, 1042, 1042, 1087, 1121, 1220, 1363, 1504, 1667, 1872, 2269, 1954, 1710, 1535, 1383, 1246, 1151, 1101, 1067, 1077, 1104, 1173, 1259, 1396, 1543, 1714, 1936, 2345, 2025, 1762, 1590, 1445, 1294, 1209, 1154, 1113, 1118, 1157, 1228, 1325, 1463, 1608, 1760, 1984, 2490, 2127, 1851, 1652, 1499, 1378, 1278, 1209, 1185, 1185, 1222, 1297, 1391, 1512, 1678, 1825, 2118, 2627, 2242, 1966, 1752, 1591, 1478, 1375, 1312, 1273, 1280, 1319, 1382, 1481, 1595, 1753, 1902, 2205, 2850, 2397, 2076, 1853, 1683, 1581, 1485, 1430, 1381, 1383, 1436, 1492, 1582, 1691, 1828, 2057, 2324, 3096, 2640, 2244, 1998, 1816, 1704, 1617, 1531, 1523, 1519, 1542, 1609, 1709, 1817, 1977, 2193, 2590, 3350, 2852, 2431, 2163, 1990, 1814, 1738, 1698, 1645, 1658, 1694, 1740, 1822, 1964, 2144, 2413, 2796]
| },
| "lsc_samples_blue": {
| "uCoeff": [2970, 2537, 2128, 1873, 1710, 1622, 1552, 1463, 1425, 1441, 1470, 1526, 1608, 1706, 1854, 2082, 2434, 2711, 2281, 1964, 1725, 1621, 1483, 1397, 1358, 1315, 1320, 1371, 1420, 1489, 1600, 1733, 1929, 2286, 2485, 2108, 1831, 1647, 1504, 1396, 1308, 1261, 1238, 1232, 1272, 1339, 1403, 1513, 1640, 1827, 2096, 2320, 2012, 1731, 1583, 1446, 1344, 1224, 1176, 1154, 1153, 1183, 1243, 1335, 1433, 1564, 1727, 1957, 2192, 1921, 1686, 1526, 1364, 1258, 1174, 1107, 1089, 1098, 1140, 1188, 1282, 1378, 1510, 1684, 1899, 2147, 1846, 1623, 1464, 1330, 1234, 1129, 1066, 1055, 1065, 1092, 1131, 1219, 1344, 1491, 1626, 1834, 2096, 1813, 1596, 1437, 1299, 1193, 1110, 1057, 1025, 1040, 1067, 1110, 1194, 1301, 1445, 1580, 1790, 2073, 1787, 1575, 1436, 1275, 1183, 1098, 1053, 1031, 1024, 1052, 1092, 1184, 1286, 1439, 1588, 1806, 2066, 1802, 1602, 1422, 1317, 1177, 1099, 1059, 1037, 1027, 1060, 1105, 1179, 1303, 1443, 1586, 1841, 2073, 1833, 1606, 1447, 1304, 1196, 1126, 1068, 1058, 1054, 1074, 1124, 1217, 1319, 1443, 1606, 1836, 2148, 1868, 1643, 1489, 1335, 1242, 1163, 1115, 1078, 1082, 1110, 1169, 1229, 1358, 1489, 1651, 1879, 2222, 1948, 1699, 1545, 1389, 1279, 1205, 1148, 1123, 1117, 1154, 1208, 1280, 1409, 1550, 1702, 1954, 2343, 2027, 1780, 1602, 1469, 1374, 1287, 1216, 1180, 1177, 1221, 1258, 1345, 1460, 1602, 1777, 2031, 2478, 2173, 1882, 1667, 1537, 1428, 1372, 1304, 1265, 1260, 1306, 1353, 1435, 1534, 1705, 1835, 2157, 2691, 2305, 2025, 1782, 1649, 1535, 1456, 1398, 1380, 1369, 1392, 1456, 1529, 1647, 1777, 1971, 2330, 2955, 2581, 2151, 1919, 1777, 1644, 1563, 1530, 1486, 1469, 1507, 1564, 1627, 1753, 1941, 2118, 2519, 3171, 2734, 2316, 2096, 1889, 1758, 1668, 1640, 1588, 1586, 1614, 1687, 1761, 1864, 2047, 2351, 2687]
| }
| }, {
| "name": "1296x960_TL84_70",
| "resolution": "1296x960",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2556, 2328, 2066, 1839, 1697, 1610, 1522, 1474, 1440, 1440, 1487, 1522, 1583, 1657, 1781, 1951, 2152, 2480, 2184, 1913, 1766, 1603, 1516, 1443, 1385, 1336, 1364, 1384, 1435, 1513, 1589, 1694, 1843, 2056, 2319, 2048, 1815, 1674, 1530, 1444, 1346, 1284, 1262, 1265, 1285, 1339, 1426, 1520, 1617, 1748, 1949, 2211, 1966, 1772, 1601, 1484, 1363, 1283, 1225, 1179, 1187, 1200, 1283, 1353, 1464, 1581, 1699, 1890, 2132, 1902, 1698, 1572, 1424, 1297, 1211, 1153, 1121, 1116, 1161, 1197, 1304, 1406, 1506, 1645, 1832, 2086, 1832, 1666, 1498, 1355, 1257, 1167, 1094, 1076, 1073, 1092, 1158, 1239, 1358, 1482, 1602, 1773, 2055, 1805, 1641, 1476, 1325, 1230, 1125, 1071, 1048, 1042, 1073, 1124, 1222, 1318, 1439, 1595, 1747, 2049, 1792, 1611, 1460, 1316, 1210, 1112, 1061, 1030, 1024, 1058, 1105, 1197, 1293, 1435, 1583, 1750, 2022, 1797, 1628, 1463, 1323, 1216, 1125, 1055, 1033, 1033, 1067, 1121, 1192, 1301, 1460, 1579, 1738, 2056, 1815, 1626, 1476, 1334, 1217, 1129, 1090, 1052, 1052, 1081, 1124, 1222, 1330, 1455, 1595, 1751, 2080, 1876, 1668, 1520, 1381, 1265, 1176, 1106, 1079, 1077, 1113, 1177, 1266, 1358, 1497, 1626, 1790, 2161, 1901, 1731, 1577, 1427, 1309, 1225, 1169, 1132, 1139, 1166, 1217, 1303, 1419, 1551, 1681, 1837, 2245, 1980, 1772, 1616, 1503, 1389, 1292, 1225, 1203, 1185, 1230, 1291, 1380, 1485, 1615, 1747, 1909, 2362, 2095, 1866, 1696, 1567, 1470, 1373, 1310, 1271, 1269, 1329, 1361, 1470, 1580, 1660, 1794, 2020, 2482, 2214, 1968, 1802, 1643, 1555, 1485, 1409, 1380, 1387, 1419, 1456, 1536, 1632, 1771, 1896, 2104, 2591, 2353, 2114, 1896, 1752, 1662, 1570, 1531, 1488, 1470, 1520, 1571, 1641, 1741, 1844, 2018, 2230, 2716, 2522, 2221, 2041, 1872, 1778, 1701, 1619, 1602, 1602, 1646, 1691, 1753, 1822, 1967, 2139, 2366]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2492, 2220, 1985, 1794, 1667, 1579, 1520, 1464, 1448, 1444, 1468, 1507, 1574, 1628, 1739, 1907, 2111, 2374, 2089, 1844, 1706, 1588, 1499, 1435, 1398, 1354, 1364, 1395, 1424, 1501, 1570, 1663, 1789, 1993, 2273, 1982, 1759, 1632, 1521, 1426, 1342, 1298, 1264, 1274, 1304, 1356, 1429, 1512, 1600, 1698, 1890, 2151, 1909, 1724, 1581, 1449, 1355, 1284, 1219, 1183, 1200, 1227, 1291, 1371, 1443, 1553, 1659, 1812, 2062, 1823, 1655, 1512, 1395, 1293, 1202, 1154, 1128, 1132, 1161, 1227, 1313, 1410, 1508, 1645, 1772, 2004, 1803, 1615, 1498, 1359, 1240, 1158, 1098, 1078, 1079, 1116, 1176, 1259, 1365, 1476, 1589, 1707, 1956, 1753, 1580, 1463, 1327, 1203, 1117, 1071, 1032, 1053, 1084, 1146, 1238, 1343, 1468, 1578, 1693, 1979, 1753, 1589, 1446, 1313, 1196, 1104, 1060, 1024, 1032, 1072, 1126, 1208, 1330, 1454, 1556, 1703, 1944, 1756, 1573, 1455, 1315, 1185, 1103, 1055, 1030, 1041, 1076, 1126, 1224, 1330, 1459, 1560, 1693, 1963, 1770, 1610, 1465, 1315, 1202, 1113, 1076, 1053, 1042, 1089, 1139, 1238, 1350, 1458, 1590, 1725, 2007, 1806, 1629, 1483, 1354, 1246, 1155, 1105, 1083, 1083, 1121, 1181, 1267, 1378, 1501, 1609, 1750, 2101, 1849, 1669, 1537, 1404, 1288, 1202, 1159, 1127, 1134, 1170, 1225, 1316, 1428, 1563, 1655, 1795, 2131, 1926, 1741, 1586, 1460, 1357, 1276, 1211, 1200, 1194, 1229, 1290, 1398, 1487, 1585, 1695, 1849, 2278, 2029, 1805, 1656, 1544, 1447, 1361, 1309, 1281, 1274, 1316, 1372, 1457, 1544, 1665, 1744, 1929, 2395, 2114, 1909, 1730, 1633, 1535, 1453, 1402, 1379, 1382, 1408, 1478, 1532, 1631, 1736, 1850, 2032, 2514, 2270, 2003, 1824, 1734, 1628, 1572, 1507, 1490, 1496, 1516, 1561, 1651, 1713, 1826, 1948, 2175, 2640, 2402, 2155, 1967, 1824, 1735, 1655, 1612, 1601, 1581, 1622, 1662, 1736, 1803, 1931, 2064, 2283]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2473, 2239, 1988, 1793, 1657, 1579, 1506, 1455, 1435, 1436, 1440, 1490, 1536, 1620, 1718, 1870, 2066, 2381, 2110, 1862, 1703, 1576, 1512, 1428, 1372, 1341, 1343, 1366, 1412, 1472, 1554, 1643, 1770, 1981, 2240, 1975, 1767, 1631, 1512, 1426, 1336, 1288, 1269, 1261, 1290, 1338, 1405, 1478, 1590, 1703, 1881, 2194, 1889, 1718, 1582, 1455, 1351, 1263, 1212, 1179, 1183, 1217, 1259, 1346, 1434, 1533, 1642, 1811, 2077, 1854, 1666, 1528, 1404, 1291, 1200, 1140, 1111, 1121, 1152, 1196, 1293, 1405, 1486, 1605, 1750, 2008, 1811, 1629, 1492, 1357, 1240, 1153, 1091, 1065, 1059, 1104, 1154, 1244, 1340, 1461, 1579, 1731, 1971, 1776, 1610, 1457, 1319, 1204, 1116, 1061, 1031, 1036, 1076, 1132, 1214, 1318, 1438, 1548, 1704, 1948, 1765, 1583, 1447, 1301, 1196, 1102, 1057, 1024, 1025, 1066, 1120, 1206, 1318, 1439, 1563, 1694, 1981, 1784, 1598, 1444, 1310, 1190, 1098, 1053, 1025, 1025, 1058, 1120, 1204, 1310, 1426, 1551, 1694, 2004, 1782, 1599, 1457, 1322, 1198, 1116, 1064, 1042, 1042, 1086, 1118, 1210, 1335, 1449, 1568, 1705, 2018, 1807, 1628, 1491, 1362, 1238, 1148, 1100, 1067, 1076, 1102, 1168, 1245, 1364, 1481, 1605, 1752, 2068, 1858, 1667, 1536, 1417, 1282, 1204, 1151, 1112, 1116, 1153, 1219, 1305, 1421, 1533, 1637, 1783, 2167, 1931, 1735, 1585, 1461, 1358, 1267, 1203, 1180, 1180, 1214, 1281, 1362, 1460, 1587, 1683, 1877, 2251, 2008, 1821, 1663, 1537, 1445, 1355, 1298, 1262, 1268, 1302, 1356, 1438, 1526, 1641, 1734, 1928, 2390, 2110, 1895, 1737, 1609, 1530, 1450, 1403, 1358, 1359, 1405, 1449, 1519, 1598, 1690, 1841, 1997, 2531, 2269, 2009, 1842, 1710, 1627, 1559, 1486, 1480, 1475, 1491, 1543, 1617, 1690, 1794, 1925, 2163, 2652, 2390, 2127, 1953, 1837, 1705, 1650, 1621, 1576, 1586, 1612, 1641, 1696, 1791, 1902, 2062, 2264]
| },
| "lsc_samples_blue": {
| "uCoeff": [2386, 2154, 1890, 1716, 1601, 1540, 1487, 1413, 1381, 1394, 1415, 1457, 1516, 1580, 1675, 1814, 2011, 2251, 1993, 1783, 1612, 1541, 1431, 1360, 1328, 1290, 1294, 1337, 1375, 1427, 1508, 1597, 1721, 1942, 2117, 1881, 1692, 1560, 1450, 1362, 1286, 1245, 1224, 1218, 1253, 1310, 1360, 1445, 1534, 1659, 1826, 2016, 1822, 1622, 1515, 1406, 1321, 1213, 1169, 1148, 1147, 1174, 1227, 1306, 1383, 1481, 1592, 1738, 1934, 1762, 1594, 1472, 1337, 1245, 1168, 1104, 1087, 1096, 1135, 1179, 1262, 1340, 1442, 1567, 1706, 1912, 1709, 1546, 1422, 1309, 1225, 1126, 1065, 1054, 1064, 1090, 1126, 1206, 1314, 1431, 1526, 1664, 1880, 1688, 1527, 1401, 1283, 1187, 1108, 1057, 1025, 1040, 1066, 1107, 1184, 1277, 1394, 1492, 1635, 1866, 1670, 1512, 1402, 1262, 1178, 1097, 1053, 1031, 1024, 1052, 1090, 1175, 1265, 1391, 1501, 1652, 1862, 1684, 1536, 1390, 1302, 1173, 1098, 1059, 1037, 1027, 1060, 1103, 1171, 1281, 1395, 1501, 1681, 1866, 1709, 1539, 1412, 1289, 1191, 1124, 1068, 1058, 1054, 1073, 1121, 1207, 1295, 1395, 1517, 1676, 1921, 1734, 1569, 1449, 1317, 1234, 1160, 1114, 1078, 1081, 1108, 1164, 1217, 1329, 1433, 1552, 1706, 1971, 1794, 1612, 1495, 1364, 1267, 1200, 1146, 1121, 1115, 1150, 1200, 1263, 1372, 1483, 1589, 1759, 2052, 1849, 1674, 1540, 1434, 1354, 1276, 1210, 1176, 1172, 1213, 1245, 1320, 1413, 1521, 1643, 1809, 2137, 1953, 1750, 1589, 1489, 1399, 1352, 1291, 1254, 1249, 1290, 1329, 1396, 1472, 1600, 1679, 1891, 2271, 2037, 1853, 1676, 1579, 1488, 1423, 1373, 1357, 1346, 1364, 1416, 1472, 1560, 1648, 1773, 2001, 2428, 2224, 1934, 1775, 1676, 1574, 1510, 1485, 1446, 1429, 1460, 1503, 1546, 1636, 1765, 1867, 2111, 2527, 2302, 2037, 1898, 1752, 1657, 1589, 1570, 1525, 1522, 1542, 1596, 1644, 1709, 1826, 2015, 2188]
| }
| }, {
| "name": "1296x960_GRAY_0",
| "resolution": "1296x960",
| "illumination": "GRAY",
| "vignetting": 0,
| "lsc_samples_red": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| },
| "lsc_samples_blue": {
| "uCoeff": [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
| }
| }],
| "tableAll_len": 30
| }
| },
| "colorAsGrey": {
| "param": {
| "enable": 0
| }
| },
| "lumaDetect": {
| "luma_detect_en": 1,
| "fixed_times": 0,
| "mutation_threshold": 0.0002,
| "mutation_threshold_level2": 1000
| },
| "aldch": {
| "param": {
| "ldch_en": 0,
| "meshfile": "LDCH_mesh_2688_1520_os04a10_4IR",
| "correct_level": 255,
| "correct_level_max": 255,
| "light_center": [1351.12, 739.486],
| "coefficient": [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
| }
| },
| "ccm_calib": {
| "control": {
| "enable": 1,
| "mode": "CALIB_CCM_MODE_AUTO",
| "wbgain_tolerance": 0.1,
| "gain_tolerance": 0.2
| },
| "lumaCCM": {
| "rgb2y_para": [38, 75, 15],
| "low_bound_pos_bit": 8,
| "y_alpha_curve": [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
| "gain_alphaScale_curve": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "scale": [1, 1, 0.95, 0.85, 0.7, 0.6, 0.5, 0.4, 0.3]
| }
| },
| "manualPara": {
| "ccMatrix": [1, 0, 0, 0, 1, 0, 0, 0, 1],
| "ccOffsets": [0, 0, 0]
| },
| "TuningPara": {
| "damp_enable": 1,
| "illu_estim": {
| "interp_enable": 0,
| "default_illu": "A",
| "weightRB": [1, 1],
| "prob_limit": 0.2,
| "frame_no": 8
| },
| "aCcmCof": [{
| "name": "A",
| "awbGain": [1.0025, 2.1149],
| "minDist": 0.05,
| "matrixUsed": ["A_74", "A_100"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 2, 4, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.4866, 1.9053],
| "minDist": 0.05,
| "matrixUsed": ["CWF_74", "CWF_100"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 2, 4, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D50",
| "awbGain": [1.6256, 1.5693],
| "minDist": 0.05,
| "matrixUsed": ["D50_74", "D50_100"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 2, 4, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D65",
| "awbGain": [1.6855, 1.3431],
| "minDist": 0.05,
| "matrixUsed": ["D65_74", "D65_100"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 2, 4, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D75",
| "awbGain": [1.7932, 1.2162],
| "minDist": 0.05,
| "matrixUsed": ["D75_74", "D75_100"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 2, 4, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "HZ",
| "awbGain": [0.8168, 2.3246],
| "minDist": 0.05,
| "matrixUsed": ["HZ_74", "HZ_100"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 2, 4, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.3721, 1.8874],
| "minDist": 0.05,
| "matrixUsed": ["TL84_74", "TL84_100"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 2, 4, 8],
| "sat": [100, 100, 90, 74]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.3282, -0.0991, -0.2291, -0.3687, 1.5705, -0.2018, -0.1776, -0.8371, 2.0146],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.7342, -0.4042, -0.33, -0.5051, 1.7963, -0.2912, -0.3346, -1.404, 2.7386],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.8123, -0.7222, -0.0901, -0.2259, 1.3312, -0.1053, 0.06, -0.5241, 1.4641],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [2.3056, -1.1526, -0.153, -0.4489, 1.6211, -0.1722, -0.0564, -0.8873, 1.9436],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.9253, -0.8529, -0.0724, -0.106, 1.273, -0.167, 0.1506, -0.4379, 1.2873],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [2.4193, -1.307, -0.1123, -0.326, 1.5649, -0.2389, -0.0127, -0.7486, 1.7613],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.5859, -0.4672, -0.1187, -0.0958, 1.3772, -0.2815, 0.1396, -0.3081, 1.1685],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.9946, -0.853, -0.1416, -0.2781, 1.6384, -0.3603, -0.0038, -0.6402, 1.6441],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.6568, -0.5205, -0.1362, -0.0739, 1.3729, -0.299, 0.1591, -0.2979, 1.1388],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [2.0776, -0.921, -0.1566, -0.2613, 1.6367, -0.3754, -0.0001, -0.5548, 1.5549],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.2244, 0.2869, -0.5113, -0.5065, 0.922, 0.5845, -0.8314, -1.5441, 3.3755],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.6721, 0.2307, -0.9027, -0.6677, 1.0871, 0.5807, -1.0756, -2.2455, 4.3211],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.5465, -0.4321, -0.1144, -0.2134, 1.3826, -0.1692, 0.0385, -0.4903, 1.4518],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.9729, -0.803, -0.1698, -0.4055, 1.6482, -0.2426, -0.0679, -0.9838, 2.0517],
| "ccOffsets": [0, 0, 0]
| }],
| "matrixAll_len": 14
| }
| },
| "lut3d_calib": {
| "common": {
| "enable": 0,
| "mode": "CALIB_Lut3D_MODE_AUTO",
| "gain_tolerance": 0.1,
| "wbgain_tolerance": 1
| },
| "MLut3D": {
| "Table": {
| "look_up_table_r": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "ALut3D": {
| "damp_en": 1,
| "lutAll": [{
| "name": "Normal",
| "awbGain": [1, 1],
| "gain_alpha": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "alpha": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "Table": {
| "look_up_table_r": [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
| "look_up_table_g": [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| }
| }],
| "lutAll_len": 1
| }
| },
| "af": {
| "TuningPara": {
| "af_mode": "CalibDbV2_AF_MODE_NOT_SET",
| "win_h_offs": 0,
| "win_v_offs": 0,
| "win_h_size": 0,
| "win_v_size": 0,
| "fixed_mode": {
| "code": 8
| },
| "macro_mode": {
| "code": 32
| },
| "infinity_mode": {
| "code": 32
| },
| "contrast_af": {
| "enable": 1,
| "Afss": "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
| "FullDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "FullSteps": 9,
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptiveSteps": 9,
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "TrigThers": 0.1,
| "LumaTrigThers": 0,
| "StableThers": 0.03,
| "StableFrames": 3,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 200,
| "OutFocusPos": 64,
| "WeightEnable": 0,
| "Weight": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "SearchPauseLumaEnable": 0,
| "SearchPauseLumaThers": 0,
| "SearchLumaStableFrames": 0,
| "SearchLumaStableThers": 0,
| "FlatValue": 0
| },
| "laser_af": {
| "enable": 0,
| "vcmDot": [0, 16, 32, 40, 48, 56, 64],
| "distanceDot": [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
| },
| "pdaf": {
| "enable": 0
| },
| "vcmcfg": {
| "start_current": -1,
| "rated_current": -1,
| "step_mode": -1,
| "extra_delay": 0
| },
| "measiso_cfg": [{
| "iso": 50,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 100,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 1600,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 3200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 6400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 12800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 25600,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 51200,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 102400,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }, {
| "iso": 204800,
| "afmThres": 4,
| "gammaY": [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
| "gaussWeight": [32, 16, 8]
| }],
| "zoomfocus_tbl": {
| "tbl_len": 0,
| "focal_length": [],
| "focal_length_len": 0,
| "zoom_pos": [],
| "zoom_pos_len": 0,
| "focus_infpos": [],
| "focus_infpos_len": 0,
| "focus_macropos": [],
| "focus_macropos_len": 0
| }
| }
| },
| "thumbnails": {
| "param": {
| "thumbnail_configs": [{
| "owner_cookies": 0,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\u0002",
| "width_intfactor": 2,
| "height_intfactor": 2,
| "buffer_count": 0
| }, {
| "owner_cookies": 1,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\u0004",
| "width_intfactor": 4,
| "height_intfactor": 4,
| "buffer_count": 0
| }, {
| "owner_cookies": 2,
| "stream_type": 0,
| "after_nodes": 0,
| "before_node": 0,
| "format": "NV12\b",
| "width_intfactor": 8,
| "height_intfactor": 8,
| "buffer_count": 0
| }],
| "thumbnail_configs_len": 3
| }
| },
| "bayernr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [578, 501, 428, 359, 234, 124, 87, 87, 91, 135, 160, 169, 161, 136, 94, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [860, 743, 631, 526, 332, 152, 87, 87, 113, 190, 232, 247, 234, 194, 125, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1111, 958, 813, 676, 424, 193, 87, 87, 173, 265, 315, 329, 308, 250, 149, 87]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1091, 954, 826, 708, 501, 344, 258, 254, 295, 338, 364, 365, 340, 286, 204, 100]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [578, 501, 428, 359, 234, 124, 87, 87, 91, 135, 160, 169, 161, 136, 94, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [860, 743, 631, 526, 332, 152, 87, 87, 113, 190, 232, 247, 234, 194, 125, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1111, 958, 813, 676, 424, 193, 87, 87, 173, 265, 315, 329, 308, 250, 149, 87]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1091, 954, 826, 708, 501, 344, 258, 254, 295, 338, 364, 365, 340, 286, 204, 100]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr2D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.2
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.3
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.4
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.5
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.55
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 1,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.08,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 1,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.07,
| "weight": 0.2
| }, {
| "iso": 200,
| "gauss_guide": 1,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.06,
| "weight": 0.3
| }, {
| "iso": 400,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.4
| }, {
| "iso": 800,
| "gauss_guide": 1,
| "filter_strength": 0.8,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.5
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.9,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.55
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.02,
| "weight": 0.6
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 1.1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.65
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.7
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 1.3,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.75
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 1.4,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 1.5,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 1.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr3D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 200,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 1600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 3200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 6400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 12800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 25600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 51200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 102400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 204800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.65,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.65
| }, {
| "iso": 100,
| "filter_strength": 0.6,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.6
| }, {
| "iso": 200,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.55
| }, {
| "iso": 400,
| "filter_strength": 0.5,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.45
| }, {
| "iso": 800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 1600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 3200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 6400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 12800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 25600,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 51200,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 102400,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }, {
| "iso": 204800,
| "filter_strength": 0.45,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0.35
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "cnr_v1": {
| "Version": "",
| "TuningPara": {
| "enable": 1,
| "Kernel_Coeff": {
| "kernel_5x5": [1, 0.8825, 0.7788, 0.6065, 0.3679]
| },
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 50,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.1,
| "hf_denoise_strength": 8,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.75,
| "hf_spikes_reducion_strength": 0.2,
| "hf_denoise_strength": 12,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 16,
| "hf_color_sat": 3.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 1,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 3.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 24,
| "hf_color_sat": 2.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 2,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 2.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 28,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 32,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 36,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "hSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 50,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.1,
| "hf_denoise_strength": 8,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 4,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 4,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 100,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.75,
| "hf_spikes_reducion_strength": 0.2,
| "hf_denoise_strength": 12,
| "hf_color_sat": 4,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 6,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 6,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.7,
| "hf_spikes_reducion_strength": 0.3,
| "hf_denoise_strength": 16,
| "hf_color_sat": 3.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 1,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 8,
| "lf_color_sat": 3.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.6,
| "hf_spikes_reducion_strength": 0.4,
| "hf_denoise_strength": 24,
| "hf_color_sat": 2.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 2,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 12,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 10,
| "lf_color_sat": 2.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 36,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 12,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 20,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 14,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 24,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 16,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 28,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 18,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 32,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 20,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 36,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 25,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 40,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 30,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 45,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 35,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 10,
| "color_sat_adj_alpha": 0.5,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 50,
| "hf_color_sat": 1.5,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 4,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 40,
| "thumb_color_sat": 4,
| "lf_denoise_strength": 40,
| "lf_color_sat": 1.5,
| "lf_denoise_alpha": 1
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.43885e-12, 1.37858e-08, -4.59234e-05, 0.0558242, 11.3411],
| "ynr_ci_l": 0.25003,
| "ynr_ci_h": 0.179537
| }, {
| "iso": 100,
| "sigma_curve": [-1.53596e-12, 1.48075e-08, -4.97166e-05, 0.0614697, 8.25783],
| "ynr_ci_l": 0.279016,
| "ynr_ci_h": 0.179268
| }, {
| "iso": 200,
| "sigma_curve": [-2.7507e-12, 2.66482e-08, -8.95686e-05, 0.107631, 23.5915],
| "ynr_ci_l": 0.237845,
| "ynr_ci_h": 0.158752
| }, {
| "iso": 400,
| "sigma_curve": [-3.90049e-12, 3.7032e-08, -0.00011999, 0.13326, 41.7396],
| "ynr_ci_l": 0.243121,
| "ynr_ci_h": 0.149772
| }, {
| "iso": 800,
| "sigma_curve": [-6.34581e-12, 5.85923e-08, -0.000187899, 0.217716, 46.3441],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157989
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157989
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157989
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-1.43885e-12, 1.37858e-08, -4.59234e-05, 0.0558242, 11.3411],
| "ynr_ci_l": 0.25003,
| "ynr_ci_h": 0.179537
| }, {
| "iso": 100,
| "sigma_curve": [-1.53596e-12, 1.48075e-08, -4.97166e-05, 0.0614697, 8.25783],
| "ynr_ci_l": 0.279016,
| "ynr_ci_h": 0.179268
| }, {
| "iso": 200,
| "sigma_curve": [-2.7507e-12, 2.66482e-08, -8.95686e-05, 0.107631, 23.5915],
| "ynr_ci_l": 0.237845,
| "ynr_ci_h": 0.158752
| }, {
| "iso": 400,
| "sigma_curve": [-3.90049e-12, 3.7032e-08, -0.00011999, 0.13326, 41.7396],
| "ynr_ci_l": 0.243121,
| "ynr_ci_h": 0.149772
| }, {
| "iso": 800,
| "sigma_curve": [-6.34581e-12, 5.85923e-08, -0.000187899, 0.217716, 46.3441],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157989
| }, {
| "iso": 1600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157989
| }, {
| "iso": 3200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157989
| }, {
| "iso": 6400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.24033,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 12800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 25600,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 51200,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 102400,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }, {
| "iso": 204800,
| "sigma_curve": [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
| "ynr_ci_l": 0.267207,
| "ynr_ci_h": 0.157733
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.6,
| "low_edge_adj_thresh": 28,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.2,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.6,
| "high_weight": 0.8,
| "hi_min_adj": 0.95,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.6,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 28,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.8,
| "high_weight": 0.75,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.9,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 28,
| "low_center_weight": 0.5,
| "low_dist_adj": 7,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.85,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 1.2,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.45,
| "low_dist_adj": 6,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.65,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 95,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.75,
| "hi_edge_thed": 90,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1,
| "low_bf_1": 1,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.6,
| "low_edge_adj_thresh": 28,
| "low_center_weight": 0.6,
| "low_dist_adj": 8,
| "low_weight": 0.2,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.1,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.6,
| "high_weight": 0.8,
| "hi_min_adj": 0.95,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 100,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.5,
| "low_bf_1": 1.5,
| "low_thred_adj": 0.6,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 28,
| "low_center_weight": 0.55,
| "low_dist_adj": 8,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.15,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 0.8,
| "high_weight": 0.75,
| "hi_min_adj": 0.9,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2,
| "low_bf_1": 2,
| "low_thred_adj": 0.9,
| "low_peak_supress": 0.4,
| "low_edge_adj_thresh": 28,
| "low_center_weight": 0.5,
| "low_dist_adj": 7,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.2,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1,
| "high_weight": 0.7,
| "hi_min_adj": 0.85,
| "hi_edge_thed": 100,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 2.5,
| "low_bf_1": 2.5,
| "low_thred_adj": 1.2,
| "low_peak_supress": 0.3,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.45,
| "low_dist_adj": 6,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.3,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.5,
| "high_weight": 0.65,
| "hi_min_adj": 0.8,
| "hi_edge_thed": 95,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 3,
| "low_bf_1": 3,
| "low_thred_adj": 1.5,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 24,
| "low_center_weight": 0.4,
| "low_dist_adj": 5,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.75,
| "hi_edge_thed": 90,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 1600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 4,
| "low_bf_1": 4,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 3200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 6,
| "low_bf_1": 6,
| "low_thred_adj": 2,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 20,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 6400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 8,
| "low_bf_1": 8,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 10,
| "low_bf_1": 10,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 12,
| "low_bf_1": 12,
| "low_thred_adj": 3,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 16,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 15,
| "low_bf_1": 15,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 18,
| "low_bf_1": 18,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }, {
| "iso": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 20,
| "low_bf_1": 20,
| "low_thred_adj": 4,
| "low_peak_supress": 0.2,
| "low_edge_adj_thresh": 12,
| "low_center_weight": 0.4,
| "low_dist_adj": 4,
| "low_weight": 0,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.4,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 2,
| "high_weight": 0.6,
| "hi_min_adj": 0.6,
| "hi_edge_thed": 80,
| "high_direction_weight": [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
| "rnr_strength": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "sharp_v3": {
| "Version": "",
| "TuningPara": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.3,
| "pbf_add": 1,
| "gaus_ratio": 0.3,
| "sharp_ratio": 13,
| "bf_gain": 0.3,
| "bf_ratio": 0.3,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.5,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.5,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 896, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.6,
| "pbf_add": 6,
| "gaus_ratio": 0.6,
| "sharp_ratio": 8,
| "bf_gain": 0.8,
| "bf_ratio": 0.6,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1,
| "pbf_ratio": 0.7,
| "pbf_add": 9,
| "gaus_ratio": 0.7,
| "sharp_ratio": 6,
| "bf_gain": 1,
| "bf_ratio": 0.7,
| "bf_add": 9,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.8,
| "pbf_add": 12,
| "gaus_ratio": 0.8,
| "sharp_ratio": 4,
| "bf_gain": 1.2,
| "bf_ratio": 0.8,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.4,
| "pbf_ratio": 0.9,
| "pbf_add": 15,
| "gaus_ratio": 0.9,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 0.9,
| "bf_add": 15,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 18,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.6,
| "pbf_ratio": 1,
| "pbf_add": 21,
| "gaus_ratio": 1,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "bf_ratio": 1,
| "bf_add": 21,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 24,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.8,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "bf_add": 27,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.9,
| "pbf_ratio": 1,
| "pbf_add": 30,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.9,
| "bf_ratio": 1,
| "bf_add": 30,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 2,
| "pbf_ratio": 1,
| "pbf_add": 33,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 33,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "pbf_gain": 0.3,
| "pbf_ratio": 0.3,
| "pbf_add": 1,
| "gaus_ratio": 0.3,
| "sharp_ratio": 13,
| "bf_gain": 0.3,
| "bf_ratio": 0.3,
| "bf_add": 1,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 100,
| "pbf_gain": 0.4,
| "pbf_ratio": 0.4,
| "pbf_add": 2,
| "gaus_ratio": 0.4,
| "sharp_ratio": 12,
| "bf_gain": 0.4,
| "bf_ratio": 0.4,
| "bf_add": 2,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 200,
| "pbf_gain": 0.6,
| "pbf_ratio": 0.5,
| "pbf_add": 4,
| "gaus_ratio": 0.5,
| "sharp_ratio": 10,
| "bf_gain": 0.6,
| "bf_ratio": 0.5,
| "bf_add": 4,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [768, 896, 1023, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 400,
| "pbf_gain": 0.8,
| "pbf_ratio": 0.6,
| "pbf_add": 6,
| "gaus_ratio": 0.6,
| "sharp_ratio": 8,
| "bf_gain": 0.8,
| "bf_ratio": 0.6,
| "bf_add": 6,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 800,
| "pbf_gain": 1,
| "pbf_ratio": 0.7,
| "pbf_add": 9,
| "gaus_ratio": 0.7,
| "sharp_ratio": 6,
| "bf_gain": 1,
| "bf_ratio": 0.7,
| "bf_add": 9,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [128, 160, 224, 256, 256, 256, 224, 160],
| "local_sharp_strength": [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 1600,
| "pbf_gain": 1.2,
| "pbf_ratio": 0.8,
| "pbf_add": 12,
| "gaus_ratio": 0.8,
| "sharp_ratio": 4,
| "bf_gain": 1.2,
| "bf_ratio": 0.8,
| "bf_add": 12,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [256, 256, 256, 256, 256, 256, 256, 256]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 3200,
| "pbf_gain": 1.4,
| "pbf_ratio": 0.9,
| "pbf_add": 15,
| "gaus_ratio": 0.9,
| "sharp_ratio": 4,
| "bf_gain": 1.4,
| "bf_ratio": 0.9,
| "bf_add": 15,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 6400,
| "pbf_gain": 1.5,
| "pbf_ratio": 1,
| "pbf_add": 18,
| "gaus_ratio": 1,
| "sharp_ratio": 4,
| "bf_gain": 1.5,
| "bf_ratio": 1,
| "bf_add": 18,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 12800,
| "pbf_gain": 1.6,
| "pbf_ratio": 1,
| "pbf_add": 21,
| "gaus_ratio": 1,
| "sharp_ratio": 3,
| "bf_gain": 1.6,
| "bf_ratio": 1,
| "bf_add": 21,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 25600,
| "pbf_gain": 1.7,
| "pbf_ratio": 1,
| "pbf_add": 24,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.7,
| "bf_ratio": 1,
| "bf_add": 24,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 51200,
| "pbf_gain": 1.8,
| "pbf_ratio": 1,
| "pbf_add": 27,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.8,
| "bf_ratio": 1,
| "bf_add": 27,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 102400,
| "pbf_gain": 1.9,
| "pbf_ratio": 1,
| "pbf_add": 30,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 1.9,
| "bf_ratio": 1,
| "bf_add": 30,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }, {
| "iso": 204800,
| "pbf_gain": 2,
| "pbf_ratio": 1,
| "pbf_add": 33,
| "gaus_ratio": 1,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "bf_ratio": 1,
| "bf_add": 33,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [48, 56, 64, 80, 96, 80, 64, 56],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [128, 128, 128, 128, 128, 128, 128, 128]
| },
| "kernel_para": {
| "prefilter_coeff": [0.2042, 0.1238, 0.0751],
| "GaussianFilter_coeff": [0.2042, 0.1238, 0.0751],
| "hfBilateralFilter_coeff": [0.2042, 0.1238, 0.0751]
| }
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| }
| }
| }],
| "sub_scene_len": 1
| }],
| "main_scene_len": 1,
| "uapi": [],
| "uapi_len": 0,
| "sys_static_cfg": {
| "algoSwitch": {
| "enable": 0,
| "enable_algos": [],
| "enable_algos_len": 0
| }
| }
| }
|
|