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
| {
| "sensor_calib": {
| "resolution": {
| "width": 3840,
| "height": 2160
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_NONLINEAR_DB",
| "GainRange": [1, 2, 20, 20, 1, 0, 20, 2, 4, 10, 0, 1, 20, 40, 4, 8, 5, -20, 1, 40, 60, 8, 16, 2.5, -40, 1, 60, 80, 16, 32, 1.25, -60, 1, 80, 100, 32, 64, 0.625, -80, 1, 100, 120, 64, 128, 0.3125, -100, 1, 120, 140, 128, 256, 0.1563, -120, 1, 140, 160, 256, 512, 0.0781, -140, 1, 160, 180, 512, 1024, 0.0391, -160, 1, 180, 200],
| "GainRange_len": 70
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 31.62
| },
| "CISExtraAgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 125
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 2,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 10]
| },
| "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": 1.6,
| "EFL": 5.2,
| "LensT": 90,
| "IRCutT": 90
| }
| },
| "main_scene": [{
| "name": "normal",
| "sub_scene": [{
| "name": "day",
| "scene_isp21": {
| "ae_calib": {
| "CommCtrl": {
| "Enable": 1,
| "AecRunInterval": 1,
| "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, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 2, 3, 3, 4, 4, 5, 4, 4, 3, 3, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.02,
| "GainValue": 1,
| "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.2,
| "DampUnder": 0.85,
| "DampDark2Bright": 0.8,
| "DampBright2Dark": 0.85
| },
| "AecDelayFrmNum": {
| "BlackDelay": 1,
| "WhiteDelay": 0
| },
| "AecFrameRateMode": {
| "isFpsFix": 0,
| "FpsValue": 25
| },
| "AecAntiFlicker": {
| "enable": 1,
| "Frequency": "AECV2_FLICKER_FREQUENCY_50HZ",
| "Mode": "AECV2_ANTIFLICKER_AUTO_MODE"
| },
| "AecEnvLvCalib": {
| "CalibFNumber": 1.6,
| "CurveCoeff": [0.0286, 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": 15,
| "ToleranceOut": 30,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "InitExp": {
| "InitTimeValue": 0.003,
| "InitGainValue": 1,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 4, 8, 15.5, 128],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 2],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.192, 0.384, 1.152, 1.92, 1.92],
| "ExpLevel_len": 6,
| "DySetpoint": [45, 45, 45, 44, 44, 44],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.192, 0.384, 0.768, 1.152, 1.92, 2.688],
| "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": [25, 22, 20, 18, 15, 12],
| "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, 4, 8, 15.5, 32],
| "Frm0GainDot_len": 6,
| "Frm0IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm0IspDGainDot_len": 6,
| "Frm1TimeDot": [0, 0.02, 0.02, 0.02, 0.02, 0.03],
| "Frm1TimeDot_len": 6,
| "Frm1GainDot": [1, 1, 4, 8, 15.5, 64],
| "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, 4, 8, 15.5, 64],
| "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.0192, 0.0576, 0.096, 0.192, 0.384],
| "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.096, 0.192, 0.384, 0.96, 1.344, 1.92],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0048, 0.0144, 0.024, 0.0384, 0.0576],
| "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": 30,
| "AlterExp": {
| "LinearAE": [{
| "TimeValue": 0.03,
| "GainValue": 16,
| "IspDGainValue": 1,
| "PIrisGainValue": 1,
| "DcgMode": 0
| }, {
| "TimeValue": 0.03,
| "GainValue": 16,
| "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.2695, 1, 1, 3.3522],
| "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": 0,
| "lsUsedForYuvDet": ["A", "CWF", "D50", "D65", "D75", "HZ", "TL84"],
| "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.250012, 0.499981, 0.250007],
| "rotationMat": [-0.597992, 0.801502, -0.101293, 0.801502, 0.597992, 0.829008, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.03125, 0.134766, 0.013672, 37.125, -0.083984, -0.001953, 0.070313, 136.25, 0.048828, -0.052734, 0.048828, 108.125, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1096, -1096, 140, 140]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-40, -40, 121, 121]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-235, -235, 237, 237]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }],
| "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": [0, 0, 0.2, 0.5, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [0, 0, 0.2, 0.5, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [0, 0, 0.2, 0.5, 1, 1, 1, 1, 1]
| }],
| "ratioSet_len": 3
| }, {
| "LvValue": 8192,
| "ratioSet": [{
| "ratioValue": 0,
| "weight": [0, 0, 0.2, 0.5, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.01,
| "weight": [0, 0, 0.2, 0.5, 1, 1, 1, 1, 1]
| }, {
| "ratioValue": 0.1,
| "weight": [0, 0, 0.2, 0.5, 1, 1, 1, 1, 1]
| }],
| "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.2695, 1, 1, 3.3522],
| "uvRegion": {
| "u": [124.539, 54.0592, 55.5708, 124.504],
| "v": [127.533, 119.813, 102.052, 126.511]
| },
| "xyRegion": {
| "normal": [-1.4297, -1.0037, 0.1071, -0.0529],
| "big": [-1.4297, -1.0037, 0.1371, -0.0829]
| },
| "rtYuvRegion": {
| "thcurve_u": [49, 81, 209, 337, 593, 849],
| "thcure_th": [0, 0, 0, 0, 1, 4],
| "lineVector": [10, 143.812, 107.688, 185.312, 98.6875, 108.812],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.8227, 1, 1, 1.9936],
| "defaultDayGainHigh": [2.185, 1, 1, 1.766],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.8118, 1, 1, 2.9959],
| "uvRegion": {
| "u": [58.932, 68.5077, 125.407, 125.131],
| "v": [88.8904, 71.3446, 125.034, 125.416]
| },
| "xyRegion": {
| "normal": [-0.8064, -0.5309, -0.0704, -0.2304],
| "big": [-0.8064, -0.5309, -0.0404, -0.2621]
| },
| "rtYuvRegion": {
| "thcurve_u": [40, 104, 232, 360, 616, 872],
| "thcure_th": [0, 0, 0, 0, 1, 4],
| "lineVector": [10, 138.625, 110.188, 190, 124.062, 97.875],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.8227, 1, 1, 1.9936],
| "defaultDayGainHigh": [2.185, 1, 1, 1.766],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.8227, 1, 1, 1.9936],
| "uvRegion": {
| "u": [68.5077, 82.9151, 127.034, 127],
| "v": [71.0741, 55.4053, 125.538, 126.5]
| },
| "xyRegion": {
| "normal": [-0.5309, -0.1504, 0.1618, 0.0018],
| "big": [-0.5309, -0.1504, 0.1918, -0.0282]
| },
| "rtYuvRegion": {
| "thcurve_u": [48, 112, 240, 368, 624, 880],
| "thcure_th": [0, 0, 0, 0, 1, 4],
| "lineVector": [10, 137.438, 108.188, 190.938, 131.688, 108.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.8227, 1, 1, 1.9936],
| "defaultDayGainHigh": [2.185, 1, 1, 1.766],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.185, 1, 1, 1.766],
| "uvRegion": {
| "u": [82.7095, 88.569, 125.649, 125.302],
| "v": [55.4894, 49.7575, 121.965, 122.801]
| },
| "xyRegion": {
| "normal": [-0.1504, 0.0767, 0.0745, -0.0855],
| "big": [-0.1504, 0.0767, 0.1045, -0.1155]
| },
| "rtYuvRegion": {
| "thcurve_u": [20, 84, 148, 276, 532, 788],
| "thcure_th": [255, 255, 255, 255, 255, 255],
| "lineVector": [10, 135.438, 108.812, 190.75, 145.438, 106.75],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.8227, 1, 1, 1.9936],
| "defaultDayGainHigh": [2.185, 1, 1, 1.766],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.2997, 1, 1, 1.6026],
| "uvRegion": {
| "u": [127.418, 125.995, 88.4989, 102.996],
| "v": [122.012, 122.429, 49.5482, 44.4167]
| },
| "xyRegion": {
| "normal": [0.0767, 0.2768, 0.0806, -0.0794],
| "big": [0.0767, 0.2768, 0.1106, -0.1105]
| },
| "rtYuvRegion": {
| "thcurve_u": [14, 46, 110, 366, 494, 750],
| "thcure_th": [255, 255, 255, 255, 255, 255],
| "lineVector": [10, 134.562, 108.25, 190.312, 150.438, 109.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.8227, 1, 1, 1.9936],
| "defaultDayGainHigh": [2.185, 1, 1, 1.766],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.051, 1, 1, 4.154],
| "uvRegion": {
| "u": [125, 56.777, 53.9706, 125.846],
| "v": [130, 137.19, 120.22, 127.788]
| },
| "xyRegion": {
| "normal": [-1.8547, -1.4297, 0.073, -0.087],
| "big": [-1.8547, -1.4297, 0.103, -0.117]
| },
| "rtYuvRegion": {
| "thcurve_u": [49, 113, 241, 369, 625, 881],
| "thcure_th": [0, 0, 0, 0, 1, 4],
| "lineVector": [10, 146.75, 106.625, 179.75, 84.375, 114.5],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.8227, 1, 1, 1.9936],
| "defaultDayGainHigh": [2.185, 1, 1, 1.766],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.5436, 1, 1, 2.6893],
| "uvRegion": {
| "u": [124.521, 55.4728, 58.3558, 125.131],
| "v": [126.479, 101.933, 88.2301, 125.498]
| },
| "xyRegion": {
| "normal": [-1.0037, -0.6942, 0.1214, -0.0111],
| "big": [-1.0037, -0.6942, 0.1514, -0.0411]
| },
| "rtYuvRegion": {
| "thcurve_u": [40, 104, 168, 424, 680, 936],
| "thcure_th": [0, 0, 0, 0, 1, 4],
| "lineVector": [10, 139, 109.375, 190.062, 121.875, 102.062],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [1.8227, 1, 1, 1.9936],
| "defaultDayGainHigh": [2.185, 1, 1, 1.766],
| "xyType2Enable": 1
| }],
| "lightSources_len": 7
| },
| "autoExtPara": {
| "lightSourceForFirstFrame": "D50",
| "tolerance": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "toleranceValue": [0.05, 0.05, 0.05, 0.05],
| "toleranceValue_len": 4
| },
| "runInterval": {
| "lumaValue": [256, 512, 32768, 131072],
| "lumaValue_len": 4,
| "intervalValue": [5, 2, 0, 0],
| "intervalValue_len": 4
| },
| "dampFactor": {
| "dFStep": 0.05,
| "dFMin": 0.7,
| "dFMax": 0.9,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 0,
| "lutAll": [{
| "lumaValue": 1000,
| "ct_grid_num": 7,
| "cri_grid_num": 9,
| "ct_in_range": [2000, 8000],
| "cri_in_range": [-1, 1],
| "ct_lut_out": [2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 8000, 2000, 3150, 4150, 5150, 6150, 7150, 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": 1
| },
| "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": [150],
| "low_len": 1,
| "high": [216],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.8227, 1, 1, 1.9936],
| "lumaValueMatrix": [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144],
| "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.15,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [216],
| "forBigType_len": 1,
| "forExtraType": [216],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 29.1325,
| "meanH": 38.6434
| }, {
| "index": 13,
| "meanC": 27.4353,
| "meanH": -73.0195
| }, {
| "index": 5,
| "meanC": 12.9689,
| "meanH": -66.8781
| }, {
| "index": 10,
| "meanC": 11.9018,
| "meanH": -40.7004
| }, {
| "index": 14,
| "meanC": 18.2954,
| "meanH": 153.759
| }, {
| "index": 16,
| "meanC": 33.6748,
| "meanH": 92.9746
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.26947,
| "BGain": 3.35224
| }, {
| "name": "TL84",
| "RGain": 1.54356,
| "BGain": 2.68928
| }, {
| "name": "D50",
| "RGain": 1.82271,
| "BGain": 1.9936
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.8661, -0.4999, -2.7752],
| "lineRgProjCCT": [1, -0.0003, 0.552],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [2.185, 1, 1, 1.766],
| "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, 5, 10, 16, 21, 26, 31, 37, 42, 52, 63, 73, 84, 105, 126, 146, 167, 209, 250, 292, 333, 414, 495, 574, 651, 800, 940, 1069, 1185, 1376, 1521, 1635, 1730, 1900, 2050, 2181, 2294, 2492, 2689, 2840, 2990, 3263, 3545, 3799, 4095]
| }
| },
| "ablc_calib": {
| "BlcTuningPara": {
| "enable": 1,
| "BLC_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "R_Channel": [200, 198.625, 200.562, 201.75, 201.438, 201.5, 202.688, 203.812, 210, 239.438, 64, 64, 64],
| "R_Channel_len": 13,
| "Gr_Channel": [200, 198.5, 200.438, 201.5, 200.938, 200.812, 200.688, 200, 204.625, 227.938, 64, 64, 64],
| "Gr_Channel_len": 13,
| "Gb_Channel": [200, 198.938, 200.688, 201, 200.938, 199.938, 200.062, 197.375, 198.25, 218.875, 64, 64, 64],
| "Gb_Channel_len": 13,
| "B_Channel": [200, 199.062, 200.812, 201.25, 201.375, 200.625, 201.938, 201, 203.062, 229.5, 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": 1,
| "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": [8, 8, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr1_len": 9,
| "min_grad_thr2": [4, 4, 8, 8, 8, 8, 8, 8, 8],
| "min_grad_thr2_len": 9,
| "k_grad1": [32, 32, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_len": 9,
| "k_grad2": [1, 1, 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": [32, 32, 64, 64, 64, 64, 64, 64, 64],
| "k_grad1_dark_len": 9,
| "k_grad2_dark": [1, 1, 2, 2, 2, 2, 2, 2, 2],
| "k_grad2_dark_len": 9,
| "min_grad_thr_dark1": [8, 8, 16, 16, 16, 16, 16, 16, 16],
| "min_grad_thr_dark1_len": 9,
| "min_grad_thr_dark2": [4, 4, 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.25, 1.25, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.5, 1.4, 1.3, 1.2, 1.2, 1.2, 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": 0,
| "Single_enable": 0,
| "Double_enable": 0,
| "Triple_enable": 0,
| "Fast_Data": {
| "ISO": [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
| "ISO_len": 13,
| "Single_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Single_level_len": 13,
| "Double_level": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Double_level_len": 13,
| "Triple_level": [0, 0, 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, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "fix_set": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set1": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "set1": {
| "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": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_line_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "rb_line_mad_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_line_mad_fac": [4, 4, 4, 4, 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": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_pg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "g_rnd_thr": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_rg_fac": [32, 32, 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": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_ro_lim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_sw_mindis": [20, 20, 12, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [20, 20, 12, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "sw_dis_scale_max": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_line_thr": [20, 20, 12, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0],
| "g_line_thr": [20, 20, 12, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_mad_fac": [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_pg_fac": [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_pg_fac": [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "rb_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_rnd_offs": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
| "rb_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_ro_lim": [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| }
| },
| "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": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "g_line_thr": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_line_mad_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 2, 1, 1, 2, 2, 2, 2, 2, 2],
| "g_pg_fac": [3, 3, 3, 3, 2, 1, 1, 2, 2, 2, 2, 2, 2]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [4, 4, 4, 4, 3, 2, 2, 4, 4, 4, 4, 4, 4],
| "g_rnd_thr": [4, 4, 4, 4, 3, 2, 2, 4, 4, 4, 4, 4, 4],
| "rb_rnd_offs": [2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2],
| "g_rnd_offs": [2, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_rg_fac": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 1],
| "g_ro_lim": [2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 1]
| }
| }
| },
| "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": 1,
| "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": [0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625, 0.00390625],
| "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": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "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": 1,
| "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": "3840x2160",
| "lsc_sect_size_x": [240, 240, 240, 240, 240, 240, 240, 240],
| "lsc_sect_size_y": [135, 135, 135, 135, 135, 135, 135, 135]
| }],
| "resolutionAll_len": 1
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [1.0267, 4.0912],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_70"
| }, {
| "name": "A_30"
| }],
| "tableUsed_len": 3,
| "gains": [1, 6, 10, 16],
| "gains_len": 4,
| "vig": [100, 100, 50, 30],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.7502, 3.1038],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_70"
| }, {
| "name": "CWF_30"
| }],
| "tableUsed_len": 3,
| "gains": [1, 6, 10, 16],
| "gains_len": 4,
| "vig": [100, 100, 50, 30],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.7247, 2.1188],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_70"
| }, {
| "name": "D50_30"
| }],
| "tableUsed_len": 3,
| "gains": [1, 6, 10, 16],
| "gains_len": 4,
| "vig": [100, 100, 50, 30],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [2.1145, 1.9082],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_70"
| }, {
| "name": "D65_30"
| }],
| "tableUsed_len": 3,
| "gains": [1, 6, 10, 16],
| "gains_len": 4,
| "vig": [100, 100, 50, 30],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [2.1582, 1.714],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_70"
| }, {
| "name": "D75_30"
| }],
| "tableUsed_len": 3,
| "gains": [1, 6, 10, 16],
| "gains_len": 4,
| "vig": [100, 100, 50, 30],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [1.0263, 4.0569],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_70"
| }, {
| "name": "HZ_30"
| }],
| "tableUsed_len": 3,
| "gains": [1, 6, 10, 16],
| "gains_len": 4,
| "vig": [100, 100, 50, 30],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.4941, 2.7772],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_70"
| }, {
| "name": "TL84_30"
| }],
| "tableUsed_len": 3,
| "gains": [1, 6, 10, 16],
| "gains_len": 4,
| "vig": [100, 100, 50, 30],
| "vig_len": 4
| }],
| "illAll_len": 7
| },
| "tbl": {
| "tableAll": [{
| "name": "3840x2160_A_100",
| "resolution": "3840x2160",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5788, 3162, 2148, 1812, 1619, 1472, 1383, 1324, 1316, 1316, 1361, 1435, 1567, 1742, 2063, 2957, 5336, 4776, 2754, 1974, 1716, 1518, 1394, 1306, 1262, 1242, 1246, 1284, 1361, 1475, 1650, 1903, 2577, 4350, 4042, 2431, 1887, 1622, 1447, 1324, 1249, 1207, 1184, 1190, 1235, 1301, 1417, 1581, 1788, 2300, 3732, 3539, 2239, 1812, 1549, 1400, 1281, 1196, 1150, 1138, 1148, 1188, 1267, 1361, 1508, 1734, 2115, 3348, 3222, 2108, 1738, 1508, 1347, 1235, 1160, 1109, 1095, 1109, 1148, 1222, 1316, 1472, 1670, 1997, 3049, 3022, 2021, 1695, 1478, 1316, 1202, 1131, 1081, 1061, 1074, 1120, 1188, 1286, 1429, 1638, 1929, 2870, 2882, 1974, 1662, 1456, 1294, 1180, 1105, 1057, 1036, 1049, 1096, 1166, 1267, 1411, 1603, 1882, 2721, 2788, 1963, 1646, 1429, 1286, 1174, 1102, 1048, 1030, 1043, 1081, 1158, 1256, 1394, 1596, 1871, 2700, 2799, 1951, 1654, 1432, 1289, 1180, 1095, 1048, 1024, 1041, 1084, 1156, 1256, 1394, 1600, 1876, 2668, 2846, 1963, 1666, 1441, 1298, 1184, 1111, 1051, 1036, 1049, 1089, 1164, 1267, 1408, 1607, 1887, 2721, 2894, 2003, 1678, 1469, 1311, 1207, 1125, 1076, 1057, 1069, 1112, 1180, 1277, 1417, 1630, 1935, 2834, 3133, 2063, 1729, 1498, 1350, 1226, 1152, 1107, 1089, 1098, 1136, 1205, 1308, 1463, 1662, 1985, 3036, 3381, 2182, 1797, 1559, 1391, 1274, 1192, 1140, 1125, 1135, 1178, 1251, 1355, 1504, 1725, 2108, 3348, 3816, 2347, 1851, 1615, 1441, 1316, 1246, 1188, 1178, 1186, 1222, 1301, 1405, 1563, 1788, 2292, 3753, 4407, 2627, 1957, 1695, 1508, 1385, 1298, 1249, 1226, 1240, 1281, 1355, 1475, 1642, 1882, 2548, 4350, 5464, 2983, 2095, 1802, 1600, 1453, 1366, 1313, 1294, 1311, 1352, 1426, 1549, 1729, 2045, 2970, 5336, 7115, 3595, 2339, 1908, 1703, 1549, 1459, 1402, 1374, 1380, 1432, 1521, 1666, 1846, 2331, 3449, 6762]
| },
| "lsc_samples_greenR": {
| "uCoeff": [5188, 2906, 2042, 1708, 1560, 1429, 1352, 1297, 1290, 1290, 1329, 1395, 1506, 1684, 1956, 2757, 4733, 4194, 2520, 1873, 1644, 1471, 1360, 1288, 1242, 1229, 1231, 1269, 1329, 1441, 1595, 1796, 2415, 3913, 3629, 2289, 1791, 1556, 1409, 1299, 1233, 1187, 1177, 1185, 1214, 1278, 1368, 1516, 1712, 2149, 3384, 3198, 2085, 1712, 1513, 1357, 1264, 1189, 1150, 1126, 1137, 1169, 1240, 1334, 1465, 1644, 1995, 3045, 2955, 1984, 1668, 1453, 1317, 1231, 1156, 1103, 1088, 1101, 1133, 1195, 1288, 1418, 1606, 1898, 2790, 2779, 1908, 1633, 1435, 1297, 1195, 1124, 1078, 1056, 1064, 1103, 1171, 1260, 1387, 1570, 1819, 2623, 2694, 1883, 1595, 1415, 1271, 1175, 1103, 1061, 1032, 1045, 1089, 1152, 1251, 1371, 1543, 1791, 2475, 2594, 1863, 1588, 1406, 1264, 1167, 1098, 1044, 1024, 1045, 1076, 1152, 1233, 1352, 1543, 1778, 2449, 2575, 1853, 1588, 1406, 1267, 1165, 1094, 1044, 1032, 1044, 1083, 1143, 1237, 1357, 1533, 1769, 2449, 2633, 1868, 1603, 1406, 1273, 1175, 1103, 1053, 1039, 1049, 1089, 1148, 1246, 1363, 1543, 1791, 2493, 2694, 1903, 1621, 1435, 1292, 1197, 1117, 1078, 1053, 1063, 1103, 1171, 1264, 1384, 1567, 1824, 2594, 2870, 1962, 1660, 1459, 1319, 1222, 1148, 1101, 1083, 1091, 1130, 1191, 1288, 1415, 1599, 1883, 2736, 3085, 2054, 1712, 1500, 1360, 1257, 1179, 1137, 1121, 1132, 1169, 1227, 1322, 1462, 1660, 1995, 3032, 3485, 2203, 1769, 1556, 1398, 1304, 1233, 1183, 1171, 1175, 1212, 1271, 1373, 1516, 1721, 2155, 3384, 4049, 2449, 1863, 1629, 1468, 1355, 1276, 1233, 1220, 1227, 1267, 1332, 1432, 1585, 1796, 2382, 3935, 4864, 2790, 1984, 1729, 1550, 1418, 1347, 1295, 1273, 1295, 1322, 1387, 1503, 1656, 1924, 2694, 4765, 6090, 3288, 2224, 1819, 1644, 1490, 1418, 1376, 1355, 1357, 1398, 1484, 1588, 1773, 2168, 3213, 6144]
| },
| "lsc_samples_greenB": {
| "uCoeff": [5355, 2985, 2057, 1732, 1566, 1429, 1346, 1306, 1280, 1292, 1344, 1397, 1525, 1678, 1981, 2828, 4940, 4412, 2579, 1896, 1654, 1486, 1367, 1292, 1246, 1222, 1233, 1262, 1344, 1446, 1601, 1822, 2444, 4102, 3751, 2307, 1817, 1576, 1423, 1314, 1235, 1189, 1169, 1181, 1224, 1285, 1389, 1535, 1741, 2199, 3472, 3293, 2139, 1754, 1525, 1365, 1268, 1195, 1146, 1131, 1135, 1177, 1239, 1339, 1477, 1694, 2039, 3145, 3037, 2027, 1698, 1480, 1339, 1228, 1156, 1110, 1091, 1099, 1137, 1203, 1297, 1434, 1624, 1917, 2863, 2840, 1965, 1647, 1443, 1299, 1203, 1122, 1082, 1055, 1071, 1108, 1183, 1271, 1409, 1598, 1866, 2708, 2729, 1906, 1616, 1429, 1289, 1175, 1101, 1063, 1039, 1047, 1093, 1167, 1257, 1378, 1573, 1822, 2588, 2687, 1896, 1609, 1414, 1273, 1173, 1103, 1049, 1027, 1042, 1077, 1152, 1244, 1365, 1545, 1813, 2541, 2637, 1896, 1605, 1409, 1273, 1171, 1091, 1047, 1024, 1039, 1079, 1152, 1246, 1367, 1552, 1813, 2514, 2677, 1906, 1620, 1417, 1271, 1183, 1106, 1055, 1033, 1049, 1088, 1146, 1250, 1384, 1562, 1822, 2569, 2762, 1938, 1643, 1437, 1297, 1187, 1115, 1069, 1050, 1066, 1101, 1171, 1262, 1400, 1583, 1861, 2698, 2972, 1993, 1674, 1467, 1326, 1216, 1142, 1098, 1079, 1093, 1137, 1189, 1292, 1432, 1620, 1922, 2840, 3160, 2081, 1719, 1502, 1367, 1253, 1173, 1133, 1117, 1128, 1169, 1228, 1316, 1461, 1670, 2033, 3090, 3543, 2241, 1780, 1559, 1400, 1304, 1222, 1173, 1150, 1167, 1207, 1273, 1375, 1508, 1736, 2152, 3405, 4102, 2479, 1876, 1631, 1467, 1344, 1271, 1226, 1205, 1222, 1259, 1323, 1432, 1587, 1789, 2394, 3986, 4940, 2806, 1987, 1719, 1538, 1414, 1331, 1289, 1255, 1282, 1314, 1386, 1499, 1658, 1943, 2729, 4838, 6377, 3293, 2248, 1808, 1627, 1480, 1417, 1354, 1339, 1352, 1375, 1449, 1580, 1780, 2165, 3218, 6263]
| },
| "lsc_samples_blue": {
| "uCoeff": [4411, 2688, 1933, 1687, 1536, 1410, 1323, 1284, 1284, 1284, 1313, 1387, 1458, 1638, 1850, 2493, 4195, 3823, 2389, 1792, 1608, 1458, 1355, 1293, 1238, 1220, 1229, 1256, 1334, 1422, 1550, 1738, 2234, 3584, 3308, 2150, 1738, 1536, 1399, 1293, 1229, 1186, 1170, 1186, 1211, 1274, 1365, 1496, 1654, 2048, 3186, 2966, 2000, 1687, 1470, 1344, 1256, 1195, 1139, 1139, 1132, 1162, 1220, 1313, 1446, 1608, 1911, 2731, 2775, 1911, 1608, 1446, 1303, 1220, 1155, 1103, 1089, 1096, 1124, 1186, 1274, 1399, 1564, 1792, 2568, 2606, 1830, 1578, 1410, 1274, 1195, 1117, 1089, 1062, 1069, 1103, 1162, 1247, 1355, 1509, 1738, 2389, 2458, 1811, 1564, 1376, 1274, 1170, 1096, 1055, 1036, 1043, 1096, 1139, 1229, 1334, 1496, 1703, 2325, 2389, 1792, 1536, 1387, 1265, 1155, 1096, 1036, 1024, 1030, 1069, 1132, 1220, 1334, 1470, 1703, 2325, 2325, 1773, 1536, 1399, 1256, 1162, 1075, 1030, 1024, 1030, 1062, 1124, 1203, 1313, 1458, 1703, 2294, 2423, 1792, 1550, 1376, 1247, 1162, 1089, 1049, 1024, 1030, 1062, 1132, 1220, 1334, 1470, 1703, 2325, 2458, 1792, 1564, 1399, 1265, 1178, 1103, 1069, 1043, 1043, 1089, 1139, 1220, 1334, 1496, 1720, 2357, 2646, 1850, 1593, 1422, 1303, 1186, 1124, 1082, 1069, 1075, 1103, 1170, 1256, 1365, 1522, 1755, 2493, 2775, 1933, 1623, 1458, 1334, 1229, 1155, 1117, 1096, 1103, 1139, 1195, 1274, 1410, 1550, 1850, 2646, 3128, 2073, 1687, 1470, 1355, 1256, 1195, 1155, 1139, 1155, 1170, 1229, 1323, 1434, 1608, 1977, 2966, 3584, 2234, 1755, 1550, 1422, 1313, 1238, 1195, 1178, 1195, 1238, 1274, 1355, 1496, 1670, 2150, 3441, 4301, 2493, 1870, 1623, 1470, 1376, 1284, 1256, 1238, 1247, 1265, 1344, 1434, 1578, 1792, 2423, 4001, 5376, 2916, 2073, 1738, 1564, 1434, 1355, 1293, 1293, 1313, 1323, 1387, 1509, 1670, 1977, 2820, 5214]
| }
| }, {
| "name": "3840x2160_A_70",
| "resolution": "3840x2160",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [4359, 2638, 1921, 1682, 1540, 1423, 1350, 1300, 1294, 1293, 1330, 1390, 1495, 1624, 1853, 2483, 4042, 3723, 2357, 1798, 1613, 1460, 1360, 1285, 1247, 1229, 1232, 1265, 1330, 1422, 1557, 1740, 2221, 3416, 3239, 2128, 1739, 1542, 1404, 1301, 1236, 1198, 1177, 1182, 1223, 1280, 1377, 1506, 1657, 2025, 3011, 2899, 1991, 1686, 1485, 1366, 1265, 1188, 1146, 1135, 1144, 1181, 1251, 1331, 1449, 1620, 1892, 2757, 2684, 1897, 1631, 1454, 1321, 1224, 1155, 1107, 1094, 1107, 1144, 1211, 1293, 1422, 1573, 1808, 2554, 2548, 1835, 1599, 1431, 1295, 1194, 1128, 1080, 1061, 1073, 1117, 1181, 1267, 1387, 1551, 1760, 2432, 2451, 1802, 1575, 1414, 1276, 1174, 1103, 1057, 1036, 1049, 1095, 1160, 1251, 1373, 1524, 1726, 2327, 2384, 1796, 1563, 1391, 1270, 1169, 1101, 1048, 1030, 1043, 1080, 1153, 1242, 1359, 1520, 1720, 2317, 2395, 1787, 1571, 1394, 1273, 1175, 1094, 1048, 1024, 1041, 1083, 1151, 1242, 1359, 1524, 1725, 2294, 2429, 1796, 1580, 1402, 1281, 1178, 1110, 1051, 1036, 1049, 1088, 1159, 1252, 1372, 1529, 1733, 2333, 2460, 1825, 1588, 1425, 1292, 1200, 1123, 1076, 1057, 1069, 1110, 1174, 1260, 1378, 1547, 1770, 2414, 2633, 1869, 1629, 1449, 1327, 1217, 1149, 1106, 1088, 1097, 1133, 1197, 1288, 1417, 1571, 1805, 2559, 2804, 1957, 1681, 1499, 1362, 1261, 1186, 1137, 1123, 1132, 1173, 1239, 1329, 1450, 1620, 1897, 2779, 3106, 2077, 1719, 1543, 1404, 1297, 1236, 1182, 1173, 1180, 1213, 1283, 1371, 1497, 1666, 2033, 3059, 3506, 2281, 1797, 1605, 1459, 1357, 1282, 1238, 1217, 1230, 1266, 1330, 1429, 1559, 1735, 2219, 3465, 4217, 2534, 1896, 1687, 1533, 1414, 1341, 1295, 1278, 1293, 1328, 1389, 1488, 1625, 1855, 2524, 4125, 5288, 2964, 2074, 1763, 1612, 1492, 1420, 1372, 1347, 1352, 1395, 1467, 1580, 1711, 2067, 2854, 5041]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3939, 2444, 1837, 1595, 1489, 1385, 1322, 1275, 1270, 1269, 1301, 1355, 1442, 1575, 1768, 2332, 3620, 3304, 2177, 1715, 1552, 1419, 1329, 1269, 1228, 1217, 1218, 1251, 1301, 1392, 1510, 1653, 2096, 3102, 2935, 2016, 1659, 1485, 1370, 1278, 1221, 1179, 1170, 1177, 1203, 1258, 1333, 1450, 1594, 1906, 2756, 2645, 1869, 1602, 1454, 1327, 1249, 1182, 1146, 1123, 1133, 1162, 1226, 1306, 1411, 1545, 1797, 2531, 2483, 1797, 1571, 1405, 1294, 1220, 1151, 1101, 1087, 1099, 1129, 1186, 1267, 1374, 1519, 1728, 2358, 2363, 1743, 1546, 1392, 1278, 1187, 1121, 1077, 1056, 1063, 1101, 1164, 1243, 1349, 1492, 1670, 2244, 2307, 1727, 1517, 1377, 1255, 1169, 1101, 1061, 1032, 1045, 1088, 1147, 1236, 1337, 1472, 1652, 2138, 2235, 1713, 1513, 1370, 1249, 1162, 1097, 1044, 1024, 1045, 1075, 1147, 1220, 1321, 1474, 1644, 2123, 2222, 1706, 1513, 1370, 1252, 1160, 1093, 1044, 1032, 1044, 1082, 1139, 1224, 1326, 1466, 1637, 2125, 2265, 1717, 1526, 1370, 1258, 1170, 1102, 1053, 1039, 1049, 1088, 1144, 1232, 1331, 1474, 1654, 2157, 2307, 1743, 1539, 1395, 1274, 1190, 1115, 1078, 1053, 1063, 1101, 1165, 1248, 1349, 1493, 1679, 2230, 2432, 1787, 1569, 1414, 1298, 1213, 1145, 1100, 1082, 1090, 1127, 1183, 1269, 1374, 1517, 1722, 2330, 2581, 1854, 1609, 1447, 1333, 1245, 1174, 1134, 1119, 1129, 1164, 1216, 1298, 1413, 1565, 1806, 2541, 2859, 1963, 1650, 1491, 1365, 1286, 1224, 1178, 1167, 1170, 1203, 1255, 1342, 1456, 1610, 1924, 2784, 3244, 2142, 1719, 1548, 1423, 1330, 1261, 1223, 1211, 1217, 1253, 1308, 1390, 1510, 1663, 2089, 3160, 3786, 2385, 1806, 1625, 1489, 1382, 1323, 1278, 1258, 1278, 1300, 1354, 1447, 1562, 1757, 2311, 3715, 4570, 2733, 1982, 1688, 1561, 1439, 1382, 1348, 1330, 1330, 1364, 1434, 1513, 1650, 1937, 2676, 4608]
| },
| "lsc_samples_greenB": {
| "uCoeff": [4056, 2504, 1849, 1616, 1494, 1385, 1317, 1283, 1260, 1271, 1315, 1356, 1458, 1570, 1788, 2385, 3765, 3461, 2222, 1734, 1561, 1432, 1336, 1272, 1232, 1210, 1220, 1244, 1315, 1397, 1516, 1674, 2118, 3238, 3025, 2030, 1681, 1502, 1382, 1292, 1223, 1181, 1163, 1174, 1212, 1265, 1352, 1467, 1618, 1946, 2820, 2716, 1912, 1637, 1464, 1334, 1252, 1187, 1142, 1128, 1131, 1170, 1225, 1311, 1422, 1587, 1832, 2606, 2544, 1832, 1597, 1429, 1314, 1217, 1151, 1108, 1090, 1097, 1133, 1193, 1275, 1388, 1534, 1743, 2413, 2409, 1789, 1558, 1400, 1279, 1195, 1119, 1081, 1055, 1070, 1106, 1176, 1253, 1369, 1516, 1709, 2309, 2334, 1746, 1535, 1389, 1272, 1169, 1099, 1063, 1039, 1047, 1092, 1161, 1242, 1343, 1498, 1677, 2225, 2307, 1740, 1531, 1377, 1258, 1168, 1102, 1049, 1027, 1042, 1076, 1147, 1230, 1333, 1475, 1672, 2194, 2270, 1741, 1528, 1373, 1258, 1166, 1090, 1047, 1024, 1039, 1078, 1148, 1233, 1335, 1482, 1673, 2175, 2299, 1749, 1540, 1380, 1256, 1177, 1105, 1055, 1033, 1049, 1087, 1142, 1236, 1350, 1490, 1680, 2216, 2359, 1772, 1558, 1397, 1279, 1181, 1113, 1069, 1050, 1066, 1099, 1165, 1246, 1363, 1506, 1709, 2310, 2510, 1812, 1581, 1421, 1305, 1207, 1139, 1097, 1078, 1092, 1134, 1182, 1273, 1390, 1535, 1754, 2409, 2637, 1876, 1615, 1449, 1340, 1241, 1168, 1130, 1115, 1126, 1164, 1217, 1293, 1412, 1573, 1837, 2585, 2902, 1993, 1659, 1494, 1366, 1286, 1213, 1168, 1146, 1162, 1199, 1257, 1344, 1449, 1622, 1922, 2800, 3283, 2165, 1730, 1550, 1422, 1319, 1257, 1216, 1197, 1213, 1245, 1300, 1390, 1512, 1658, 2099, 3197, 3841, 2397, 1808, 1616, 1478, 1378, 1308, 1272, 1241, 1266, 1293, 1353, 1444, 1564, 1772, 2338, 3767, 4771, 2736, 2001, 1679, 1547, 1430, 1381, 1328, 1315, 1326, 1343, 1403, 1506, 1656, 1935, 2680, 4691]
| },
| "lsc_samples_blue": {
| "uCoeff": [3395, 2280, 1750, 1578, 1468, 1368, 1296, 1263, 1264, 1263, 1287, 1348, 1400, 1537, 1683, 2133, 3244, 3037, 2076, 1649, 1521, 1407, 1325, 1273, 1225, 1208, 1216, 1239, 1306, 1376, 1472, 1605, 1956, 2865, 2700, 1907, 1615, 1467, 1361, 1272, 1217, 1178, 1164, 1178, 1200, 1255, 1330, 1433, 1546, 1827, 2610, 2472, 1801, 1581, 1416, 1315, 1241, 1187, 1135, 1136, 1128, 1156, 1207, 1287, 1395, 1515, 1730, 2297, 2347, 1739, 1520, 1399, 1281, 1210, 1150, 1101, 1088, 1094, 1121, 1177, 1254, 1357, 1483, 1643, 2190, 2231, 1679, 1499, 1370, 1256, 1187, 1115, 1088, 1062, 1068, 1101, 1156, 1231, 1321, 1440, 1605, 2065, 2125, 1668, 1490, 1341, 1258, 1164, 1095, 1055, 1036, 1043, 1095, 1134, 1216, 1304, 1431, 1580, 2023, 2077, 1655, 1468, 1353, 1250, 1150, 1095, 1036, 1024, 1030, 1068, 1128, 1208, 1305, 1410, 1582, 2027, 2029, 1640, 1468, 1364, 1242, 1157, 1074, 1030, 1024, 1030, 1061, 1121, 1192, 1286, 1400, 1583, 2005, 2103, 1655, 1480, 1343, 1233, 1157, 1088, 1049, 1024, 1030, 1061, 1128, 1208, 1305, 1410, 1582, 2027, 2125, 1653, 1490, 1362, 1249, 1172, 1101, 1069, 1043, 1043, 1088, 1134, 1207, 1304, 1431, 1594, 2048, 2261, 1696, 1512, 1381, 1283, 1179, 1121, 1081, 1069, 1074, 1101, 1163, 1239, 1330, 1451, 1618, 2145, 2347, 1756, 1533, 1410, 1309, 1218, 1150, 1115, 1095, 1101, 1135, 1186, 1254, 1367, 1471, 1689, 2249, 2593, 1859, 1581, 1416, 1325, 1241, 1187, 1151, 1136, 1151, 1163, 1216, 1296, 1384, 1515, 1783, 2472, 2902, 1973, 1629, 1480, 1381, 1291, 1226, 1187, 1171, 1187, 1226, 1255, 1321, 1433, 1559, 1907, 2798, 3381, 2156, 1713, 1534, 1418, 1344, 1265, 1241, 1225, 1233, 1247, 1315, 1386, 1496, 1649, 2102, 3165, 4070, 2452, 1861, 1621, 1492, 1389, 1325, 1272, 1272, 1290, 1296, 1348, 1444, 1564, 1785, 2379, 3957]
| }
| }, {
| "name": "3840x2160_A_30",
| "resolution": "3840x2160",
| "illumination": "A",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [2453, 1938, 1619, 1510, 1434, 1358, 1307, 1268, 1264, 1262, 1290, 1331, 1398, 1466, 1574, 1851, 2318, 2318, 1828, 1562, 1477, 1383, 1315, 1258, 1227, 1212, 1214, 1239, 1289, 1352, 1434, 1522, 1746, 2171, 2167, 1723, 1541, 1435, 1346, 1270, 1218, 1187, 1168, 1172, 1206, 1251, 1323, 1407, 1482, 1658, 2050, 2047, 1661, 1518, 1400, 1321, 1243, 1178, 1140, 1130, 1138, 1171, 1231, 1291, 1371, 1469, 1596, 1969, 1967, 1616, 1488, 1382, 1287, 1209, 1149, 1104, 1092, 1104, 1138, 1197, 1262, 1355, 1444, 1556, 1893, 1916, 1586, 1472, 1368, 1268, 1183, 1124, 1079, 1060, 1072, 1114, 1171, 1243, 1331, 1434, 1534, 1848, 1877, 1572, 1458, 1357, 1253, 1166, 1101, 1056, 1036, 1048, 1093, 1153, 1230, 1322, 1418, 1519, 1803, 1846, 1572, 1452, 1340, 1248, 1162, 1099, 1048, 1030, 1043, 1079, 1147, 1223, 1312, 1418, 1519, 1805, 1856, 1568, 1459, 1343, 1251, 1167, 1092, 1048, 1024, 1041, 1082, 1145, 1223, 1313, 1422, 1524, 1795, 1874, 1572, 1466, 1349, 1258, 1171, 1108, 1051, 1036, 1049, 1086, 1152, 1232, 1323, 1425, 1528, 1815, 1882, 1588, 1469, 1367, 1267, 1190, 1120, 1075, 1057, 1068, 1108, 1166, 1238, 1327, 1436, 1549, 1855, 1966, 1610, 1495, 1383, 1296, 1205, 1144, 1104, 1087, 1095, 1129, 1186, 1261, 1357, 1450, 1566, 1922, 2035, 1657, 1526, 1420, 1323, 1243, 1178, 1134, 1120, 1129, 1166, 1223, 1294, 1379, 1479, 1616, 2021, 2159, 1717, 1542, 1447, 1354, 1272, 1222, 1175, 1167, 1173, 1201, 1260, 1325, 1410, 1503, 1689, 2134, 2306, 1821, 1583, 1485, 1393, 1320, 1261, 1224, 1205, 1216, 1246, 1296, 1368, 1449, 1538, 1781, 2284, 2555, 1935, 1631, 1533, 1443, 1361, 1307, 1271, 1257, 1269, 1296, 1340, 1406, 1485, 1603, 1929, 2511, 2851, 2123, 1720, 1569, 1492, 1416, 1367, 1332, 1312, 1314, 1346, 1395, 1466, 1531, 1716, 2061, 2745]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2273, 1829, 1563, 1445, 1393, 1326, 1283, 1246, 1243, 1240, 1264, 1301, 1356, 1431, 1517, 1765, 2137, 2117, 1719, 1505, 1430, 1349, 1288, 1243, 1210, 1201, 1201, 1227, 1264, 1327, 1398, 1461, 1671, 2020, 2011, 1653, 1484, 1390, 1317, 1250, 1205, 1169, 1161, 1167, 1188, 1232, 1286, 1362, 1436, 1583, 1918, 1908, 1580, 1455, 1374, 1287, 1228, 1172, 1140, 1119, 1128, 1154, 1208, 1269, 1340, 1413, 1533, 1846, 1853, 1549, 1442, 1341, 1263, 1205, 1145, 1099, 1085, 1097, 1124, 1174, 1239, 1315, 1402, 1502, 1782, 1808, 1522, 1431, 1336, 1252, 1177, 1118, 1076, 1055, 1063, 1098, 1155, 1221, 1299, 1389, 1472, 1738, 1790, 1519, 1413, 1326, 1233, 1161, 1099, 1060, 1032, 1045, 1086, 1140, 1216, 1292, 1377, 1466, 1690, 1756, 1514, 1412, 1322, 1229, 1155, 1095, 1044, 1024, 1045, 1074, 1141, 1203, 1280, 1381, 1464, 1688, 1751, 1510, 1414, 1323, 1233, 1154, 1091, 1044, 1032, 1044, 1081, 1133, 1207, 1284, 1376, 1461, 1692, 1774, 1517, 1422, 1322, 1237, 1162, 1100, 1053, 1039, 1049, 1086, 1138, 1214, 1288, 1381, 1472, 1709, 1790, 1531, 1430, 1341, 1251, 1181, 1113, 1077, 1053, 1062, 1099, 1158, 1227, 1302, 1394, 1485, 1744, 1848, 1553, 1449, 1354, 1270, 1201, 1140, 1098, 1081, 1089, 1123, 1173, 1244, 1320, 1408, 1508, 1788, 1908, 1587, 1471, 1376, 1298, 1228, 1166, 1131, 1117, 1126, 1157, 1202, 1267, 1348, 1437, 1555, 1886, 2025, 1642, 1491, 1405, 1320, 1262, 1211, 1170, 1161, 1163, 1192, 1234, 1300, 1376, 1461, 1617, 1984, 2170, 1732, 1527, 1440, 1362, 1296, 1242, 1210, 1200, 1205, 1234, 1277, 1335, 1410, 1487, 1699, 2127, 2348, 1845, 1568, 1485, 1407, 1334, 1292, 1255, 1239, 1255, 1271, 1309, 1373, 1438, 1534, 1800, 2314, 2544, 1992, 1659, 1514, 1451, 1372, 1335, 1310, 1296, 1295, 1319, 1367, 1412, 1486, 1630, 1960, 2560]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2323, 1863, 1571, 1460, 1397, 1326, 1278, 1253, 1234, 1242, 1276, 1302, 1369, 1427, 1531, 1795, 2199, 2192, 1747, 1518, 1436, 1360, 1294, 1246, 1214, 1195, 1203, 1221, 1276, 1331, 1402, 1476, 1684, 2086, 2057, 1662, 1499, 1404, 1328, 1262, 1206, 1171, 1154, 1164, 1197, 1238, 1302, 1375, 1454, 1608, 1951, 1947, 1608, 1482, 1383, 1294, 1232, 1177, 1136, 1123, 1126, 1161, 1207, 1273, 1348, 1444, 1556, 1886, 1888, 1572, 1462, 1361, 1281, 1203, 1145, 1105, 1088, 1095, 1128, 1181, 1247, 1327, 1414, 1512, 1813, 1835, 1555, 1440, 1342, 1253, 1184, 1116, 1080, 1054, 1069, 1103, 1166, 1230, 1316, 1407, 1499, 1776, 1806, 1532, 1427, 1336, 1249, 1161, 1097, 1062, 1039, 1047, 1090, 1154, 1221, 1297, 1398, 1484, 1742, 1799, 1533, 1427, 1328, 1237, 1161, 1100, 1049, 1027, 1042, 1075, 1141, 1212, 1290, 1383, 1485, 1731, 1780, 1535, 1425, 1325, 1238, 1159, 1089, 1047, 1024, 1039, 1077, 1142, 1215, 1292, 1389, 1487, 1722, 1795, 1539, 1434, 1330, 1235, 1170, 1103, 1055, 1033, 1049, 1086, 1136, 1217, 1305, 1394, 1490, 1744, 1821, 1551, 1445, 1343, 1255, 1172, 1111, 1068, 1050, 1065, 1097, 1158, 1226, 1314, 1404, 1506, 1792, 1894, 1570, 1458, 1360, 1276, 1196, 1135, 1095, 1078, 1091, 1130, 1172, 1248, 1333, 1422, 1530, 1835, 1941, 1602, 1476, 1378, 1304, 1224, 1161, 1127, 1113, 1122, 1157, 1203, 1262, 1347, 1444, 1575, 1911, 2048, 1662, 1498, 1407, 1321, 1262, 1201, 1161, 1141, 1156, 1188, 1236, 1302, 1371, 1470, 1615, 1992, 2190, 1747, 1534, 1441, 1361, 1287, 1237, 1204, 1187, 1200, 1227, 1269, 1335, 1411, 1482, 1705, 2146, 2375, 1852, 1570, 1479, 1398, 1331, 1278, 1250, 1223, 1244, 1264, 1309, 1370, 1439, 1545, 1816, 2339, 2630, 1994, 1672, 1507, 1439, 1364, 1334, 1292, 1283, 1291, 1301, 1341, 1407, 1490, 1628, 1962, 2596]
| },
| "lsc_samples_blue": {
| "uCoeff": [2040, 1736, 1505, 1433, 1377, 1312, 1260, 1236, 1238, 1236, 1252, 1295, 1323, 1402, 1461, 1652, 1975, 1989, 1658, 1459, 1406, 1340, 1284, 1247, 1207, 1193, 1199, 1216, 1268, 1314, 1368, 1429, 1586, 1907, 1889, 1584, 1452, 1376, 1310, 1245, 1201, 1168, 1155, 1168, 1186, 1229, 1284, 1349, 1401, 1533, 1843, 1814, 1536, 1440, 1343, 1277, 1221, 1177, 1130, 1131, 1123, 1147, 1191, 1253, 1326, 1390, 1489, 1718, 1775, 1509, 1403, 1336, 1251, 1196, 1144, 1099, 1086, 1092, 1116, 1166, 1228, 1301, 1375, 1444, 1687, 1730, 1479, 1394, 1317, 1232, 1177, 1111, 1087, 1061, 1067, 1098, 1147, 1210, 1275, 1348, 1427, 1633, 1682, 1478, 1391, 1295, 1236, 1157, 1093, 1054, 1036, 1043, 1093, 1128, 1198, 1263, 1345, 1415, 1621, 1660, 1472, 1376, 1307, 1230, 1144, 1093, 1036, 1024, 1030, 1067, 1123, 1192, 1266, 1331, 1420, 1631, 1634, 1463, 1378, 1317, 1223, 1151, 1073, 1030, 1024, 1030, 1061, 1116, 1178, 1250, 1324, 1422, 1619, 1676, 1472, 1386, 1298, 1215, 1151, 1086, 1049, 1024, 1030, 1061, 1123, 1192, 1266, 1331, 1420, 1631, 1682, 1467, 1391, 1313, 1228, 1164, 1099, 1068, 1043, 1043, 1086, 1128, 1190, 1263, 1345, 1425, 1636, 1748, 1490, 1404, 1326, 1257, 1169, 1118, 1080, 1068, 1073, 1098, 1155, 1217, 1282, 1356, 1436, 1680, 1775, 1521, 1413, 1345, 1277, 1203, 1144, 1112, 1093, 1099, 1130, 1174, 1228, 1309, 1366, 1475, 1720, 1880, 1574, 1440, 1343, 1286, 1221, 1177, 1145, 1131, 1145, 1155, 1198, 1261, 1318, 1390, 1524, 1814, 1994, 1625, 1462, 1386, 1327, 1261, 1209, 1176, 1162, 1176, 1209, 1229, 1276, 1349, 1411, 1584, 1940, 2154, 1707, 1503, 1416, 1349, 1301, 1239, 1222, 1209, 1214, 1224, 1276, 1322, 1386, 1459, 1674, 2051, 2330, 1833, 1579, 1464, 1396, 1330, 1285, 1243, 1245, 1259, 1260, 1295, 1358, 1422, 1528, 1792, 2281]
| }
| }, {
| "name": "3840x2160_CWF_100",
| "resolution": "3840x2160",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5145, 2910, 2048, 1729, 1563, 1425, 1352, 1310, 1323, 1294, 1331, 1406, 1534, 1688, 1971, 2757, 4794, 4305, 2557, 1892, 1668, 1491, 1365, 1286, 1252, 1226, 1241, 1278, 1339, 1450, 1604, 1826, 2425, 3980, 3669, 2293, 1795, 1574, 1421, 1310, 1237, 1188, 1178, 1188, 1216, 1290, 1392, 1534, 1736, 2175, 3458, 3348, 2131, 1758, 1523, 1388, 1267, 1188, 1143, 1122, 1143, 1185, 1252, 1339, 1480, 1688, 2038, 3125, 3057, 2019, 1688, 1470, 1331, 1223, 1153, 1110, 1085, 1104, 1140, 1199, 1310, 1445, 1623, 1944, 2794, 2890, 1935, 1648, 1450, 1306, 1202, 1134, 1087, 1065, 1068, 1119, 1178, 1271, 1397, 1580, 1842, 2620, 2704, 1900, 1629, 1430, 1282, 1185, 1110, 1065, 1037, 1049, 1085, 1153, 1248, 1397, 1557, 1811, 2526, 2637, 1892, 1616, 1421, 1282, 1172, 1099, 1047, 1042, 1039, 1082, 1146, 1241, 1374, 1545, 1819, 2467, 2620, 1883, 1610, 1421, 1278, 1172, 1099, 1047, 1024, 1037, 1079, 1143, 1241, 1374, 1534, 1795, 2496, 2704, 1900, 1623, 1416, 1282, 1182, 1107, 1055, 1034, 1044, 1087, 1159, 1252, 1383, 1568, 1819, 2542, 2757, 1926, 1642, 1460, 1298, 1202, 1125, 1090, 1057, 1065, 1110, 1185, 1267, 1392, 1580, 1850, 2670, 2930, 2009, 1694, 1480, 1327, 1237, 1156, 1104, 1085, 1099, 1143, 1202, 1306, 1425, 1629, 1918, 2851, 3149, 2099, 1736, 1523, 1374, 1263, 1195, 1150, 1119, 1137, 1182, 1237, 1335, 1460, 1668, 2038, 3102, 3545, 2232, 1826, 1592, 1421, 1314, 1234, 1182, 1175, 1169, 1219, 1278, 1383, 1529, 1736, 2186, 3403, 4096, 2467, 1900, 1642, 1486, 1365, 1298, 1234, 1230, 1234, 1282, 1344, 1445, 1586, 1819, 2397, 3980, 5023, 2831, 2028, 1751, 1563, 1445, 1357, 1310, 1290, 1294, 1339, 1406, 1518, 1694, 1953, 2740, 4794, 6490, 3375, 2268, 1842, 1654, 1529, 1445, 1374, 1352, 1379, 1421, 1496, 1610, 1773, 2197, 3221, 6392]
| },
| "lsc_samples_greenR": {
| "uCoeff": [5099, 2911, 2054, 1731, 1560, 1414, 1342, 1306, 1281, 1297, 1330, 1379, 1512, 1680, 1956, 2728, 4832, 4298, 2549, 1886, 1643, 1476, 1367, 1284, 1238, 1228, 1232, 1266, 1330, 1436, 1593, 1808, 2393, 4018, 3678, 2296, 1799, 1573, 1411, 1299, 1220, 1183, 1170, 1185, 1216, 1279, 1377, 1518, 1723, 2143, 3361, 3286, 2106, 1735, 1515, 1367, 1266, 1185, 1141, 1120, 1139, 1175, 1238, 1330, 1464, 1665, 2014, 3080, 2957, 1987, 1673, 1464, 1330, 1224, 1150, 1100, 1094, 1100, 1137, 1198, 1288, 1419, 1604, 1905, 2779, 2801, 1910, 1628, 1430, 1299, 1194, 1122, 1082, 1058, 1068, 1112, 1179, 1264, 1392, 1583, 1830, 2650, 2679, 1876, 1621, 1411, 1279, 1183, 1107, 1053, 1033, 1047, 1089, 1150, 1243, 1367, 1540, 1782, 2515, 2650, 1862, 1607, 1400, 1270, 1168, 1097, 1041, 1024, 1041, 1079, 1148, 1234, 1349, 1534, 1782, 2489, 2612, 1867, 1597, 1395, 1266, 1168, 1097, 1041, 1034, 1037, 1081, 1146, 1236, 1354, 1528, 1786, 2464, 2622, 1872, 1600, 1416, 1277, 1177, 1105, 1053, 1041, 1053, 1086, 1152, 1234, 1364, 1550, 1799, 2558, 2708, 1910, 1639, 1438, 1299, 1196, 1125, 1075, 1055, 1064, 1100, 1168, 1262, 1385, 1570, 1835, 2612, 2899, 1966, 1661, 1458, 1327, 1220, 1148, 1099, 1081, 1090, 1129, 1194, 1288, 1416, 1600, 1905, 2790, 3106, 2059, 1719, 1497, 1354, 1253, 1187, 1136, 1120, 1132, 1170, 1220, 1323, 1464, 1658, 2009, 3018, 3504, 2220, 1786, 1566, 1411, 1293, 1230, 1183, 1162, 1179, 1214, 1270, 1369, 1524, 1707, 2143, 3391, 4130, 2473, 1876, 1628, 1470, 1359, 1277, 1236, 1208, 1224, 1253, 1330, 1422, 1580, 1790, 2385, 4018, 4896, 2790, 1982, 1723, 1556, 1419, 1330, 1288, 1279, 1288, 1327, 1398, 1500, 1669, 1930, 2698, 4864, 6265, 3301, 2247, 1817, 1643, 1500, 1411, 1364, 1347, 1374, 1403, 1470, 1580, 1764, 2187, 3159, 6110]
| },
| "lsc_samples_greenB": {
| "uCoeff": [5335, 2910, 2068, 1732, 1560, 1427, 1346, 1292, 1283, 1289, 1334, 1397, 1515, 1677, 1958, 2758, 4941, 4331, 2565, 1888, 1647, 1472, 1363, 1285, 1237, 1225, 1235, 1265, 1334, 1424, 1587, 1813, 2414, 4045, 3756, 2286, 1809, 1560, 1416, 1299, 1227, 1188, 1169, 1178, 1215, 1274, 1371, 1521, 1724, 2159, 3425, 3272, 2140, 1745, 1509, 1368, 1259, 1186, 1138, 1126, 1129, 1169, 1233, 1331, 1464, 1670, 2023, 3081, 3017, 2017, 1677, 1467, 1331, 1223, 1150, 1105, 1084, 1101, 1129, 1197, 1285, 1424, 1611, 1912, 2810, 2799, 1943, 1651, 1441, 1296, 1195, 1116, 1080, 1053, 1061, 1105, 1171, 1265, 1408, 1573, 1859, 2668, 2717, 1902, 1618, 1419, 1278, 1176, 1109, 1055, 1033, 1043, 1088, 1149, 1248, 1374, 1557, 1805, 2548, 2639, 1883, 1590, 1419, 1263, 1171, 1086, 1043, 1024, 1031, 1073, 1141, 1235, 1363, 1540, 1791, 2530, 2602, 1888, 1601, 1408, 1267, 1161, 1084, 1038, 1024, 1037, 1076, 1140, 1231, 1353, 1534, 1809, 2479, 2639, 1893, 1604, 1413, 1272, 1172, 1101, 1049, 1024, 1041, 1080, 1152, 1248, 1374, 1534, 1805, 2548, 2758, 1907, 1629, 1435, 1287, 1182, 1107, 1069, 1049, 1059, 1099, 1161, 1256, 1387, 1560, 1831, 2687, 2865, 2001, 1662, 1452, 1312, 1209, 1140, 1091, 1078, 1088, 1126, 1178, 1283, 1416, 1608, 1898, 2768, 3201, 2062, 1720, 1500, 1356, 1248, 1174, 1129, 1107, 1117, 1156, 1219, 1308, 1458, 1651, 2006, 3042, 3540, 2224, 1791, 1570, 1394, 1299, 1223, 1169, 1150, 1167, 1195, 1267, 1366, 1500, 1728, 2147, 3377, 4183, 2454, 1869, 1636, 1464, 1348, 1265, 1219, 1199, 1211, 1246, 1315, 1427, 1573, 1809, 2383, 4001, 4941, 2799, 1979, 1720, 1537, 1402, 1331, 1280, 1259, 1272, 1305, 1376, 1493, 1655, 1927, 2707, 4781, 6187, 3317, 2231, 1818, 1632, 1490, 1400, 1356, 1331, 1341, 1381, 1470, 1577, 1770, 2159, 3201, 6136]
| },
| "lsc_samples_blue": {
| "uCoeff": [4658, 2731, 1980, 1685, 1504, 1406, 1327, 1277, 1264, 1277, 1291, 1373, 1476, 1594, 1885, 2527, 4483, 3895, 2352, 1827, 1605, 1449, 1335, 1277, 1225, 1212, 1218, 1257, 1320, 1414, 1543, 1734, 2241, 3599, 3299, 2140, 1722, 1523, 1381, 1291, 1225, 1188, 1165, 1176, 1212, 1264, 1358, 1466, 1661, 2048, 3126, 2969, 1996, 1673, 1494, 1335, 1244, 1194, 1142, 1121, 1126, 1153, 1225, 1312, 1431, 1594, 1900, 2828, 2731, 1916, 1627, 1431, 1312, 1225, 1137, 1100, 1090, 1090, 1137, 1188, 1270, 1381, 1543, 1814, 2554, 2582, 1842, 1594, 1406, 1284, 1182, 1131, 1070, 1056, 1051, 1115, 1159, 1250, 1350, 1504, 1734, 2449, 2527, 1814, 1563, 1381, 1257, 1170, 1100, 1056, 1033, 1042, 1085, 1137, 1231, 1342, 1513, 1722, 2329, 2424, 1786, 1563, 1373, 1250, 1153, 1095, 1037, 1033, 1033, 1070, 1131, 1225, 1327, 1476, 1685, 2284, 2400, 1786, 1533, 1373, 1250, 1170, 1095, 1037, 1024, 1028, 1065, 1126, 1212, 1335, 1466, 1685, 2307, 2501, 1800, 1563, 1381, 1244, 1153, 1100, 1051, 1033, 1033, 1070, 1126, 1206, 1327, 1485, 1697, 2329, 2527, 1800, 1563, 1397, 1264, 1170, 1110, 1056, 1033, 1056, 1085, 1148, 1231, 1335, 1494, 1722, 2400, 2669, 1842, 1605, 1414, 1298, 1200, 1121, 1080, 1065, 1061, 1115, 1176, 1250, 1358, 1523, 1773, 2527, 2862, 1963, 1638, 1457, 1320, 1237, 1153, 1121, 1100, 1105, 1137, 1194, 1277, 1381, 1573, 1871, 2762, 3210, 2102, 1722, 1494, 1373, 1277, 1200, 1159, 1148, 1142, 1170, 1231, 1305, 1457, 1616, 1980, 3046, 3546, 2329, 1773, 1573, 1414, 1305, 1244, 1200, 1176, 1194, 1237, 1270, 1365, 1504, 1697, 2180, 3443, 4319, 2582, 1871, 1650, 1485, 1381, 1312, 1257, 1231, 1244, 1277, 1342, 1423, 1584, 1827, 2475, 4168, 5398, 3046, 2102, 1697, 1563, 1440, 1373, 1320, 1298, 1320, 1327, 1414, 1533, 1685, 1980, 2897, 5055]
| }
| }, {
| "name": "3840x2160_CWF_70",
| "resolution": "3840x2160",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3909, 2447, 1841, 1613, 1491, 1381, 1322, 1287, 1300, 1272, 1303, 1364, 1466, 1579, 1780, 2332, 3663, 3384, 2205, 1731, 1573, 1436, 1334, 1267, 1238, 1214, 1227, 1259, 1310, 1400, 1518, 1677, 2104, 3150, 2965, 2019, 1663, 1500, 1380, 1288, 1225, 1180, 1171, 1180, 1205, 1270, 1354, 1466, 1614, 1927, 2810, 2757, 1905, 1641, 1462, 1355, 1251, 1181, 1139, 1119, 1139, 1178, 1237, 1311, 1425, 1582, 1831, 2591, 2560, 1826, 1588, 1420, 1307, 1212, 1149, 1108, 1084, 1102, 1136, 1190, 1287, 1398, 1533, 1765, 2361, 2447, 1765, 1559, 1406, 1286, 1194, 1131, 1086, 1065, 1067, 1116, 1171, 1253, 1358, 1501, 1689, 2241, 2314, 1741, 1546, 1390, 1265, 1179, 1108, 1065, 1037, 1049, 1084, 1148, 1233, 1360, 1484, 1668, 2178, 2268, 1737, 1537, 1383, 1266, 1167, 1098, 1047, 1042, 1039, 1081, 1142, 1228, 1341, 1475, 1677, 2137, 2257, 1731, 1532, 1384, 1263, 1167, 1098, 1047, 1024, 1037, 1078, 1139, 1228, 1341, 1466, 1658, 2161, 2320, 1744, 1543, 1379, 1266, 1176, 1106, 1055, 1034, 1044, 1086, 1154, 1238, 1349, 1495, 1677, 2195, 2355, 1762, 1557, 1417, 1280, 1195, 1123, 1089, 1057, 1065, 1108, 1179, 1251, 1356, 1504, 1700, 2288, 2478, 1825, 1599, 1433, 1305, 1227, 1153, 1103, 1084, 1098, 1140, 1194, 1286, 1383, 1543, 1751, 2418, 2629, 1890, 1629, 1467, 1346, 1250, 1189, 1147, 1117, 1134, 1177, 1226, 1310, 1411, 1571, 1841, 2594, 2904, 1986, 1698, 1523, 1385, 1295, 1224, 1177, 1170, 1164, 1210, 1262, 1351, 1468, 1622, 1949, 2798, 3278, 2156, 1750, 1559, 1439, 1339, 1282, 1224, 1221, 1224, 1267, 1319, 1402, 1511, 1682, 2101, 3193, 3900, 2417, 1842, 1643, 1500, 1406, 1333, 1292, 1274, 1277, 1316, 1371, 1460, 1595, 1780, 2346, 3736, 4850, 2798, 2017, 1707, 1570, 1474, 1407, 1346, 1327, 1351, 1385, 1445, 1532, 1650, 1960, 2682, 4782]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3877, 2448, 1846, 1615, 1489, 1372, 1313, 1283, 1261, 1275, 1302, 1340, 1447, 1572, 1768, 2310, 3690, 3379, 2199, 1726, 1551, 1423, 1336, 1265, 1225, 1216, 1219, 1248, 1302, 1388, 1509, 1662, 2079, 3177, 2971, 2022, 1666, 1500, 1371, 1278, 1209, 1175, 1164, 1177, 1205, 1259, 1341, 1452, 1603, 1902, 2739, 2711, 1885, 1621, 1455, 1336, 1251, 1178, 1137, 1117, 1135, 1168, 1224, 1303, 1410, 1563, 1812, 2557, 2484, 1800, 1576, 1415, 1306, 1213, 1146, 1098, 1093, 1098, 1133, 1189, 1267, 1375, 1517, 1734, 2350, 2379, 1744, 1542, 1388, 1279, 1186, 1119, 1081, 1058, 1067, 1110, 1172, 1247, 1354, 1503, 1679, 2264, 2295, 1721, 1539, 1373, 1262, 1177, 1105, 1053, 1033, 1047, 1088, 1145, 1229, 1333, 1469, 1644, 2169, 2278, 1713, 1529, 1364, 1255, 1163, 1096, 1041, 1024, 1041, 1078, 1144, 1221, 1318, 1466, 1647, 2154, 2250, 1718, 1521, 1360, 1251, 1163, 1096, 1041, 1034, 1037, 1080, 1142, 1223, 1323, 1461, 1651, 2136, 2256, 1721, 1523, 1379, 1261, 1172, 1104, 1053, 1041, 1053, 1085, 1147, 1221, 1332, 1480, 1661, 2207, 2317, 1749, 1555, 1397, 1281, 1189, 1123, 1075, 1055, 1064, 1098, 1162, 1246, 1350, 1495, 1688, 2244, 2454, 1790, 1570, 1413, 1305, 1211, 1145, 1098, 1080, 1089, 1126, 1186, 1269, 1375, 1518, 1740, 2371, 2597, 1858, 1615, 1444, 1328, 1241, 1181, 1133, 1118, 1129, 1165, 1210, 1299, 1415, 1563, 1818, 2530, 2873, 1976, 1664, 1500, 1376, 1276, 1221, 1178, 1158, 1174, 1205, 1254, 1338, 1463, 1598, 1915, 2789, 3303, 2161, 1730, 1547, 1424, 1333, 1262, 1226, 1200, 1215, 1240, 1307, 1381, 1506, 1658, 2092, 3221, 3809, 2385, 1804, 1619, 1494, 1383, 1307, 1271, 1264, 1271, 1305, 1364, 1444, 1573, 1762, 2314, 3786, 4693, 2742, 2000, 1687, 1560, 1448, 1376, 1337, 1322, 1346, 1369, 1422, 1506, 1642, 1952, 2635, 4584]
| },
| "lsc_samples_greenB": {
| "uCoeff": [4042, 2447, 1857, 1616, 1489, 1383, 1317, 1271, 1263, 1268, 1306, 1356, 1450, 1570, 1770, 2333, 3766, 3403, 2212, 1728, 1555, 1420, 1332, 1266, 1224, 1213, 1222, 1247, 1306, 1377, 1504, 1666, 2095, 3197, 3029, 2014, 1674, 1488, 1376, 1278, 1215, 1180, 1163, 1171, 1204, 1255, 1336, 1454, 1604, 1914, 2786, 2700, 1912, 1630, 1450, 1337, 1244, 1179, 1134, 1123, 1125, 1162, 1220, 1304, 1410, 1567, 1819, 2558, 2529, 1824, 1579, 1418, 1307, 1212, 1146, 1103, 1083, 1099, 1125, 1188, 1264, 1379, 1523, 1739, 2373, 2378, 1771, 1562, 1398, 1277, 1187, 1114, 1079, 1053, 1060, 1103, 1164, 1248, 1368, 1495, 1703, 2278, 2324, 1743, 1537, 1380, 1261, 1170, 1107, 1055, 1033, 1043, 1087, 1144, 1233, 1340, 1484, 1663, 2195, 2270, 1730, 1514, 1382, 1248, 1166, 1085, 1043, 1024, 1031, 1072, 1137, 1222, 1331, 1471, 1654, 2186, 2243, 1735, 1525, 1372, 1252, 1156, 1083, 1038, 1024, 1037, 1075, 1136, 1218, 1322, 1466, 1670, 2148, 2270, 1738, 1527, 1376, 1257, 1167, 1100, 1049, 1024, 1041, 1079, 1147, 1234, 1341, 1466, 1666, 2199, 2356, 1747, 1546, 1395, 1270, 1176, 1105, 1069, 1049, 1059, 1097, 1156, 1241, 1351, 1487, 1684, 2301, 2428, 1818, 1571, 1408, 1292, 1201, 1137, 1090, 1077, 1087, 1123, 1171, 1265, 1375, 1525, 1735, 2354, 2668, 1860, 1616, 1447, 1330, 1236, 1169, 1127, 1105, 1115, 1151, 1209, 1285, 1410, 1557, 1815, 2548, 2900, 1979, 1668, 1504, 1361, 1281, 1214, 1164, 1146, 1162, 1187, 1251, 1335, 1442, 1615, 1918, 2779, 3342, 2146, 1724, 1554, 1419, 1323, 1251, 1210, 1191, 1202, 1233, 1293, 1386, 1500, 1674, 2090, 3208, 3841, 2392, 1802, 1617, 1477, 1367, 1308, 1264, 1245, 1256, 1284, 1344, 1438, 1562, 1759, 2321, 3726, 4638, 2755, 1988, 1687, 1551, 1439, 1366, 1329, 1308, 1316, 1349, 1422, 1503, 1647, 1930, 2667, 4602]
| },
| "lsc_samples_blue": {
| "uCoeff": [3568, 2312, 1787, 1576, 1440, 1364, 1299, 1257, 1246, 1257, 1267, 1335, 1416, 1500, 1711, 2158, 3445, 3089, 2047, 1678, 1519, 1399, 1306, 1258, 1212, 1201, 1206, 1240, 1293, 1368, 1466, 1602, 1962, 2876, 2693, 1899, 1602, 1456, 1345, 1270, 1213, 1180, 1159, 1169, 1201, 1246, 1324, 1407, 1552, 1827, 2566, 2474, 1798, 1569, 1437, 1307, 1230, 1186, 1138, 1118, 1123, 1147, 1212, 1286, 1381, 1503, 1721, 2369, 2313, 1743, 1536, 1386, 1289, 1214, 1133, 1098, 1089, 1088, 1133, 1179, 1251, 1341, 1465, 1660, 2180, 2212, 1689, 1513, 1366, 1266, 1175, 1128, 1069, 1056, 1051, 1113, 1153, 1234, 1316, 1436, 1601, 2111, 2178, 1671, 1489, 1346, 1242, 1164, 1098, 1056, 1033, 1042, 1084, 1133, 1217, 1311, 1446, 1595, 2026, 2104, 1650, 1491, 1340, 1236, 1148, 1094, 1037, 1033, 1033, 1069, 1127, 1213, 1298, 1416, 1567, 1996, 2087, 1651, 1466, 1340, 1236, 1165, 1094, 1037, 1024, 1028, 1064, 1122, 1201, 1306, 1407, 1568, 2015, 2163, 1662, 1491, 1347, 1230, 1148, 1099, 1051, 1033, 1033, 1069, 1122, 1195, 1298, 1423, 1577, 2030, 2178, 1659, 1489, 1360, 1248, 1164, 1108, 1056, 1033, 1056, 1084, 1143, 1217, 1305, 1430, 1595, 2081, 2279, 1689, 1522, 1374, 1279, 1192, 1118, 1079, 1065, 1060, 1113, 1169, 1234, 1323, 1452, 1633, 2170, 2412, 1780, 1546, 1409, 1297, 1226, 1149, 1119, 1099, 1103, 1133, 1185, 1257, 1341, 1491, 1706, 2337, 2654, 1882, 1610, 1437, 1342, 1261, 1192, 1154, 1144, 1138, 1163, 1218, 1280, 1404, 1521, 1785, 2532, 2875, 2048, 1644, 1500, 1374, 1283, 1231, 1192, 1169, 1186, 1225, 1251, 1330, 1440, 1581, 1931, 2799, 3394, 2225, 1714, 1557, 1431, 1348, 1291, 1242, 1219, 1230, 1258, 1313, 1376, 1501, 1678, 2142, 3285, 4086, 2550, 1885, 1586, 1491, 1395, 1341, 1296, 1277, 1296, 1299, 1372, 1465, 1576, 1787, 2438, 3846]
| }
| }, {
| "name": "3840x2160_CWF_30",
| "resolution": "3840x2160",
| "illumination": "CWF",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [2260, 1831, 1566, 1458, 1395, 1323, 1283, 1257, 1270, 1244, 1266, 1309, 1375, 1433, 1525, 1765, 2155, 2156, 1737, 1516, 1445, 1364, 1292, 1241, 1219, 1198, 1209, 1234, 1272, 1334, 1403, 1478, 1675, 2043, 2026, 1655, 1486, 1402, 1326, 1259, 1208, 1170, 1162, 1170, 1190, 1242, 1304, 1375, 1451, 1596, 1946, 1969, 1604, 1484, 1381, 1312, 1231, 1171, 1134, 1115, 1134, 1168, 1218, 1273, 1351, 1440, 1555, 1878, 1896, 1568, 1455, 1354, 1274, 1198, 1143, 1105, 1082, 1100, 1131, 1177, 1257, 1335, 1413, 1527, 1784, 1857, 1538, 1441, 1347, 1259, 1183, 1127, 1085, 1064, 1066, 1113, 1162, 1230, 1307, 1395, 1485, 1737, 1795, 1529, 1436, 1337, 1243, 1170, 1106, 1064, 1037, 1048, 1082, 1141, 1214, 1312, 1387, 1478, 1713, 1776, 1531, 1431, 1333, 1245, 1160, 1096, 1047, 1042, 1039, 1080, 1136, 1210, 1297, 1383, 1488, 1697, 1772, 1528, 1429, 1334, 1242, 1160, 1096, 1047, 1024, 1037, 1077, 1133, 1210, 1298, 1376, 1476, 1714, 1807, 1535, 1436, 1329, 1245, 1169, 1104, 1055, 1034, 1044, 1085, 1148, 1219, 1304, 1398, 1488, 1732, 1819, 1544, 1445, 1360, 1256, 1186, 1120, 1089, 1057, 1064, 1106, 1170, 1230, 1308, 1402, 1500, 1779, 1875, 1579, 1471, 1370, 1277, 1215, 1148, 1101, 1083, 1096, 1136, 1183, 1259, 1328, 1428, 1528, 1840, 1936, 1611, 1487, 1393, 1309, 1233, 1181, 1143, 1115, 1131, 1169, 1210, 1277, 1346, 1442, 1578, 1916, 2049, 1657, 1527, 1431, 1338, 1271, 1212, 1169, 1164, 1157, 1198, 1240, 1308, 1386, 1470, 1633, 1991, 2188, 1741, 1549, 1449, 1376, 1304, 1261, 1211, 1209, 1211, 1247, 1287, 1345, 1410, 1500, 1706, 2144, 2403, 1864, 1593, 1500, 1416, 1355, 1300, 1268, 1253, 1255, 1285, 1324, 1383, 1462, 1550, 1822, 2324, 2664, 2029, 1682, 1528, 1458, 1401, 1356, 1309, 1294, 1313, 1337, 1376, 1428, 1486, 1645, 1964, 2634]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2247, 1831, 1569, 1460, 1393, 1315, 1275, 1253, 1235, 1246, 1265, 1289, 1360, 1428, 1517, 1753, 2166, 2153, 1733, 1512, 1429, 1353, 1294, 1239, 1207, 1200, 1202, 1224, 1265, 1324, 1396, 1468, 1660, 2057, 2029, 1656, 1488, 1402, 1319, 1250, 1193, 1165, 1155, 1167, 1190, 1233, 1293, 1364, 1443, 1580, 1909, 1944, 1591, 1470, 1376, 1295, 1230, 1168, 1132, 1113, 1130, 1159, 1206, 1266, 1339, 1426, 1543, 1860, 1853, 1550, 1446, 1349, 1273, 1199, 1140, 1096, 1091, 1096, 1128, 1176, 1239, 1316, 1401, 1505, 1777, 1817, 1524, 1427, 1332, 1253, 1176, 1116, 1080, 1057, 1066, 1107, 1163, 1224, 1303, 1397, 1479, 1750, 1783, 1515, 1430, 1322, 1240, 1168, 1103, 1052, 1033, 1047, 1086, 1138, 1210, 1289, 1375, 1461, 1708, 1782, 1513, 1425, 1317, 1235, 1156, 1094, 1041, 1024, 1041, 1077, 1138, 1204, 1277, 1375, 1467, 1707, 1768, 1518, 1420, 1314, 1232, 1156, 1094, 1041, 1034, 1037, 1079, 1136, 1206, 1282, 1372, 1471, 1699, 1769, 1519, 1420, 1329, 1240, 1164, 1102, 1053, 1041, 1053, 1084, 1141, 1204, 1289, 1386, 1477, 1739, 1797, 1535, 1443, 1343, 1257, 1180, 1120, 1074, 1055, 1063, 1096, 1155, 1226, 1302, 1396, 1491, 1753, 1861, 1555, 1449, 1353, 1277, 1199, 1140, 1096, 1080, 1088, 1123, 1176, 1244, 1321, 1409, 1521, 1812, 1917, 1590, 1476, 1374, 1293, 1224, 1174, 1130, 1116, 1126, 1158, 1196, 1268, 1349, 1436, 1562, 1880, 2032, 1651, 1502, 1412, 1330, 1253, 1208, 1170, 1152, 1167, 1194, 1233, 1297, 1382, 1452, 1611, 1987, 2201, 1744, 1534, 1439, 1364, 1299, 1243, 1213, 1189, 1202, 1222, 1275, 1327, 1406, 1483, 1700, 2158, 2359, 1845, 1567, 1481, 1411, 1334, 1277, 1249, 1244, 1249, 1275, 1318, 1370, 1446, 1537, 1802, 2348, 2596, 1998, 1671, 1513, 1450, 1379, 1329, 1301, 1290, 1309, 1323, 1357, 1407, 1480, 1640, 1937, 2550]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2317, 1831, 1577, 1460, 1393, 1325, 1278, 1242, 1237, 1240, 1268, 1302, 1362, 1426, 1518, 1766, 2199, 2165, 1740, 1514, 1432, 1350, 1290, 1240, 1206, 1197, 1204, 1224, 1268, 1315, 1392, 1471, 1670, 2066, 2059, 1651, 1494, 1393, 1323, 1250, 1199, 1170, 1154, 1161, 1189, 1229, 1288, 1366, 1443, 1588, 1934, 1938, 1609, 1476, 1371, 1296, 1224, 1169, 1129, 1119, 1121, 1154, 1202, 1267, 1339, 1429, 1548, 1860, 1879, 1567, 1448, 1352, 1274, 1198, 1140, 1101, 1081, 1097, 1120, 1175, 1237, 1320, 1405, 1509, 1790, 1816, 1542, 1443, 1340, 1251, 1177, 1110, 1078, 1052, 1060, 1100, 1155, 1225, 1315, 1391, 1495, 1758, 1801, 1530, 1428, 1329, 1239, 1162, 1105, 1054, 1033, 1043, 1085, 1138, 1214, 1294, 1387, 1474, 1723, 1777, 1526, 1414, 1332, 1229, 1159, 1084, 1043, 1024, 1031, 1071, 1131, 1205, 1288, 1379, 1472, 1726, 1764, 1531, 1423, 1324, 1233, 1150, 1082, 1038, 1024, 1037, 1074, 1131, 1202, 1281, 1376, 1484, 1706, 1777, 1531, 1423, 1327, 1236, 1160, 1098, 1049, 1024, 1041, 1078, 1141, 1216, 1297, 1375, 1480, 1735, 1820, 1533, 1436, 1341, 1247, 1168, 1103, 1068, 1049, 1058, 1095, 1148, 1221, 1304, 1389, 1489, 1787, 1846, 1575, 1450, 1348, 1264, 1189, 1133, 1089, 1077, 1086, 1120, 1162, 1240, 1321, 1414, 1517, 1803, 1958, 1591, 1476, 1376, 1295, 1220, 1162, 1123, 1103, 1112, 1145, 1195, 1255, 1345, 1431, 1561, 1890, 2047, 1653, 1505, 1415, 1317, 1258, 1202, 1157, 1141, 1156, 1177, 1231, 1295, 1365, 1465, 1613, 1981, 2221, 1735, 1530, 1445, 1359, 1290, 1232, 1198, 1181, 1190, 1216, 1263, 1331, 1402, 1494, 1699, 2152, 2375, 1849, 1565, 1479, 1397, 1321, 1278, 1243, 1227, 1236, 1257, 1301, 1365, 1437, 1536, 1806, 2320, 2573, 2005, 1663, 1513, 1443, 1372, 1320, 1294, 1276, 1282, 1305, 1357, 1405, 1484, 1625, 1955, 2558]
| },
| "lsc_samples_blue": {
| "uCoeff": [2114, 1754, 1530, 1431, 1355, 1309, 1263, 1230, 1221, 1230, 1234, 1284, 1335, 1375, 1480, 1667, 2062, 2014, 1641, 1479, 1404, 1333, 1268, 1234, 1196, 1186, 1190, 1217, 1257, 1308, 1364, 1426, 1590, 1912, 1886, 1579, 1442, 1367, 1296, 1243, 1198, 1170, 1151, 1159, 1186, 1221, 1278, 1328, 1406, 1533, 1820, 1815, 1533, 1431, 1361, 1270, 1211, 1176, 1133, 1114, 1118, 1139, 1195, 1252, 1315, 1381, 1483, 1758, 1756, 1511, 1416, 1325, 1259, 1200, 1128, 1096, 1087, 1086, 1128, 1168, 1225, 1288, 1361, 1456, 1681, 1720, 1485, 1405, 1314, 1241, 1165, 1124, 1068, 1055, 1050, 1109, 1145, 1212, 1271, 1344, 1424, 1660, 1714, 1479, 1391, 1299, 1221, 1157, 1096, 1055, 1033, 1042, 1082, 1127, 1199, 1269, 1357, 1426, 1623, 1677, 1469, 1395, 1296, 1217, 1142, 1092, 1037, 1033, 1033, 1068, 1122, 1196, 1260, 1335, 1410, 1611, 1669, 1471, 1376, 1297, 1218, 1158, 1092, 1037, 1024, 1028, 1064, 1118, 1185, 1267, 1329, 1412, 1625, 1713, 1477, 1395, 1302, 1212, 1142, 1097, 1051, 1033, 1033, 1068, 1118, 1180, 1260, 1341, 1417, 1632, 1714, 1471, 1391, 1312, 1227, 1157, 1106, 1055, 1033, 1055, 1082, 1137, 1199, 1264, 1344, 1426, 1655, 1758, 1485, 1412, 1320, 1253, 1181, 1115, 1078, 1064, 1060, 1109, 1160, 1212, 1277, 1357, 1446, 1695, 1813, 1537, 1423, 1344, 1265, 1210, 1143, 1116, 1097, 1101, 1128, 1173, 1230, 1288, 1381, 1487, 1770, 1913, 1589, 1462, 1361, 1300, 1239, 1181, 1148, 1139, 1133, 1155, 1200, 1246, 1334, 1395, 1525, 1846, 1979, 1672, 1473, 1402, 1321, 1255, 1214, 1181, 1161, 1175, 1208, 1226, 1284, 1354, 1427, 1598, 1940, 2160, 1748, 1504, 1434, 1359, 1305, 1263, 1223, 1203, 1212, 1234, 1274, 1314, 1390, 1479, 1698, 2108, 2336, 1889, 1595, 1439, 1395, 1334, 1299, 1265, 1249, 1265, 1263, 1315, 1375, 1431, 1530, 1825, 2233]
| }
| }, {
| "name": "3840x2160_D50_100",
| "resolution": "3840x2160",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5322, 3019, 2085, 1766, 1580, 1439, 1366, 1322, 1292, 1309, 1357, 1429, 1550, 1743, 2022, 2889, 5186, 4445, 2610, 1908, 1671, 1482, 1376, 1292, 1252, 1226, 1233, 1276, 1353, 1466, 1631, 1864, 2512, 4170, 3816, 2352, 1830, 1586, 1429, 1318, 1233, 1197, 1172, 1183, 1226, 1292, 1404, 1544, 1790, 2247, 3644, 3315, 2163, 1766, 1532, 1371, 1268, 1193, 1143, 1130, 1133, 1179, 1260, 1344, 1498, 1714, 2096, 3236, 3111, 2053, 1707, 1493, 1339, 1226, 1156, 1108, 1079, 1102, 1136, 1204, 1313, 1455, 1665, 1963, 2910, 2952, 1963, 1665, 1455, 1305, 1204, 1124, 1076, 1059, 1067, 1111, 1179, 1268, 1414, 1618, 1908, 2752, 2809, 1935, 1631, 1429, 1284, 1183, 1108, 1053, 1027, 1045, 1090, 1159, 1272, 1404, 1586, 1864, 2733, 2715, 1917, 1618, 1414, 1276, 1169, 1090, 1048, 1027, 1034, 1076, 1156, 1245, 1385, 1580, 1855, 2593, 2697, 1899, 1618, 1424, 1272, 1169, 1093, 1040, 1024, 1040, 1076, 1156, 1248, 1400, 1574, 1847, 2593, 2752, 1926, 1651, 1424, 1284, 1193, 1105, 1051, 1029, 1040, 1084, 1159, 1260, 1400, 1586, 1873, 2661, 2809, 1945, 1665, 1450, 1301, 1197, 1124, 1067, 1053, 1062, 1108, 1183, 1284, 1419, 1605, 1899, 2752, 2996, 2043, 1700, 1487, 1335, 1229, 1152, 1105, 1084, 1096, 1139, 1200, 1313, 1460, 1638, 1963, 2952, 3315, 2118, 1759, 1538, 1376, 1264, 1190, 1143, 1120, 1133, 1176, 1245, 1344, 1487, 1700, 2096, 3262, 3611, 2298, 1822, 1586, 1429, 1313, 1233, 1193, 1169, 1179, 1215, 1296, 1395, 1550, 1766, 2247, 3644, 4258, 2528, 1917, 1665, 1493, 1371, 1292, 1241, 1222, 1229, 1284, 1357, 1466, 1618, 1847, 2466, 4170, 5186, 2889, 2064, 1766, 1568, 1445, 1357, 1305, 1280, 1301, 1339, 1414, 1538, 1721, 1993, 2809, 5056, 6523, 3399, 2325, 1881, 1671, 1532, 1439, 1390, 1357, 1380, 1434, 1504, 1651, 1822, 2285, 3399, 6742]
| },
| "lsc_samples_greenR": {
| "uCoeff": [5120, 2831, 2007, 1702, 1524, 1412, 1334, 1282, 1264, 1282, 1314, 1382, 1501, 1666, 1945, 2720, 4705, 4169, 2460, 1837, 1616, 1445, 1349, 1271, 1228, 1211, 1226, 1255, 1324, 1427, 1583, 1795, 2368, 3934, 3535, 2232, 1758, 1551, 1395, 1294, 1226, 1174, 1162, 1172, 1207, 1268, 1363, 1504, 1719, 2142, 3380, 3165, 2079, 1694, 1494, 1347, 1248, 1176, 1132, 1119, 1130, 1172, 1228, 1316, 1454, 1658, 1995, 3027, 2889, 1956, 1650, 1454, 1309, 1215, 1143, 1100, 1080, 1095, 1136, 1194, 1292, 1418, 1601, 1897, 2785, 2720, 1892, 1619, 1424, 1280, 1186, 1112, 1075, 1055, 1066, 1109, 1172, 1264, 1384, 1575, 1823, 2598, 2648, 1852, 1593, 1404, 1271, 1168, 1098, 1053, 1032, 1046, 1093, 1143, 1243, 1368, 1544, 1795, 2514, 2541, 1837, 1572, 1393, 1259, 1162, 1088, 1042, 1024, 1036, 1071, 1147, 1232, 1355, 1541, 1781, 2469, 2541, 1842, 1579, 1390, 1252, 1162, 1086, 1044, 1027, 1035, 1075, 1142, 1232, 1352, 1537, 1785, 2496, 2579, 1857, 1575, 1401, 1271, 1168, 1100, 1046, 1038, 1046, 1088, 1153, 1248, 1365, 1541, 1795, 2505, 2668, 1877, 1601, 1418, 1289, 1184, 1112, 1070, 1049, 1058, 1100, 1166, 1255, 1379, 1565, 1823, 2608, 2842, 1950, 1646, 1439, 1314, 1207, 1143, 1098, 1083, 1091, 1127, 1194, 1285, 1415, 1612, 1887, 2774, 3054, 2042, 1694, 1488, 1349, 1250, 1182, 1132, 1118, 1132, 1166, 1226, 1321, 1463, 1650, 2001, 3041, 3413, 2190, 1767, 1544, 1387, 1297, 1222, 1178, 1157, 1172, 1205, 1271, 1368, 1517, 1724, 2136, 3397, 3956, 2418, 1847, 1616, 1463, 1344, 1266, 1228, 1213, 1219, 1259, 1334, 1427, 1575, 1795, 2352, 3956, 4737, 2731, 1961, 1707, 1534, 1407, 1329, 1285, 1266, 1282, 1319, 1382, 1507, 1662, 1924, 2688, 4737, 6108, 3239, 2211, 1804, 1619, 1475, 1404, 1355, 1339, 1355, 1395, 1466, 1575, 1772, 2142, 3209, 6162]
| },
| "lsc_samples_greenB": {
| "uCoeff": [5158, 2866, 2024, 1707, 1524, 1418, 1334, 1287, 1261, 1280, 1329, 1387, 1507, 1662, 1945, 2774, 4869, 4246, 2514, 1857, 1612, 1457, 1347, 1271, 1228, 1215, 1226, 1259, 1329, 1433, 1575, 1809, 2393, 3979, 3589, 2246, 1785, 1551, 1401, 1292, 1217, 1178, 1161, 1180, 1209, 1266, 1371, 1517, 1719, 2183, 3464, 3209, 2091, 1719, 1501, 1352, 1250, 1186, 1136, 1119, 1132, 1172, 1235, 1334, 1475, 1670, 2024, 3095, 2938, 1989, 1658, 1457, 1311, 1215, 1145, 1100, 1081, 1100, 1129, 1198, 1294, 1430, 1612, 1918, 2808, 2763, 1924, 1627, 1421, 1287, 1186, 1119, 1073, 1055, 1063, 1107, 1172, 1266, 1401, 1583, 1837, 2678, 2658, 1887, 1597, 1407, 1273, 1176, 1093, 1055, 1036, 1046, 1088, 1161, 1250, 1382, 1551, 1804, 2589, 2598, 1862, 1579, 1393, 1264, 1161, 1093, 1041, 1024, 1035, 1076, 1143, 1243, 1371, 1544, 1804, 2496, 2551, 1862, 1590, 1390, 1266, 1161, 1090, 1044, 1026, 1039, 1076, 1143, 1237, 1368, 1541, 1804, 2505, 2628, 1877, 1597, 1401, 1278, 1174, 1095, 1053, 1026, 1044, 1085, 1153, 1255, 1371, 1554, 1804, 2541, 2699, 1887, 1616, 1421, 1285, 1184, 1111, 1065, 1047, 1061, 1102, 1172, 1259, 1387, 1575, 1842, 2658, 2866, 1956, 1650, 1451, 1311, 1219, 1140, 1100, 1080, 1088, 1127, 1194, 1287, 1421, 1612, 1913, 2785, 3109, 2036, 1702, 1501, 1349, 1243, 1174, 1134, 1111, 1130, 1162, 1235, 1319, 1460, 1650, 2012, 3095, 3482, 2190, 1758, 1551, 1395, 1292, 1211, 1168, 1153, 1164, 1198, 1273, 1360, 1520, 1711, 2149, 3380, 4002, 2418, 1852, 1608, 1466, 1339, 1266, 1222, 1209, 1219, 1255, 1321, 1427, 1590, 1795, 2385, 3956, 4836, 2752, 1978, 1694, 1524, 1401, 1329, 1275, 1259, 1278, 1316, 1379, 1497, 1662, 1929, 2720, 4836, 6108, 3224, 2218, 1809, 1597, 1488, 1387, 1360, 1324, 1331, 1387, 1466, 1593, 1763, 2136, 3209, 6162]
| },
| "lsc_samples_blue": {
| "uCoeff": [4630, 2694, 1934, 1677, 1501, 1381, 1320, 1279, 1269, 1284, 1304, 1370, 1487, 1619, 1900, 2568, 4442, 3913, 2417, 1806, 1611, 1442, 1336, 1274, 1226, 1204, 1213, 1255, 1320, 1411, 1565, 1767, 2299, 3735, 3460, 2177, 1739, 1536, 1387, 1299, 1217, 1170, 1162, 1166, 1204, 1259, 1370, 1481, 1677, 2080, 3223, 3044, 2017, 1686, 1481, 1347, 1250, 1191, 1137, 1118, 1130, 1162, 1222, 1320, 1448, 1627, 1934, 2935, 2786, 1922, 1627, 1442, 1304, 1213, 1141, 1096, 1078, 1096, 1130, 1195, 1289, 1411, 1588, 1857, 2651, 2672, 1868, 1596, 1405, 1279, 1191, 1114, 1074, 1057, 1060, 1107, 1170, 1255, 1375, 1550, 1767, 2509, 2509, 1826, 1573, 1393, 1264, 1174, 1096, 1054, 1030, 1037, 1092, 1141, 1231, 1353, 1508, 1748, 2435, 2471, 1806, 1558, 1375, 1255, 1166, 1096, 1047, 1027, 1037, 1078, 1141, 1231, 1347, 1501, 1730, 2382, 2417, 1796, 1558, 1375, 1250, 1166, 1092, 1047, 1024, 1034, 1078, 1141, 1217, 1342, 1508, 1730, 2399, 2490, 1816, 1565, 1387, 1274, 1174, 1096, 1047, 1030, 1050, 1078, 1141, 1231, 1347, 1515, 1739, 2417, 2609, 1847, 1580, 1405, 1279, 1182, 1110, 1067, 1044, 1060, 1103, 1170, 1245, 1364, 1529, 1767, 2471, 2672, 1889, 1635, 1435, 1304, 1200, 1137, 1096, 1071, 1081, 1126, 1174, 1269, 1381, 1565, 1826, 2609, 2909, 1992, 1669, 1474, 1336, 1245, 1157, 1133, 1110, 1118, 1162, 1213, 1304, 1429, 1619, 1934, 2834, 3223, 2134, 1730, 1522, 1387, 1284, 1208, 1166, 1141, 1162, 1200, 1250, 1347, 1487, 1677, 2067, 3161, 3694, 2331, 1806, 1580, 1435, 1331, 1255, 1226, 1200, 1213, 1250, 1304, 1411, 1536, 1739, 2267, 3694, 4442, 2609, 1922, 1669, 1501, 1381, 1310, 1284, 1245, 1259, 1289, 1358, 1467, 1611, 1847, 2548, 4325, 5571, 3044, 2121, 1786, 1596, 1461, 1370, 1342, 1325, 1336, 1370, 1435, 1543, 1712, 2080, 2988, 5571]
| }
| }, {
| "name": "3840x2160_D50_70",
| "resolution": "3840x2160",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [4033, 2530, 1871, 1644, 1506, 1394, 1335, 1298, 1272, 1286, 1327, 1385, 1480, 1625, 1821, 2432, 3937, 3485, 2246, 1744, 1575, 1429, 1344, 1272, 1238, 1214, 1220, 1257, 1323, 1414, 1541, 1708, 2171, 3287, 3073, 2066, 1692, 1511, 1388, 1295, 1221, 1189, 1166, 1175, 1214, 1271, 1365, 1474, 1658, 1983, 2947, 2732, 1931, 1647, 1470, 1340, 1252, 1185, 1139, 1127, 1129, 1172, 1245, 1315, 1440, 1604, 1877, 2673, 2600, 1853, 1604, 1441, 1314, 1215, 1151, 1106, 1078, 1100, 1132, 1194, 1290, 1407, 1569, 1780, 2449, 2495, 1788, 1574, 1410, 1285, 1196, 1121, 1075, 1059, 1066, 1109, 1172, 1251, 1374, 1533, 1743, 2342, 2395, 1770, 1548, 1389, 1267, 1177, 1106, 1053, 1027, 1045, 1089, 1154, 1256, 1367, 1509, 1711, 2337, 2328, 1758, 1539, 1377, 1260, 1164, 1089, 1048, 1027, 1034, 1075, 1151, 1231, 1351, 1506, 1707, 2234, 2316, 1744, 1539, 1387, 1257, 1164, 1092, 1040, 1024, 1040, 1075, 1151, 1234, 1365, 1501, 1701, 2236, 2357, 1765, 1567, 1386, 1268, 1187, 1104, 1051, 1029, 1040, 1083, 1154, 1245, 1364, 1511, 1722, 2287, 2395, 1778, 1577, 1408, 1283, 1190, 1122, 1067, 1053, 1062, 1106, 1177, 1267, 1380, 1525, 1740, 2351, 2528, 1853, 1604, 1439, 1313, 1220, 1149, 1104, 1083, 1095, 1136, 1192, 1292, 1415, 1551, 1788, 2495, 2754, 1905, 1649, 1481, 1348, 1251, 1184, 1140, 1118, 1130, 1171, 1233, 1319, 1435, 1599, 1888, 2714, 2953, 2038, 1694, 1518, 1393, 1294, 1224, 1187, 1165, 1174, 1206, 1279, 1362, 1486, 1647, 1998, 2978, 3397, 2204, 1764, 1579, 1445, 1344, 1276, 1231, 1213, 1219, 1269, 1331, 1421, 1538, 1706, 2155, 3332, 4017, 2461, 1871, 1656, 1505, 1406, 1333, 1287, 1265, 1284, 1316, 1378, 1478, 1618, 1813, 2400, 3924, 4873, 2816, 2063, 1740, 1585, 1477, 1401, 1361, 1332, 1352, 1397, 1452, 1567, 1691, 2031, 2816, 5027]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3891, 2388, 1809, 1590, 1457, 1370, 1306, 1261, 1246, 1261, 1288, 1343, 1437, 1560, 1759, 2304, 3601, 3286, 2131, 1686, 1528, 1396, 1319, 1253, 1215, 1200, 1213, 1238, 1296, 1380, 1500, 1652, 2060, 3117, 2867, 1972, 1632, 1480, 1357, 1273, 1214, 1167, 1156, 1165, 1196, 1249, 1328, 1440, 1600, 1901, 2753, 2621, 1864, 1587, 1437, 1318, 1234, 1169, 1128, 1116, 1126, 1165, 1215, 1290, 1402, 1557, 1797, 2518, 2433, 1775, 1556, 1406, 1286, 1205, 1139, 1098, 1079, 1093, 1132, 1185, 1271, 1374, 1514, 1727, 2354, 2318, 1730, 1534, 1383, 1262, 1179, 1110, 1074, 1055, 1065, 1107, 1165, 1247, 1347, 1497, 1674, 2225, 2271, 1702, 1515, 1367, 1255, 1162, 1096, 1053, 1032, 1046, 1092, 1138, 1229, 1334, 1473, 1655, 2168, 2194, 1692, 1499, 1358, 1244, 1157, 1087, 1042, 1024, 1036, 1070, 1143, 1219, 1324, 1472, 1646, 2138, 2196, 1697, 1505, 1356, 1238, 1157, 1085, 1044, 1027, 1035, 1074, 1138, 1219, 1321, 1469, 1650, 2161, 2223, 1708, 1501, 1365, 1256, 1163, 1099, 1046, 1038, 1046, 1087, 1148, 1234, 1333, 1472, 1658, 2166, 2287, 1722, 1522, 1379, 1272, 1178, 1110, 1070, 1049, 1058, 1098, 1160, 1240, 1344, 1491, 1678, 2241, 2411, 1777, 1557, 1396, 1293, 1199, 1140, 1097, 1082, 1090, 1124, 1186, 1266, 1374, 1528, 1726, 2359, 2557, 1844, 1593, 1436, 1323, 1238, 1177, 1129, 1116, 1129, 1161, 1215, 1297, 1414, 1556, 1811, 2548, 2805, 1952, 1648, 1481, 1354, 1280, 1213, 1173, 1153, 1167, 1197, 1255, 1337, 1457, 1612, 1909, 2794, 3175, 2117, 1706, 1537, 1418, 1319, 1252, 1218, 1205, 1210, 1245, 1310, 1386, 1501, 1663, 2066, 3175, 3695, 2339, 1787, 1606, 1474, 1372, 1307, 1269, 1252, 1266, 1297, 1349, 1451, 1567, 1757, 2306, 3695, 4583, 2696, 1972, 1676, 1540, 1426, 1369, 1329, 1315, 1329, 1361, 1418, 1502, 1649, 1916, 2673, 4621]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3918, 2414, 1822, 1595, 1457, 1375, 1306, 1266, 1243, 1260, 1301, 1348, 1443, 1557, 1759, 2345, 3716, 3341, 2172, 1702, 1525, 1406, 1317, 1253, 1215, 1204, 1213, 1242, 1301, 1385, 1493, 1663, 2079, 3149, 2906, 1983, 1654, 1480, 1363, 1271, 1206, 1171, 1155, 1173, 1198, 1247, 1336, 1451, 1600, 1933, 2814, 2653, 1873, 1608, 1443, 1323, 1236, 1179, 1132, 1116, 1128, 1165, 1221, 1306, 1420, 1567, 1820, 2568, 2470, 1801, 1563, 1409, 1288, 1205, 1141, 1098, 1080, 1098, 1125, 1189, 1273, 1385, 1524, 1744, 2372, 2350, 1756, 1541, 1380, 1268, 1179, 1116, 1072, 1055, 1062, 1105, 1165, 1249, 1362, 1503, 1685, 2286, 2279, 1730, 1519, 1369, 1257, 1170, 1092, 1055, 1036, 1046, 1087, 1156, 1235, 1347, 1479, 1662, 2226, 2238, 1713, 1505, 1358, 1249, 1156, 1092, 1041, 1024, 1035, 1075, 1139, 1229, 1338, 1475, 1665, 2159, 2203, 1713, 1515, 1356, 1251, 1156, 1089, 1044, 1026, 1039, 1075, 1139, 1224, 1336, 1472, 1666, 2168, 2261, 1725, 1520, 1365, 1262, 1169, 1094, 1053, 1026, 1044, 1084, 1148, 1241, 1338, 1483, 1665, 2194, 2311, 1730, 1535, 1382, 1268, 1178, 1109, 1065, 1047, 1061, 1100, 1166, 1244, 1351, 1500, 1693, 2279, 2429, 1782, 1561, 1407, 1291, 1210, 1137, 1099, 1079, 1087, 1124, 1186, 1268, 1380, 1528, 1747, 2367, 2599, 1839, 1600, 1448, 1323, 1231, 1169, 1131, 1109, 1128, 1157, 1224, 1296, 1411, 1556, 1820, 2588, 2857, 1952, 1641, 1487, 1362, 1275, 1203, 1163, 1149, 1159, 1190, 1257, 1330, 1460, 1601, 1920, 2781, 3209, 2117, 1710, 1530, 1421, 1315, 1252, 1213, 1201, 1210, 1242, 1298, 1386, 1514, 1663, 2092, 3175, 3766, 2356, 1801, 1595, 1466, 1366, 1307, 1259, 1245, 1262, 1295, 1346, 1442, 1567, 1761, 2331, 3766, 4583, 2684, 1977, 1680, 1521, 1438, 1354, 1333, 1301, 1306, 1354, 1418, 1517, 1641, 1912, 2673, 4621]
| },
| "lsc_samples_blue": {
| "uCoeff": [3548, 2284, 1750, 1570, 1437, 1342, 1293, 1259, 1250, 1263, 1279, 1332, 1425, 1521, 1723, 2189, 3417, 3102, 2097, 1661, 1524, 1393, 1307, 1256, 1213, 1193, 1201, 1238, 1293, 1366, 1485, 1629, 2007, 2974, 2811, 1928, 1616, 1467, 1350, 1278, 1206, 1163, 1156, 1159, 1193, 1241, 1335, 1420, 1565, 1852, 2638, 2530, 1814, 1580, 1425, 1318, 1236, 1183, 1133, 1115, 1126, 1156, 1209, 1293, 1396, 1531, 1748, 2449, 2355, 1747, 1536, 1395, 1282, 1203, 1137, 1094, 1077, 1094, 1126, 1186, 1268, 1368, 1503, 1695, 2253, 2281, 1710, 1515, 1365, 1261, 1183, 1112, 1073, 1057, 1059, 1105, 1163, 1239, 1339, 1475, 1628, 2157, 2165, 1680, 1498, 1357, 1248, 1168, 1095, 1054, 1030, 1037, 1091, 1136, 1217, 1321, 1442, 1617, 2108, 2140, 1667, 1487, 1342, 1241, 1161, 1095, 1047, 1027, 1037, 1077, 1137, 1218, 1316, 1437, 1604, 2071, 2100, 1659, 1487, 1342, 1236, 1161, 1091, 1047, 1024, 1034, 1077, 1137, 1205, 1312, 1444, 1605, 2086, 2155, 1675, 1493, 1353, 1259, 1169, 1095, 1047, 1030, 1050, 1077, 1137, 1218, 1316, 1449, 1611, 2098, 2241, 1698, 1504, 1368, 1262, 1176, 1108, 1067, 1044, 1060, 1101, 1164, 1231, 1331, 1460, 1632, 2135, 2281, 1727, 1548, 1392, 1284, 1192, 1134, 1095, 1070, 1080, 1123, 1167, 1252, 1344, 1488, 1676, 2233, 2448, 1804, 1572, 1424, 1311, 1233, 1152, 1130, 1108, 1116, 1157, 1203, 1282, 1384, 1530, 1757, 2391, 2664, 1908, 1617, 1461, 1354, 1267, 1200, 1161, 1137, 1157, 1192, 1236, 1318, 1431, 1573, 1854, 2618, 2983, 2049, 1672, 1506, 1393, 1307, 1242, 1216, 1192, 1204, 1237, 1282, 1371, 1467, 1616, 1999, 2983, 3482, 2245, 1755, 1573, 1445, 1348, 1289, 1268, 1232, 1244, 1270, 1327, 1415, 1524, 1694, 2198, 3398, 4207, 2548, 1900, 1661, 1520, 1413, 1339, 1317, 1302, 1311, 1339, 1390, 1474, 1599, 1867, 2506, 4207]
| }
| }, {
| "name": "3840x2160_D50_30",
| "resolution": "3840x2160",
| "illumination": "D50",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [2313, 1877, 1586, 1481, 1407, 1334, 1294, 1266, 1244, 1256, 1286, 1326, 1386, 1467, 1552, 1822, 2273, 2204, 1761, 1525, 1447, 1357, 1301, 1246, 1219, 1198, 1203, 1233, 1283, 1346, 1421, 1500, 1716, 2109, 2082, 1684, 1507, 1410, 1333, 1265, 1205, 1178, 1157, 1165, 1198, 1244, 1313, 1382, 1483, 1632, 2017, 1956, 1621, 1489, 1388, 1298, 1232, 1175, 1134, 1122, 1124, 1163, 1225, 1277, 1363, 1457, 1586, 1923, 1920, 1586, 1468, 1371, 1281, 1201, 1145, 1103, 1076, 1098, 1127, 1182, 1260, 1343, 1441, 1537, 1833, 1885, 1554, 1452, 1351, 1258, 1185, 1118, 1074, 1058, 1066, 1106, 1163, 1227, 1320, 1421, 1522, 1796, 1843, 1549, 1437, 1336, 1244, 1168, 1104, 1052, 1027, 1045, 1087, 1147, 1234, 1317, 1406, 1508, 1808, 1812, 1545, 1433, 1328, 1240, 1157, 1087, 1048, 1027, 1034, 1074, 1145, 1213, 1305, 1407, 1509, 1756, 1808, 1537, 1434, 1337, 1237, 1157, 1091, 1040, 1024, 1040, 1074, 1145, 1216, 1318, 1404, 1507, 1759, 1830, 1551, 1456, 1336, 1246, 1179, 1102, 1051, 1029, 1040, 1082, 1148, 1226, 1317, 1411, 1520, 1787, 1843, 1555, 1460, 1353, 1259, 1181, 1119, 1066, 1053, 1061, 1104, 1168, 1244, 1329, 1419, 1528, 1817, 1904, 1599, 1475, 1375, 1283, 1207, 1144, 1102, 1082, 1094, 1132, 1181, 1265, 1354, 1434, 1554, 1885, 2007, 1622, 1502, 1404, 1311, 1234, 1177, 1137, 1116, 1127, 1164, 1217, 1285, 1366, 1463, 1610, 1984, 2076, 1692, 1524, 1426, 1344, 1270, 1211, 1180, 1159, 1167, 1195, 1255, 1317, 1401, 1489, 1665, 2089, 2249, 1771, 1559, 1465, 1381, 1309, 1255, 1217, 1202, 1206, 1249, 1297, 1361, 1432, 1517, 1741, 2216, 2459, 1891, 1613, 1509, 1420, 1355, 1300, 1264, 1245, 1261, 1285, 1331, 1398, 1480, 1573, 1854, 2415, 2674, 2040, 1713, 1552, 1470, 1403, 1351, 1322, 1298, 1314, 1347, 1382, 1456, 1516, 1691, 2040, 2739]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2253, 1797, 1544, 1442, 1368, 1314, 1268, 1234, 1221, 1234, 1253, 1291, 1353, 1420, 1511, 1749, 2128, 2109, 1691, 1485, 1411, 1330, 1279, 1229, 1198, 1185, 1197, 1215, 1260, 1317, 1390, 1461, 1649, 2028, 1975, 1624, 1464, 1386, 1307, 1246, 1198, 1157, 1148, 1156, 1182, 1224, 1282, 1354, 1440, 1580, 1917, 1895, 1577, 1444, 1361, 1279, 1215, 1160, 1123, 1112, 1122, 1156, 1198, 1255, 1332, 1421, 1533, 1839, 1824, 1533, 1431, 1342, 1256, 1191, 1133, 1096, 1077, 1091, 1127, 1173, 1242, 1315, 1399, 1501, 1780, 1781, 1513, 1421, 1327, 1238, 1169, 1107, 1073, 1054, 1065, 1104, 1156, 1224, 1297, 1392, 1475, 1727, 1769, 1501, 1411, 1317, 1233, 1155, 1094, 1052, 1032, 1046, 1090, 1132, 1210, 1289, 1378, 1468, 1708, 1731, 1499, 1401, 1312, 1225, 1151, 1086, 1042, 1024, 1036, 1069, 1137, 1202, 1282, 1380, 1466, 1698, 1735, 1504, 1407, 1310, 1220, 1151, 1084, 1044, 1027, 1035, 1073, 1133, 1203, 1280, 1378, 1470, 1714, 1749, 1510, 1403, 1318, 1235, 1156, 1097, 1046, 1038, 1046, 1086, 1142, 1216, 1290, 1380, 1474, 1715, 1778, 1516, 1417, 1328, 1249, 1169, 1108, 1069, 1049, 1057, 1096, 1153, 1220, 1298, 1392, 1485, 1751, 1836, 1546, 1439, 1339, 1266, 1188, 1136, 1095, 1081, 1089, 1121, 1176, 1242, 1320, 1417, 1511, 1805, 1895, 1580, 1459, 1367, 1289, 1222, 1169, 1126, 1114, 1126, 1154, 1201, 1266, 1349, 1431, 1558, 1890, 1995, 1635, 1490, 1396, 1311, 1256, 1201, 1166, 1148, 1160, 1186, 1234, 1296, 1377, 1463, 1607, 1989, 2135, 1717, 1517, 1431, 1358, 1287, 1233, 1206, 1194, 1198, 1227, 1278, 1331, 1403, 1486, 1684, 2135, 2305, 1817, 1555, 1471, 1395, 1325, 1277, 1247, 1233, 1244, 1268, 1305, 1375, 1441, 1534, 1797, 2305, 2549, 1971, 1652, 1505, 1434, 1361, 1323, 1293, 1283, 1293, 1316, 1354, 1404, 1485, 1616, 1958, 2565]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2264, 1812, 1553, 1445, 1368, 1318, 1268, 1238, 1219, 1232, 1264, 1295, 1357, 1417, 1511, 1772, 2178, 2135, 1717, 1496, 1409, 1339, 1278, 1229, 1198, 1189, 1197, 1219, 1264, 1322, 1385, 1469, 1660, 2043, 1996, 1631, 1480, 1386, 1311, 1244, 1191, 1161, 1147, 1163, 1184, 1223, 1288, 1363, 1440, 1600, 1948, 1913, 1583, 1460, 1366, 1283, 1216, 1169, 1127, 1112, 1123, 1156, 1203, 1269, 1347, 1429, 1548, 1866, 1845, 1551, 1436, 1344, 1258, 1191, 1135, 1096, 1078, 1096, 1120, 1176, 1244, 1324, 1406, 1513, 1790, 1800, 1532, 1427, 1325, 1243, 1169, 1113, 1071, 1054, 1062, 1102, 1156, 1226, 1310, 1397, 1482, 1762, 1774, 1521, 1414, 1319, 1235, 1162, 1090, 1054, 1036, 1046, 1085, 1148, 1216, 1300, 1383, 1474, 1742, 1758, 1513, 1406, 1312, 1229, 1150, 1090, 1041, 1024, 1035, 1074, 1133, 1211, 1294, 1382, 1479, 1710, 1740, 1515, 1415, 1310, 1232, 1150, 1088, 1044, 1026, 1039, 1074, 1133, 1207, 1293, 1381, 1481, 1718, 1772, 1522, 1418, 1318, 1241, 1162, 1092, 1053, 1026, 1044, 1083, 1142, 1222, 1294, 1389, 1479, 1731, 1793, 1521, 1427, 1330, 1245, 1169, 1107, 1064, 1047, 1060, 1098, 1158, 1223, 1304, 1399, 1495, 1774, 1846, 1550, 1442, 1348, 1263, 1198, 1133, 1097, 1079, 1086, 1121, 1176, 1243, 1325, 1417, 1525, 1810, 1919, 1577, 1465, 1377, 1289, 1216, 1162, 1128, 1107, 1124, 1151, 1209, 1264, 1346, 1431, 1564, 1913, 2024, 1635, 1484, 1401, 1317, 1252, 1191, 1157, 1144, 1153, 1180, 1236, 1290, 1379, 1455, 1614, 1982, 2152, 1717, 1520, 1426, 1361, 1283, 1233, 1200, 1190, 1198, 1224, 1268, 1331, 1413, 1486, 1700, 2135, 2339, 1827, 1565, 1462, 1388, 1320, 1277, 1238, 1227, 1241, 1266, 1303, 1368, 1441, 1537, 1812, 2339, 2549, 1965, 1656, 1508, 1419, 1370, 1310, 1297, 1271, 1274, 1310, 1354, 1416, 1479, 1613, 1958, 2565]
| },
| "lsc_samples_blue": {
| "uCoeff": [2106, 1738, 1506, 1426, 1353, 1290, 1257, 1231, 1225, 1236, 1245, 1282, 1343, 1391, 1488, 1684, 2049, 2020, 1671, 1467, 1408, 1328, 1269, 1231, 1197, 1179, 1185, 1215, 1257, 1306, 1378, 1445, 1617, 1959, 1947, 1597, 1452, 1376, 1301, 1250, 1191, 1154, 1148, 1150, 1179, 1217, 1288, 1338, 1415, 1549, 1857, 1845, 1544, 1439, 1351, 1279, 1216, 1173, 1128, 1111, 1122, 1147, 1192, 1258, 1328, 1402, 1501, 1801, 1780, 1515, 1416, 1333, 1252, 1189, 1132, 1092, 1076, 1092, 1121, 1174, 1240, 1310, 1390, 1479, 1722, 1760, 1500, 1406, 1313, 1237, 1173, 1108, 1072, 1056, 1059, 1102, 1155, 1217, 1290, 1375, 1443, 1687, 1705, 1486, 1398, 1309, 1227, 1160, 1093, 1053, 1030, 1037, 1089, 1130, 1199, 1278, 1353, 1441, 1671, 1699, 1481, 1392, 1297, 1222, 1154, 1093, 1047, 1027, 1037, 1076, 1131, 1201, 1276, 1352, 1436, 1657, 1677, 1477, 1393, 1298, 1218, 1155, 1090, 1047, 1024, 1034, 1076, 1132, 1190, 1273, 1358, 1438, 1669, 1708, 1486, 1396, 1307, 1238, 1162, 1093, 1047, 1030, 1050, 1076, 1131, 1201, 1276, 1362, 1441, 1674, 1751, 1498, 1402, 1318, 1240, 1168, 1106, 1066, 1044, 1059, 1099, 1157, 1211, 1286, 1368, 1452, 1688, 1760, 1512, 1432, 1336, 1258, 1181, 1130, 1094, 1070, 1079, 1120, 1158, 1228, 1295, 1385, 1476, 1732, 1833, 1553, 1443, 1357, 1278, 1217, 1146, 1127, 1106, 1113, 1151, 1189, 1252, 1324, 1411, 1521, 1801, 1918, 1606, 1467, 1381, 1311, 1245, 1188, 1155, 1133, 1151, 1181, 1216, 1279, 1356, 1433, 1571, 1893, 2035, 1673, 1493, 1406, 1337, 1276, 1224, 1204, 1182, 1192, 1219, 1254, 1319, 1376, 1452, 1642, 2035, 2203, 1761, 1533, 1446, 1371, 1305, 1261, 1246, 1215, 1225, 1244, 1287, 1346, 1408, 1490, 1732, 2162, 2388, 1888, 1605, 1494, 1418, 1350, 1297, 1283, 1271, 1278, 1297, 1331, 1381, 1448, 1583, 1864, 2388]
| }
| }, {
| "name": "3840x2160_D65_100",
| "resolution": "3840x2160",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5296, 3012, 2076, 1746, 1575, 1449, 1378, 1307, 1302, 1307, 1365, 1422, 1551, 1707, 2021, 2844, 4876, 4452, 2626, 1920, 1670, 1506, 1378, 1291, 1244, 1229, 1244, 1285, 1353, 1463, 1625, 1873, 2478, 4096, 3793, 2310, 1818, 1584, 1429, 1324, 1239, 1195, 1177, 1177, 1229, 1296, 1396, 1536, 1765, 2226, 3452, 3339, 2163, 1765, 1528, 1384, 1259, 1200, 1146, 1129, 1146, 1173, 1244, 1342, 1499, 1679, 2062, 3167, 3042, 2062, 1716, 1477, 1342, 1234, 1155, 1113, 1089, 1093, 1138, 1209, 1307, 1442, 1661, 1957, 2898, 2871, 1957, 1670, 1456, 1318, 1200, 1121, 1086, 1063, 1067, 1113, 1186, 1275, 1409, 1600, 1885, 2695, 2719, 1932, 1652, 1429, 1285, 1191, 1113, 1070, 1045, 1045, 1086, 1168, 1259, 1396, 1575, 1851, 2648, 2719, 1920, 1625, 1416, 1275, 1177, 1105, 1045, 1027, 1034, 1082, 1142, 1254, 1384, 1567, 1829, 2560, 2695, 1920, 1625, 1422, 1285, 1182, 1101, 1041, 1024, 1038, 1078, 1159, 1249, 1371, 1575, 1818, 2626, 2768, 1920, 1643, 1436, 1302, 1177, 1105, 1067, 1038, 1059, 1089, 1159, 1264, 1396, 1567, 1840, 2648, 2793, 1944, 1661, 1463, 1307, 1200, 1129, 1070, 1059, 1063, 1105, 1177, 1269, 1409, 1600, 1873, 2695, 3012, 2021, 1697, 1499, 1336, 1229, 1151, 1109, 1086, 1093, 1155, 1200, 1302, 1456, 1643, 1932, 2793, 3268, 2104, 1755, 1536, 1378, 1269, 1195, 1142, 1125, 1138, 1173, 1244, 1342, 1491, 1697, 2021, 3167, 3614, 2275, 1807, 1592, 1422, 1324, 1239, 1191, 1177, 1177, 1209, 1291, 1390, 1536, 1765, 2194, 3572, 4208, 2518, 1908, 1670, 1513, 1378, 1302, 1254, 1224, 1244, 1280, 1347, 1470, 1608, 1851, 2478, 4042, 5037, 2898, 2062, 1776, 1592, 1442, 1371, 1313, 1296, 1296, 1330, 1422, 1536, 1716, 1982, 2768, 4955, 6537, 3376, 2275, 1885, 1697, 1528, 1456, 1378, 1384, 1359, 1429, 1513, 1652, 1786, 2226, 3234, 6145]
| },
| "lsc_samples_greenR": {
| "uCoeff": [5056, 2876, 2035, 1708, 1552, 1413, 1334, 1292, 1287, 1297, 1321, 1392, 1512, 1647, 1943, 2731, 4690, 4202, 2499, 1881, 1651, 1467, 1354, 1284, 1235, 1214, 1233, 1266, 1326, 1432, 1594, 1798, 2415, 3899, 3656, 2271, 1793, 1563, 1410, 1300, 1226, 1181, 1170, 1170, 1207, 1274, 1377, 1509, 1721, 2150, 3406, 3188, 2088, 1721, 1509, 1354, 1254, 1179, 1141, 1118, 1133, 1172, 1233, 1334, 1478, 1655, 2004, 3010, 2955, 1991, 1664, 1461, 1318, 1219, 1147, 1101, 1088, 1095, 1131, 1190, 1292, 1416, 1614, 1898, 2802, 2766, 1938, 1630, 1429, 1294, 1192, 1118, 1075, 1049, 1063, 1108, 1177, 1271, 1395, 1571, 1844, 2631, 2663, 1887, 1618, 1407, 1279, 1175, 1099, 1052, 1035, 1047, 1084, 1154, 1247, 1368, 1552, 1788, 2518, 2599, 1870, 1594, 1398, 1271, 1166, 1089, 1042, 1024, 1039, 1073, 1145, 1235, 1354, 1541, 1778, 2499, 2568, 1860, 1590, 1401, 1271, 1162, 1089, 1044, 1027, 1037, 1071, 1141, 1230, 1357, 1537, 1778, 2479, 2652, 1870, 1614, 1410, 1282, 1177, 1099, 1054, 1027, 1047, 1088, 1147, 1249, 1365, 1548, 1798, 2518, 2696, 1909, 1634, 1432, 1292, 1190, 1118, 1068, 1051, 1056, 1101, 1170, 1257, 1389, 1575, 1833, 2599, 2838, 1967, 1664, 1464, 1321, 1219, 1145, 1101, 1082, 1091, 1129, 1196, 1279, 1407, 1614, 1898, 2802, 3082, 2054, 1726, 1509, 1360, 1257, 1179, 1127, 1114, 1126, 1164, 1226, 1323, 1461, 1664, 1991, 3010, 3461, 2224, 1783, 1563, 1404, 1300, 1230, 1170, 1162, 1168, 1210, 1276, 1371, 1512, 1726, 2143, 3442, 4045, 2442, 1870, 1634, 1471, 1351, 1284, 1228, 1216, 1219, 1259, 1332, 1429, 1575, 1808, 2379, 3970, 4758, 2777, 1979, 1721, 1541, 1429, 1340, 1300, 1269, 1289, 1321, 1395, 1491, 1659, 1926, 2696, 4758, 6048, 3268, 2255, 1833, 1638, 1491, 1419, 1365, 1351, 1348, 1404, 1478, 1586, 1763, 2172, 3157, 5937]
| },
| "lsc_samples_greenB": {
| "uCoeff": [5374, 2929, 2038, 1729, 1567, 1445, 1349, 1306, 1288, 1295, 1349, 1407, 1537, 1693, 1965, 2755, 5002, 4335, 2560, 1885, 1655, 1478, 1360, 1288, 1241, 1227, 1239, 1280, 1346, 1448, 1594, 1821, 2426, 4039, 3674, 2290, 1801, 1574, 1410, 1311, 1239, 1178, 1176, 1176, 1220, 1285, 1381, 1526, 1753, 2175, 3515, 3301, 2146, 1753, 1512, 1360, 1263, 1197, 1149, 1131, 1141, 1176, 1236, 1338, 1474, 1676, 2038, 3082, 2996, 2001, 1693, 1485, 1338, 1225, 1159, 1112, 1084, 1100, 1141, 1204, 1300, 1439, 1622, 1918, 2827, 2827, 1935, 1650, 1448, 1306, 1200, 1127, 1075, 1059, 1066, 1113, 1172, 1270, 1395, 1578, 1858, 2665, 2676, 1885, 1617, 1426, 1288, 1182, 1108, 1057, 1034, 1052, 1089, 1157, 1255, 1386, 1548, 1816, 2570, 2643, 1885, 1610, 1420, 1277, 1180, 1098, 1045, 1024, 1045, 1078, 1155, 1248, 1372, 1548, 1801, 2482, 2643, 1890, 1605, 1407, 1280, 1172, 1089, 1045, 1027, 1044, 1086, 1149, 1241, 1360, 1552, 1796, 2511, 2654, 1901, 1617, 1429, 1288, 1180, 1100, 1054, 1035, 1047, 1086, 1159, 1253, 1383, 1556, 1816, 2530, 2755, 1907, 1642, 1439, 1298, 1197, 1119, 1073, 1050, 1062, 1106, 1172, 1268, 1392, 1582, 1853, 2687, 2929, 1995, 1672, 1478, 1332, 1227, 1145, 1104, 1087, 1095, 1141, 1197, 1293, 1429, 1626, 1901, 2840, 3203, 2064, 1729, 1523, 1372, 1260, 1176, 1135, 1119, 1133, 1169, 1231, 1324, 1464, 1672, 2019, 3053, 3553, 2242, 1806, 1567, 1410, 1300, 1234, 1182, 1165, 1169, 1206, 1275, 1375, 1516, 1725, 2146, 3440, 4064, 2472, 1874, 1626, 1461, 1357, 1277, 1236, 1215, 1229, 1260, 1335, 1439, 1598, 1816, 2391, 3965, 4926, 2803, 1989, 1729, 1552, 1429, 1338, 1295, 1275, 1283, 1324, 1395, 1516, 1663, 1947, 2732, 4746, 6193, 3284, 2242, 1811, 1626, 1505, 1417, 1363, 1346, 1343, 1401, 1464, 1598, 1772, 2182, 3187, 6193]
| },
| "lsc_samples_blue": {
| "uCoeff": [4736, 2706, 1994, 1705, 1509, 1415, 1337, 1287, 1258, 1258, 1306, 1392, 1483, 1631, 1916, 2623, 4372, 3919, 2436, 1843, 1608, 1451, 1353, 1272, 1231, 1209, 1227, 1258, 1327, 1415, 1557, 1767, 2320, 3789, 3444, 2200, 1776, 1557, 1386, 1297, 1227, 1188, 1172, 1160, 1214, 1277, 1364, 1489, 1672, 2092, 3248, 3072, 2054, 1697, 1483, 1353, 1249, 1180, 1140, 1129, 1133, 1168, 1235, 1317, 1445, 1624, 1949, 2890, 2842, 1949, 1639, 1445, 1322, 1222, 1144, 1093, 1083, 1093, 1133, 1196, 1277, 1409, 1586, 1853, 2664, 2623, 1884, 1616, 1409, 1277, 1188, 1118, 1072, 1043, 1062, 1100, 1156, 1268, 1375, 1557, 1776, 2471, 2564, 1824, 1593, 1403, 1268, 1168, 1100, 1059, 1036, 1049, 1093, 1148, 1235, 1348, 1516, 1758, 2352, 2471, 1833, 1557, 1386, 1268, 1164, 1089, 1040, 1024, 1033, 1076, 1137, 1222, 1342, 1509, 1731, 2320, 2507, 1814, 1571, 1392, 1272, 1168, 1086, 1036, 1024, 1033, 1066, 1137, 1227, 1332, 1509, 1740, 2385, 2526, 1843, 1564, 1392, 1287, 1184, 1089, 1049, 1027, 1043, 1086, 1144, 1245, 1353, 1509, 1758, 2368, 2623, 1853, 1608, 1409, 1282, 1192, 1114, 1062, 1046, 1059, 1096, 1160, 1249, 1364, 1536, 1767, 2453, 2728, 1905, 1639, 1439, 1306, 1201, 1144, 1096, 1069, 1086, 1118, 1184, 1272, 1380, 1557, 1833, 2623, 2991, 2006, 1672, 1476, 1342, 1249, 1168, 1118, 1118, 1125, 1164, 1214, 1306, 1439, 1593, 1926, 2842, 3343, 2145, 1749, 1536, 1392, 1292, 1218, 1168, 1152, 1152, 1201, 1245, 1348, 1496, 1672, 2079, 3187, 3747, 2352, 1824, 1593, 1463, 1337, 1258, 1214, 1201, 1218, 1249, 1297, 1397, 1536, 1722, 2258, 3707, 4608, 2643, 1937, 1688, 1516, 1397, 1317, 1272, 1268, 1268, 1301, 1359, 1470, 1616, 1863, 2526, 4428, 5878, 3100, 2158, 1785, 1601, 1470, 1380, 1337, 1322, 1337, 1369, 1439, 1529, 1697, 2079, 2965, 5499]
| }
| }, {
| "name": "3840x2160_D65_70",
| "resolution": "3840x2160",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [4014, 2524, 1864, 1627, 1502, 1403, 1346, 1284, 1281, 1284, 1334, 1379, 1481, 1595, 1820, 2398, 3720, 3490, 2259, 1754, 1574, 1450, 1346, 1271, 1230, 1217, 1230, 1266, 1323, 1412, 1536, 1715, 2144, 3233, 3056, 2033, 1682, 1509, 1388, 1301, 1226, 1187, 1170, 1170, 1217, 1275, 1358, 1467, 1638, 1967, 2806, 2750, 1931, 1647, 1467, 1352, 1244, 1192, 1142, 1126, 1142, 1166, 1230, 1314, 1441, 1574, 1850, 2622, 2548, 1860, 1612, 1426, 1317, 1223, 1150, 1111, 1088, 1091, 1134, 1199, 1285, 1395, 1565, 1776, 2439, 2433, 1783, 1578, 1411, 1297, 1192, 1118, 1085, 1063, 1066, 1111, 1179, 1257, 1369, 1518, 1724, 2299, 2326, 1767, 1566, 1389, 1268, 1184, 1111, 1070, 1045, 1045, 1085, 1162, 1244, 1360, 1500, 1701, 2271, 2331, 1760, 1545, 1379, 1259, 1172, 1104, 1045, 1027, 1034, 1081, 1138, 1240, 1350, 1494, 1685, 2209, 2315, 1761, 1545, 1385, 1269, 1177, 1100, 1041, 1024, 1038, 1077, 1154, 1235, 1339, 1502, 1677, 2261, 2369, 1760, 1560, 1397, 1285, 1172, 1104, 1067, 1038, 1059, 1088, 1154, 1249, 1361, 1494, 1694, 2277, 2383, 1777, 1574, 1420, 1289, 1193, 1127, 1070, 1059, 1063, 1103, 1171, 1253, 1371, 1521, 1719, 2307, 2540, 1835, 1601, 1450, 1314, 1220, 1148, 1108, 1085, 1092, 1152, 1192, 1282, 1411, 1555, 1762, 2373, 2719, 1894, 1645, 1479, 1350, 1256, 1189, 1139, 1123, 1135, 1168, 1232, 1317, 1439, 1596, 1827, 2643, 2955, 2020, 1682, 1523, 1386, 1305, 1229, 1185, 1172, 1172, 1201, 1274, 1357, 1474, 1647, 1955, 2924, 3360, 2196, 1756, 1584, 1463, 1351, 1286, 1243, 1215, 1234, 1265, 1322, 1424, 1530, 1709, 2165, 3239, 3910, 2468, 1869, 1665, 1526, 1404, 1345, 1295, 1280, 1279, 1307, 1385, 1476, 1613, 1804, 2368, 3851, 4883, 2799, 2023, 1743, 1607, 1473, 1417, 1350, 1357, 1332, 1392, 1460, 1568, 1661, 1984, 2692, 4609]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3846, 2422, 1831, 1595, 1482, 1371, 1306, 1271, 1267, 1275, 1294, 1352, 1447, 1545, 1758, 2312, 3590, 3310, 2161, 1722, 1558, 1415, 1324, 1265, 1222, 1203, 1220, 1248, 1298, 1384, 1510, 1654, 2096, 3092, 2955, 2002, 1661, 1491, 1371, 1279, 1214, 1174, 1164, 1163, 1196, 1255, 1341, 1444, 1601, 1907, 2772, 2638, 1871, 1610, 1450, 1324, 1239, 1172, 1137, 1115, 1129, 1165, 1220, 1306, 1423, 1554, 1804, 2505, 2483, 1803, 1568, 1412, 1295, 1209, 1143, 1099, 1087, 1093, 1127, 1181, 1271, 1372, 1525, 1728, 2367, 2353, 1767, 1544, 1387, 1275, 1184, 1116, 1074, 1049, 1062, 1106, 1170, 1253, 1357, 1493, 1691, 2250, 2283, 1730, 1537, 1369, 1262, 1169, 1097, 1052, 1035, 1047, 1083, 1149, 1232, 1334, 1480, 1649, 2172, 2239, 1719, 1518, 1363, 1256, 1161, 1088, 1042, 1024, 1039, 1072, 1141, 1222, 1323, 1472, 1644, 2162, 2216, 1712, 1515, 1366, 1256, 1157, 1088, 1044, 1027, 1037, 1070, 1137, 1218, 1326, 1469, 1644, 2148, 2280, 1719, 1535, 1373, 1266, 1172, 1098, 1054, 1027, 1047, 1087, 1143, 1235, 1333, 1478, 1660, 2176, 2308, 1748, 1550, 1392, 1274, 1183, 1116, 1068, 1051, 1056, 1099, 1164, 1242, 1353, 1500, 1686, 2234, 2408, 1791, 1573, 1418, 1300, 1210, 1142, 1100, 1081, 1090, 1126, 1188, 1261, 1367, 1530, 1735, 2380, 2578, 1854, 1621, 1455, 1333, 1245, 1174, 1125, 1112, 1124, 1159, 1215, 1299, 1412, 1568, 1803, 2524, 2841, 1979, 1662, 1497, 1370, 1282, 1221, 1165, 1158, 1163, 1202, 1260, 1340, 1453, 1614, 1915, 2827, 3241, 2136, 1725, 1552, 1425, 1326, 1269, 1218, 1208, 1210, 1245, 1308, 1388, 1501, 1673, 2087, 3186, 3710, 2375, 1802, 1618, 1481, 1392, 1317, 1283, 1255, 1272, 1299, 1361, 1436, 1565, 1758, 2312, 3710, 4541, 2718, 2007, 1700, 1556, 1440, 1383, 1338, 1326, 1322, 1369, 1429, 1511, 1641, 1940, 2634, 4463]
| },
| "lsc_samples_greenB": {
| "uCoeff": [4069, 2462, 1833, 1613, 1495, 1399, 1319, 1283, 1268, 1273, 1319, 1365, 1469, 1583, 1775, 2330, 3809, 3405, 2208, 1725, 1562, 1425, 1329, 1269, 1227, 1215, 1226, 1261, 1316, 1399, 1510, 1673, 2104, 3192, 2969, 2017, 1668, 1500, 1371, 1289, 1226, 1171, 1169, 1169, 1209, 1265, 1345, 1459, 1628, 1927, 2852, 2722, 1917, 1636, 1453, 1330, 1248, 1189, 1145, 1128, 1137, 1169, 1222, 1310, 1419, 1572, 1831, 2559, 2514, 1811, 1593, 1434, 1313, 1214, 1154, 1110, 1083, 1098, 1137, 1194, 1278, 1393, 1532, 1744, 2386, 2399, 1765, 1561, 1404, 1286, 1192, 1124, 1074, 1059, 1065, 1111, 1165, 1252, 1357, 1499, 1702, 2276, 2293, 1729, 1536, 1387, 1271, 1176, 1106, 1057, 1034, 1052, 1088, 1152, 1240, 1351, 1476, 1672, 2211, 2273, 1731, 1532, 1383, 1261, 1174, 1097, 1045, 1024, 1045, 1077, 1150, 1234, 1339, 1478, 1662, 2148, 2274, 1736, 1528, 1371, 1264, 1167, 1088, 1045, 1027, 1044, 1085, 1145, 1228, 1329, 1482, 1659, 2172, 2281, 1745, 1538, 1391, 1272, 1174, 1099, 1054, 1035, 1047, 1085, 1154, 1239, 1349, 1485, 1675, 2186, 2354, 1747, 1557, 1398, 1280, 1190, 1117, 1073, 1050, 1062, 1104, 1166, 1252, 1356, 1506, 1702, 2301, 2477, 1814, 1580, 1431, 1310, 1218, 1142, 1103, 1086, 1094, 1138, 1189, 1274, 1387, 1540, 1737, 2409, 2670, 1862, 1623, 1467, 1344, 1247, 1171, 1132, 1117, 1130, 1164, 1220, 1300, 1415, 1575, 1826, 2557, 2910, 1994, 1681, 1501, 1375, 1282, 1224, 1177, 1161, 1164, 1198, 1259, 1344, 1456, 1613, 1917, 2826, 3255, 2160, 1728, 1545, 1416, 1331, 1262, 1226, 1207, 1219, 1246, 1311, 1397, 1521, 1680, 2096, 3182, 3830, 2395, 1810, 1625, 1490, 1392, 1315, 1278, 1260, 1267, 1302, 1361, 1459, 1568, 1776, 2340, 3701, 4642, 2730, 1996, 1682, 1546, 1453, 1381, 1336, 1321, 1318, 1367, 1416, 1521, 1649, 1948, 2656, 4642]
| },
| "lsc_samples_blue": {
| "uCoeff": [3622, 2293, 1798, 1593, 1444, 1372, 1309, 1266, 1240, 1239, 1280, 1352, 1422, 1531, 1736, 2231, 3368, 3106, 2112, 1691, 1521, 1401, 1323, 1254, 1218, 1198, 1214, 1241, 1299, 1369, 1478, 1629, 2023, 3013, 2800, 1946, 1647, 1486, 1349, 1276, 1215, 1180, 1166, 1154, 1203, 1258, 1329, 1427, 1561, 1862, 2656, 2551, 1844, 1589, 1427, 1324, 1235, 1173, 1136, 1126, 1129, 1161, 1221, 1291, 1394, 1528, 1760, 2415, 2397, 1769, 1547, 1398, 1298, 1211, 1140, 1091, 1082, 1091, 1129, 1187, 1257, 1366, 1502, 1692, 2263, 2244, 1723, 1532, 1369, 1259, 1181, 1116, 1071, 1043, 1061, 1098, 1150, 1251, 1339, 1481, 1635, 2128, 2207, 1679, 1515, 1366, 1252, 1162, 1098, 1059, 1036, 1049, 1092, 1143, 1221, 1316, 1449, 1625, 2044, 2140, 1689, 1486, 1352, 1253, 1159, 1088, 1040, 1024, 1033, 1075, 1133, 1210, 1312, 1444, 1605, 2024, 2169, 1674, 1499, 1358, 1257, 1163, 1085, 1036, 1024, 1033, 1065, 1133, 1215, 1303, 1445, 1613, 2075, 2182, 1697, 1492, 1357, 1271, 1178, 1088, 1049, 1027, 1043, 1085, 1140, 1231, 1322, 1444, 1627, 2061, 2252, 1702, 1528, 1371, 1265, 1185, 1112, 1062, 1046, 1059, 1095, 1155, 1234, 1331, 1466, 1632, 2122, 2324, 1740, 1551, 1396, 1286, 1193, 1141, 1095, 1069, 1085, 1116, 1177, 1254, 1343, 1481, 1682, 2244, 2510, 1815, 1575, 1426, 1317, 1237, 1163, 1116, 1116, 1123, 1159, 1204, 1284, 1393, 1508, 1751, 2397, 2753, 1916, 1633, 1474, 1359, 1275, 1209, 1163, 1148, 1148, 1193, 1231, 1319, 1439, 1568, 1864, 2637, 3022, 2066, 1687, 1517, 1418, 1313, 1244, 1205, 1193, 1209, 1236, 1276, 1359, 1467, 1602, 1992, 2993, 3602, 2272, 1767, 1590, 1459, 1363, 1295, 1256, 1254, 1253, 1281, 1328, 1418, 1528, 1707, 2181, 3472, 4422, 2591, 1929, 1660, 1524, 1422, 1348, 1312, 1299, 1312, 1338, 1394, 1462, 1586, 1866, 2489, 4157]
| }
| }, {
| "name": "3840x2160_D65_30",
| "resolution": "3840x2160",
| "illumination": "D65",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [2306, 1874, 1581, 1469, 1404, 1341, 1303, 1254, 1253, 1254, 1293, 1321, 1387, 1445, 1552, 1802, 2180, 2206, 1769, 1532, 1447, 1375, 1302, 1245, 1212, 1201, 1212, 1240, 1283, 1343, 1417, 1505, 1700, 2083, 2073, 1663, 1500, 1409, 1333, 1270, 1210, 1176, 1161, 1160, 1201, 1247, 1307, 1376, 1468, 1621, 1944, 1965, 1621, 1489, 1385, 1309, 1224, 1181, 1136, 1122, 1136, 1157, 1211, 1276, 1364, 1435, 1568, 1895, 1890, 1591, 1474, 1359, 1283, 1208, 1144, 1108, 1086, 1089, 1129, 1186, 1255, 1333, 1438, 1534, 1828, 1849, 1550, 1455, 1351, 1269, 1181, 1115, 1084, 1062, 1066, 1108, 1169, 1233, 1316, 1409, 1510, 1770, 1802, 1547, 1451, 1336, 1245, 1176, 1109, 1069, 1045, 1045, 1083, 1155, 1223, 1311, 1399, 1501, 1769, 1814, 1547, 1438, 1329, 1239, 1164, 1102, 1045, 1027, 1034, 1080, 1132, 1221, 1305, 1398, 1494, 1740, 1807, 1549, 1439, 1335, 1248, 1169, 1098, 1041, 1024, 1038, 1076, 1148, 1217, 1295, 1405, 1490, 1775, 1837, 1547, 1450, 1345, 1262, 1164, 1102, 1066, 1038, 1059, 1086, 1148, 1229, 1314, 1398, 1500, 1781, 1836, 1554, 1457, 1363, 1264, 1184, 1124, 1069, 1059, 1062, 1101, 1163, 1232, 1321, 1416, 1513, 1791, 1912, 1586, 1473, 1384, 1284, 1207, 1143, 1106, 1084, 1091, 1147, 1181, 1256, 1351, 1437, 1536, 1814, 1987, 1614, 1499, 1403, 1313, 1238, 1181, 1136, 1120, 1132, 1161, 1217, 1283, 1369, 1461, 1569, 1944, 2077, 1680, 1515, 1431, 1339, 1279, 1216, 1178, 1166, 1165, 1189, 1251, 1314, 1391, 1489, 1637, 2060, 2230, 1766, 1554, 1468, 1397, 1315, 1264, 1229, 1204, 1220, 1245, 1289, 1364, 1426, 1520, 1747, 2167, 2408, 1895, 1612, 1516, 1437, 1353, 1311, 1271, 1259, 1256, 1277, 1337, 1397, 1477, 1567, 1835, 2380, 2678, 2030, 1686, 1555, 1488, 1400, 1364, 1312, 1320, 1297, 1343, 1389, 1457, 1494, 1660, 1969, 2560]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2234, 1816, 1559, 1445, 1388, 1314, 1268, 1242, 1240, 1246, 1258, 1299, 1360, 1408, 1510, 1754, 2124, 2120, 1710, 1510, 1434, 1346, 1283, 1239, 1204, 1188, 1203, 1224, 1261, 1321, 1397, 1463, 1671, 2016, 2021, 1644, 1485, 1395, 1318, 1251, 1198, 1164, 1155, 1154, 1182, 1229, 1293, 1357, 1442, 1584, 1926, 1904, 1582, 1461, 1371, 1285, 1220, 1163, 1132, 1111, 1124, 1156, 1202, 1269, 1349, 1420, 1538, 1832, 1853, 1552, 1440, 1347, 1264, 1195, 1137, 1097, 1085, 1091, 1122, 1169, 1242, 1314, 1407, 1502, 1787, 1802, 1539, 1429, 1331, 1249, 1174, 1112, 1073, 1048, 1062, 1103, 1161, 1230, 1305, 1389, 1486, 1741, 1776, 1521, 1428, 1319, 1240, 1161, 1095, 1051, 1035, 1047, 1081, 1142, 1213, 1289, 1383, 1464, 1710, 1758, 1518, 1416, 1315, 1235, 1154, 1086, 1042, 1024, 1039, 1071, 1135, 1205, 1281, 1380, 1464, 1712, 1748, 1514, 1415, 1319, 1236, 1151, 1087, 1044, 1027, 1037, 1069, 1132, 1201, 1284, 1378, 1466, 1706, 1783, 1518, 1430, 1325, 1245, 1164, 1096, 1054, 1027, 1047, 1086, 1137, 1217, 1290, 1385, 1476, 1721, 1791, 1534, 1439, 1339, 1251, 1175, 1114, 1067, 1051, 1055, 1097, 1157, 1221, 1305, 1399, 1490, 1747, 1834, 1556, 1451, 1358, 1272, 1198, 1138, 1098, 1081, 1089, 1123, 1178, 1237, 1314, 1418, 1517, 1818, 1907, 1587, 1480, 1383, 1298, 1228, 1166, 1121, 1110, 1120, 1153, 1201, 1268, 1347, 1440, 1552, 1876, 2015, 1653, 1500, 1410, 1325, 1259, 1208, 1158, 1152, 1157, 1190, 1238, 1298, 1373, 1464, 1611, 2007, 2168, 1729, 1531, 1443, 1365, 1292, 1249, 1206, 1197, 1198, 1227, 1277, 1333, 1403, 1494, 1697, 2140, 2312, 1839, 1565, 1480, 1400, 1342, 1286, 1260, 1235, 1250, 1270, 1316, 1364, 1439, 1535, 1801, 2312, 2531, 1984, 1676, 1523, 1447, 1373, 1335, 1301, 1293, 1288, 1323, 1363, 1411, 1479, 1632, 1936, 2498]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2329, 1839, 1561, 1458, 1398, 1338, 1280, 1253, 1241, 1244, 1280, 1310, 1377, 1436, 1522, 1764, 2217, 2166, 1738, 1512, 1437, 1354, 1288, 1243, 1209, 1199, 1208, 1236, 1277, 1333, 1397, 1476, 1676, 2064, 2028, 1653, 1490, 1402, 1318, 1260, 1210, 1161, 1161, 1159, 1193, 1238, 1296, 1369, 1461, 1596, 1968, 1950, 1612, 1481, 1373, 1290, 1227, 1179, 1139, 1123, 1132, 1160, 1204, 1272, 1346, 1433, 1555, 1861, 1870, 1558, 1459, 1365, 1280, 1200, 1148, 1107, 1081, 1096, 1132, 1182, 1249, 1331, 1413, 1513, 1798, 1829, 1538, 1442, 1345, 1259, 1181, 1121, 1073, 1058, 1065, 1108, 1156, 1229, 1305, 1394, 1494, 1757, 1782, 1520, 1428, 1334, 1248, 1168, 1104, 1056, 1034, 1051, 1086, 1145, 1220, 1303, 1381, 1480, 1733, 1779, 1527, 1427, 1333, 1240, 1167, 1095, 1045, 1024, 1045, 1076, 1144, 1216, 1295, 1385, 1478, 1704, 1783, 1532, 1425, 1323, 1244, 1160, 1087, 1045, 1027, 1044, 1084, 1139, 1210, 1287, 1389, 1477, 1721, 1784, 1536, 1432, 1340, 1250, 1167, 1097, 1054, 1035, 1047, 1084, 1148, 1220, 1304, 1390, 1486, 1726, 1818, 1533, 1445, 1344, 1256, 1181, 1114, 1072, 1050, 1061, 1102, 1158, 1231, 1308, 1404, 1502, 1787, 1875, 1572, 1457, 1368, 1281, 1206, 1138, 1101, 1085, 1093, 1134, 1179, 1248, 1331, 1426, 1519, 1835, 1959, 1592, 1482, 1393, 1308, 1231, 1164, 1129, 1115, 1127, 1157, 1205, 1269, 1349, 1445, 1568, 1895, 2052, 1662, 1514, 1413, 1329, 1259, 1212, 1169, 1155, 1157, 1187, 1238, 1302, 1376, 1463, 1612, 2006, 2176, 1744, 1533, 1438, 1357, 1297, 1243, 1213, 1196, 1206, 1228, 1279, 1340, 1419, 1499, 1703, 2138, 2370, 1851, 1571, 1485, 1408, 1342, 1284, 1255, 1241, 1245, 1273, 1316, 1382, 1442, 1547, 1818, 2308, 2575, 1990, 1669, 1509, 1439, 1383, 1334, 1300, 1289, 1284, 1321, 1352, 1419, 1485, 1637, 1949, 2575]
| },
| "lsc_samples_blue": {
| "uCoeff": [2138, 1743, 1537, 1444, 1358, 1316, 1271, 1238, 1216, 1214, 1246, 1299, 1340, 1398, 1496, 1708, 2028, 2022, 1680, 1488, 1406, 1335, 1283, 1229, 1201, 1184, 1197, 1218, 1262, 1309, 1373, 1445, 1626, 1978, 1941, 1608, 1475, 1390, 1300, 1248, 1199, 1170, 1157, 1145, 1188, 1232, 1283, 1344, 1412, 1555, 1866, 1857, 1564, 1446, 1353, 1284, 1215, 1163, 1131, 1122, 1124, 1153, 1203, 1256, 1325, 1400, 1509, 1783, 1804, 1529, 1424, 1335, 1267, 1197, 1134, 1089, 1080, 1089, 1124, 1175, 1230, 1309, 1389, 1477, 1728, 1738, 1509, 1419, 1316, 1235, 1171, 1112, 1070, 1043, 1061, 1095, 1142, 1227, 1290, 1380, 1448, 1670, 1731, 1485, 1411, 1316, 1231, 1155, 1096, 1058, 1036, 1048, 1090, 1137, 1203, 1274, 1359, 1447, 1633, 1699, 1496, 1391, 1306, 1233, 1152, 1086, 1040, 1024, 1033, 1074, 1128, 1193, 1272, 1358, 1437, 1628, 1719, 1487, 1402, 1312, 1237, 1156, 1084, 1036, 1024, 1033, 1064, 1128, 1198, 1265, 1359, 1444, 1662, 1724, 1502, 1396, 1311, 1249, 1171, 1086, 1049, 1027, 1043, 1084, 1134, 1213, 1280, 1358, 1453, 1651, 1758, 1502, 1421, 1321, 1243, 1177, 1110, 1061, 1046, 1058, 1093, 1148, 1215, 1286, 1372, 1452, 1680, 1785, 1521, 1435, 1339, 1259, 1182, 1137, 1094, 1068, 1084, 1112, 1167, 1231, 1294, 1380, 1480, 1738, 1868, 1561, 1445, 1358, 1283, 1221, 1156, 1113, 1114, 1119, 1153, 1190, 1254, 1331, 1394, 1517, 1804, 1967, 1612, 1479, 1391, 1315, 1252, 1197, 1157, 1143, 1142, 1182, 1212, 1280, 1362, 1430, 1577, 1904, 2056, 1684, 1503, 1415, 1358, 1281, 1226, 1193, 1183, 1197, 1218, 1248, 1308, 1376, 1442, 1637, 2040, 2260, 1777, 1541, 1458, 1382, 1317, 1267, 1236, 1235, 1232, 1253, 1287, 1349, 1411, 1499, 1722, 2198, 2480, 1912, 1624, 1493, 1421, 1357, 1305, 1279, 1269, 1279, 1296, 1334, 1372, 1439, 1582, 1854, 2367]
| }
| }, {
| "name": "3840x2160_D75_100",
| "resolution": "3840x2160",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5103, 2985, 2068, 1798, 1582, 1451, 1382, 1291, 1307, 1313, 1358, 1419, 1536, 1692, 1978, 2850, 5022, 4457, 2572, 1929, 1683, 1485, 1382, 1297, 1256, 1226, 1241, 1271, 1352, 1458, 1623, 1850, 2453, 4109, 3723, 2379, 1840, 1590, 1432, 1302, 1231, 1194, 1181, 1181, 1222, 1286, 1400, 1521, 1739, 2213, 3555, 3402, 2152, 1768, 1536, 1376, 1266, 1190, 1146, 1130, 1134, 1181, 1246, 1358, 1479, 1701, 2068, 3133, 3072, 2055, 1701, 1485, 1346, 1226, 1155, 1102, 1084, 1110, 1142, 1217, 1302, 1445, 1631, 1929, 2877, 2903, 1965, 1674, 1438, 1297, 1199, 1126, 1084, 1051, 1065, 1106, 1176, 1266, 1406, 1590, 1861, 2681, 2751, 1918, 1631, 1425, 1281, 1199, 1110, 1062, 1037, 1048, 1087, 1168, 1251, 1394, 1574, 1850, 2659, 2659, 1906, 1623, 1438, 1271, 1181, 1091, 1051, 1027, 1041, 1084, 1151, 1236, 1370, 1566, 1818, 2511, 2659, 1906, 1614, 1413, 1286, 1168, 1099, 1048, 1024, 1034, 1076, 1142, 1241, 1376, 1559, 1818, 2531, 2751, 1918, 1639, 1419, 1286, 1181, 1106, 1055, 1037, 1048, 1087, 1168, 1256, 1382, 1574, 1818, 2552, 2800, 1941, 1648, 1451, 1313, 1194, 1122, 1069, 1051, 1062, 1110, 1181, 1266, 1400, 1598, 1850, 2728, 2985, 2015, 1692, 1479, 1335, 1222, 1159, 1102, 1084, 1091, 1130, 1199, 1286, 1438, 1631, 1929, 2800, 3262, 2109, 1748, 1529, 1382, 1261, 1190, 1138, 1126, 1130, 1176, 1231, 1335, 1485, 1683, 2028, 3164, 3637, 2260, 1829, 1598, 1425, 1302, 1222, 1181, 1168, 1172, 1208, 1286, 1376, 1543, 1748, 2197, 3516, 4163, 2511, 1906, 1665, 1500, 1364, 1302, 1236, 1222, 1236, 1271, 1341, 1451, 1598, 1829, 2415, 4057, 5188, 2825, 2041, 1739, 1566, 1432, 1358, 1307, 1281, 1291, 1335, 1413, 1521, 1701, 1965, 2775, 4867, 6733, 3439, 2276, 1861, 1665, 1514, 1445, 1388, 1358, 1370, 1413, 1500, 1657, 1829, 2213, 3262, 6329]
| },
| "lsc_samples_greenR": {
| "uCoeff": [5097, 2882, 2039, 1720, 1552, 1426, 1358, 1294, 1274, 1291, 1329, 1388, 1508, 1678, 1957, 2754, 4844, 4190, 2530, 1882, 1646, 1469, 1361, 1286, 1242, 1222, 1228, 1272, 1342, 1438, 1596, 1807, 2405, 4017, 3633, 2292, 1797, 1567, 1408, 1303, 1228, 1192, 1170, 1180, 1224, 1279, 1371, 1518, 1725, 2155, 3398, 3252, 2108, 1725, 1501, 1355, 1260, 1186, 1138, 1135, 1135, 1172, 1242, 1329, 1469, 1658, 2015, 3036, 2970, 1997, 1678, 1463, 1326, 1222, 1152, 1103, 1081, 1096, 1138, 1196, 1294, 1426, 1603, 1903, 2822, 2765, 1924, 1642, 1435, 1296, 1188, 1125, 1076, 1056, 1066, 1109, 1178, 1270, 1388, 1574, 1846, 2617, 2658, 1871, 1611, 1429, 1274, 1178, 1102, 1056, 1035, 1046, 1091, 1154, 1246, 1371, 1549, 1797, 2502, 2607, 1856, 1596, 1408, 1267, 1178, 1089, 1044, 1024, 1040, 1079, 1156, 1233, 1363, 1542, 1783, 2457, 2587, 1866, 1603, 1408, 1270, 1170, 1096, 1038, 1027, 1036, 1079, 1140, 1233, 1361, 1538, 1783, 2484, 2658, 1871, 1619, 1414, 1277, 1182, 1102, 1054, 1038, 1048, 1089, 1158, 1246, 1377, 1549, 1812, 2511, 2710, 1908, 1622, 1429, 1298, 1190, 1120, 1071, 1054, 1067, 1102, 1170, 1258, 1385, 1563, 1841, 2627, 2870, 1963, 1654, 1456, 1324, 1226, 1144, 1100, 1082, 1096, 1131, 1198, 1289, 1420, 1600, 1892, 2754, 3063, 2063, 1712, 1501, 1361, 1251, 1184, 1135, 1118, 1125, 1168, 1233, 1321, 1466, 1654, 2009, 3022, 3502, 2203, 1779, 1570, 1397, 1291, 1231, 1182, 1158, 1170, 1207, 1267, 1369, 1511, 1725, 2134, 3365, 4017, 2439, 1876, 1634, 1469, 1347, 1272, 1231, 1211, 1224, 1258, 1326, 1423, 1574, 1797, 2372, 4017, 4810, 2776, 1985, 1716, 1538, 1414, 1339, 1291, 1270, 1286, 1321, 1391, 1504, 1666, 1929, 2678, 4776, 6209, 3237, 2218, 1812, 1634, 1491, 1411, 1366, 1347, 1339, 1388, 1463, 1588, 1734, 2155, 3192, 6153]
| },
| "lsc_samples_greenB": {
| "uCoeff": [5222, 2899, 2060, 1736, 1555, 1443, 1349, 1303, 1291, 1300, 1341, 1405, 1513, 1677, 1954, 2714, 4851, 4357, 2552, 1884, 1652, 1487, 1374, 1293, 1248, 1230, 1239, 1276, 1341, 1443, 1602, 1810, 2426, 4048, 3638, 2311, 1805, 1576, 1416, 1310, 1235, 1192, 1177, 1175, 1219, 1286, 1385, 1523, 1741, 2172, 3472, 3289, 2138, 1745, 1513, 1365, 1264, 1194, 1148, 1127, 1134, 1173, 1241, 1333, 1477, 1668, 2018, 3109, 2974, 2018, 1697, 1477, 1326, 1226, 1155, 1110, 1094, 1103, 1144, 1200, 1303, 1434, 1629, 1927, 2827, 2815, 1932, 1652, 1446, 1300, 1200, 1127, 1082, 1061, 1074, 1109, 1171, 1271, 1402, 1587, 1859, 2651, 2725, 1905, 1613, 1428, 1288, 1181, 1107, 1065, 1040, 1051, 1093, 1165, 1255, 1385, 1562, 1824, 2543, 2611, 1890, 1606, 1410, 1274, 1171, 1098, 1052, 1029, 1040, 1082, 1144, 1237, 1363, 1551, 1805, 2543, 2631, 1884, 1602, 1405, 1276, 1167, 1096, 1046, 1024, 1040, 1074, 1152, 1239, 1376, 1544, 1805, 2524, 2672, 1895, 1610, 1413, 1281, 1183, 1105, 1057, 1030, 1051, 1089, 1155, 1248, 1371, 1555, 1814, 2581, 2747, 1911, 1640, 1440, 1300, 1196, 1120, 1074, 1052, 1057, 1105, 1167, 1260, 1402, 1580, 1854, 2641, 2899, 1988, 1677, 1462, 1315, 1221, 1142, 1109, 1081, 1089, 1133, 1194, 1288, 1422, 1610, 1911, 2792, 3182, 2079, 1719, 1510, 1371, 1251, 1175, 1138, 1120, 1125, 1167, 1230, 1323, 1465, 1668, 2018, 3095, 3526, 2228, 1791, 1576, 1402, 1298, 1221, 1177, 1152, 1169, 1209, 1267, 1374, 1510, 1736, 2165, 3420, 4048, 2452, 1864, 1625, 1465, 1347, 1271, 1226, 1213, 1219, 1262, 1326, 1428, 1573, 1795, 2375, 3954, 4886, 2792, 1994, 1719, 1544, 1413, 1333, 1286, 1271, 1279, 1315, 1379, 1497, 1660, 1943, 2682, 4783, 6219, 3257, 2228, 1829, 1625, 1500, 1407, 1360, 1341, 1341, 1382, 1465, 1595, 1754, 2138, 3196, 6162]
| },
| "lsc_samples_blue": {
| "uCoeff": [4918, 2728, 2012, 1695, 1538, 1408, 1323, 1269, 1289, 1285, 1323, 1383, 1486, 1639, 1888, 2603, 4476, 4024, 2444, 1844, 1626, 1464, 1350, 1285, 1245, 1218, 1226, 1265, 1328, 1433, 1574, 1762, 2316, 3688, 3494, 2225, 1755, 1544, 1393, 1297, 1222, 1196, 1161, 1179, 1207, 1269, 1364, 1497, 1688, 2097, 3213, 3112, 2064, 1702, 1509, 1355, 1253, 1189, 1158, 1128, 1141, 1172, 1237, 1319, 1448, 1632, 1953, 2908, 2845, 1972, 1646, 1454, 1310, 1222, 1151, 1110, 1080, 1100, 1141, 1196, 1285, 1412, 1587, 1853, 2656, 2673, 1879, 1606, 1423, 1297, 1193, 1122, 1080, 1057, 1071, 1106, 1179, 1257, 1374, 1550, 1770, 2521, 2570, 1853, 1593, 1403, 1273, 1186, 1103, 1065, 1037, 1051, 1094, 1155, 1233, 1369, 1515, 1747, 2414, 2459, 1827, 1568, 1398, 1265, 1165, 1091, 1040, 1027, 1037, 1082, 1141, 1233, 1346, 1515, 1739, 2357, 2490, 1819, 1562, 1393, 1269, 1168, 1106, 1051, 1024, 1048, 1074, 1138, 1229, 1337, 1509, 1732, 2371, 2587, 1836, 1574, 1418, 1281, 1179, 1106, 1057, 1037, 1043, 1082, 1141, 1241, 1346, 1515, 1732, 2429, 2603, 1870, 1600, 1433, 1289, 1193, 1116, 1080, 1057, 1065, 1106, 1158, 1253, 1364, 1526, 1778, 2474, 2766, 1897, 1626, 1443, 1315, 1211, 1141, 1097, 1080, 1082, 1119, 1182, 1273, 1393, 1544, 1827, 2656, 3041, 2022, 1681, 1486, 1346, 1241, 1165, 1132, 1116, 1122, 1155, 1214, 1297, 1418, 1600, 1897, 2887, 3265, 2130, 1732, 1526, 1383, 1273, 1226, 1165, 1151, 1161, 1186, 1257, 1341, 1470, 1674, 2064, 3213, 3758, 2357, 1811, 1587, 1438, 1337, 1261, 1222, 1193, 1211, 1245, 1297, 1403, 1526, 1739, 2289, 3655, 4527, 2638, 1924, 1681, 1497, 1403, 1323, 1269, 1265, 1269, 1289, 1364, 1470, 1619, 1870, 2570, 4377, 5456, 3088, 2119, 1762, 1587, 1475, 1378, 1328, 1319, 1337, 1359, 1423, 1550, 1688, 2064, 3018, 5456]
| }
| }, {
| "name": "3840x2160_D75_70",
| "resolution": "3840x2160",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3879, 2504, 1857, 1671, 1508, 1405, 1349, 1270, 1285, 1290, 1328, 1376, 1468, 1582, 1786, 2402, 3823, 3493, 2217, 1761, 1585, 1431, 1349, 1277, 1241, 1214, 1227, 1253, 1322, 1407, 1534, 1697, 2125, 3243, 3004, 2087, 1700, 1514, 1390, 1281, 1219, 1186, 1174, 1174, 1210, 1266, 1362, 1454, 1616, 1957, 2881, 2797, 1922, 1649, 1474, 1344, 1251, 1182, 1142, 1127, 1130, 1174, 1232, 1328, 1424, 1593, 1855, 2597, 2571, 1855, 1599, 1434, 1320, 1215, 1150, 1100, 1083, 1108, 1138, 1207, 1280, 1398, 1540, 1753, 2424, 2457, 1789, 1581, 1395, 1278, 1191, 1123, 1083, 1051, 1064, 1104, 1169, 1249, 1366, 1509, 1705, 2288, 2350, 1756, 1548, 1386, 1264, 1192, 1108, 1062, 1037, 1048, 1086, 1162, 1236, 1358, 1499, 1700, 2280, 2285, 1749, 1543, 1399, 1256, 1175, 1090, 1051, 1027, 1041, 1083, 1146, 1223, 1337, 1494, 1676, 2171, 2287, 1750, 1536, 1377, 1270, 1163, 1098, 1048, 1024, 1034, 1075, 1138, 1228, 1343, 1488, 1677, 2188, 2356, 1759, 1557, 1382, 1270, 1175, 1105, 1055, 1037, 1048, 1086, 1163, 1242, 1348, 1501, 1676, 2202, 2388, 1775, 1563, 1409, 1294, 1187, 1120, 1069, 1051, 1062, 1108, 1175, 1250, 1363, 1519, 1700, 2333, 2520, 1830, 1597, 1432, 1313, 1213, 1155, 1101, 1083, 1090, 1127, 1191, 1267, 1395, 1545, 1760, 2379, 2714, 1898, 1639, 1473, 1354, 1248, 1184, 1135, 1124, 1128, 1171, 1220, 1310, 1434, 1584, 1833, 2640, 2973, 2008, 1700, 1528, 1389, 1284, 1213, 1176, 1164, 1167, 1200, 1269, 1344, 1480, 1632, 1958, 2882, 3327, 2190, 1754, 1579, 1451, 1338, 1286, 1226, 1213, 1226, 1257, 1317, 1407, 1521, 1691, 2115, 3250, 4019, 2412, 1852, 1633, 1503, 1395, 1333, 1289, 1266, 1274, 1312, 1377, 1463, 1601, 1790, 2373, 3788, 5020, 2847, 2023, 1723, 1579, 1461, 1407, 1359, 1333, 1342, 1378, 1448, 1573, 1697, 1973, 2713, 4738]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3875, 2426, 1834, 1606, 1482, 1382, 1328, 1272, 1255, 1270, 1301, 1348, 1443, 1570, 1769, 2330, 3698, 3301, 2185, 1723, 1554, 1417, 1330, 1267, 1228, 1210, 1215, 1254, 1313, 1390, 1511, 1662, 2088, 3177, 2938, 2019, 1664, 1494, 1369, 1282, 1216, 1184, 1164, 1173, 1212, 1259, 1336, 1452, 1605, 1911, 2766, 2685, 1887, 1613, 1443, 1325, 1245, 1179, 1134, 1132, 1131, 1165, 1228, 1302, 1415, 1557, 1813, 2524, 2494, 1808, 1580, 1414, 1302, 1211, 1148, 1101, 1080, 1094, 1134, 1187, 1273, 1381, 1516, 1732, 2382, 2352, 1756, 1554, 1392, 1277, 1181, 1122, 1075, 1056, 1065, 1107, 1171, 1252, 1350, 1496, 1692, 2239, 2279, 1717, 1531, 1389, 1258, 1172, 1100, 1056, 1035, 1046, 1090, 1149, 1231, 1337, 1477, 1657, 2159, 2245, 1708, 1520, 1372, 1252, 1173, 1088, 1044, 1024, 1040, 1078, 1151, 1220, 1331, 1473, 1648, 2129, 2231, 1717, 1526, 1372, 1255, 1165, 1095, 1038, 1027, 1036, 1078, 1136, 1220, 1329, 1470, 1648, 2152, 2284, 1720, 1539, 1377, 1261, 1176, 1101, 1054, 1038, 1048, 1088, 1153, 1232, 1344, 1479, 1671, 2171, 2319, 1748, 1540, 1389, 1280, 1183, 1118, 1071, 1054, 1067, 1100, 1164, 1243, 1350, 1489, 1693, 2255, 2432, 1788, 1564, 1411, 1303, 1217, 1141, 1099, 1081, 1095, 1128, 1190, 1270, 1379, 1518, 1730, 2344, 2564, 1861, 1609, 1448, 1334, 1239, 1178, 1132, 1116, 1123, 1163, 1222, 1297, 1417, 1559, 1818, 2533, 2872, 1963, 1658, 1504, 1364, 1274, 1222, 1177, 1154, 1165, 1199, 1251, 1338, 1452, 1613, 1908, 2770, 3220, 2134, 1730, 1552, 1424, 1322, 1258, 1221, 1203, 1215, 1244, 1303, 1382, 1500, 1664, 2081, 3220, 3747, 2374, 1807, 1613, 1478, 1378, 1316, 1274, 1256, 1270, 1299, 1357, 1448, 1571, 1761, 2299, 3723, 4654, 2694, 1977, 1682, 1553, 1440, 1376, 1339, 1322, 1314, 1355, 1415, 1513, 1617, 1927, 2660, 4614]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3963, 2439, 1851, 1619, 1484, 1397, 1319, 1281, 1271, 1278, 1312, 1364, 1448, 1570, 1766, 2299, 3703, 3421, 2202, 1724, 1559, 1433, 1342, 1273, 1234, 1218, 1226, 1257, 1312, 1394, 1516, 1664, 2104, 3199, 2942, 2034, 1671, 1502, 1376, 1288, 1223, 1184, 1170, 1168, 1208, 1266, 1348, 1456, 1618, 1924, 2820, 2713, 1911, 1630, 1454, 1334, 1249, 1186, 1144, 1124, 1130, 1166, 1227, 1305, 1422, 1565, 1815, 2579, 2497, 1825, 1596, 1426, 1302, 1215, 1150, 1108, 1093, 1101, 1140, 1191, 1281, 1388, 1538, 1751, 2386, 2390, 1762, 1563, 1402, 1280, 1192, 1124, 1081, 1061, 1073, 1107, 1164, 1253, 1363, 1507, 1703, 2265, 2331, 1745, 1532, 1388, 1271, 1175, 1105, 1065, 1040, 1051, 1092, 1159, 1240, 1350, 1488, 1679, 2191, 2248, 1736, 1528, 1373, 1259, 1166, 1097, 1052, 1029, 1040, 1081, 1140, 1224, 1331, 1481, 1666, 2196, 2265, 1732, 1525, 1369, 1261, 1162, 1095, 1046, 1024, 1040, 1073, 1148, 1226, 1343, 1475, 1667, 2182, 2295, 1740, 1532, 1376, 1265, 1177, 1104, 1057, 1030, 1051, 1088, 1150, 1234, 1338, 1484, 1673, 2225, 2347, 1750, 1556, 1399, 1282, 1189, 1118, 1074, 1052, 1057, 1103, 1161, 1245, 1365, 1504, 1703, 2266, 2454, 1808, 1584, 1417, 1294, 1212, 1139, 1108, 1080, 1088, 1130, 1186, 1269, 1381, 1527, 1745, 2373, 2654, 1874, 1615, 1456, 1344, 1239, 1170, 1135, 1118, 1123, 1162, 1219, 1299, 1416, 1571, 1825, 2588, 2890, 1982, 1668, 1509, 1368, 1280, 1212, 1172, 1148, 1164, 1201, 1251, 1343, 1451, 1622, 1932, 2811, 3243, 2144, 1720, 1545, 1420, 1322, 1257, 1216, 1205, 1210, 1248, 1303, 1387, 1500, 1663, 2084, 3174, 3802, 2386, 1814, 1616, 1483, 1377, 1310, 1270, 1256, 1263, 1294, 1346, 1442, 1566, 1772, 2302, 3728, 4661, 2709, 1985, 1697, 1545, 1448, 1372, 1333, 1317, 1316, 1349, 1417, 1519, 1634, 1913, 2663, 4621]
| },
| "lsc_samples_blue": {
| "uCoeff": [3750, 2310, 1813, 1585, 1469, 1366, 1296, 1249, 1269, 1264, 1296, 1344, 1424, 1538, 1714, 2216, 3440, 3182, 2118, 1692, 1537, 1413, 1320, 1266, 1231, 1207, 1213, 1247, 1300, 1385, 1493, 1625, 2020, 2940, 2836, 1966, 1629, 1474, 1355, 1276, 1210, 1188, 1155, 1172, 1196, 1250, 1329, 1434, 1574, 1866, 2630, 2581, 1852, 1594, 1450, 1325, 1238, 1182, 1153, 1125, 1137, 1165, 1223, 1293, 1396, 1535, 1764, 2429, 2399, 1788, 1553, 1406, 1287, 1211, 1147, 1108, 1079, 1098, 1137, 1187, 1264, 1369, 1502, 1692, 2257, 2282, 1719, 1523, 1382, 1278, 1185, 1119, 1079, 1057, 1070, 1104, 1172, 1240, 1338, 1475, 1631, 2166, 2211, 1702, 1515, 1366, 1257, 1180, 1101, 1065, 1037, 1051, 1093, 1150, 1219, 1335, 1448, 1616, 2092, 2131, 1684, 1495, 1363, 1250, 1160, 1090, 1040, 1027, 1037, 1081, 1137, 1220, 1316, 1449, 1611, 2052, 2156, 1678, 1491, 1358, 1254, 1163, 1105, 1051, 1024, 1048, 1073, 1134, 1217, 1308, 1445, 1607, 2064, 2229, 1691, 1501, 1381, 1265, 1173, 1105, 1057, 1037, 1043, 1081, 1137, 1228, 1316, 1449, 1606, 2108, 2237, 1716, 1521, 1393, 1272, 1186, 1114, 1080, 1057, 1065, 1104, 1153, 1238, 1331, 1457, 1641, 2138, 2353, 1734, 1540, 1400, 1294, 1203, 1138, 1096, 1079, 1081, 1116, 1175, 1255, 1355, 1470, 1677, 2269, 2548, 1828, 1582, 1434, 1320, 1229, 1160, 1129, 1114, 1120, 1150, 1204, 1275, 1374, 1514, 1727, 2431, 2695, 1904, 1619, 1465, 1351, 1257, 1217, 1160, 1147, 1156, 1179, 1242, 1313, 1416, 1570, 1852, 2656, 3030, 2070, 1676, 1512, 1396, 1313, 1247, 1213, 1186, 1202, 1232, 1276, 1364, 1459, 1616, 2016, 2955, 3543, 2268, 1757, 1584, 1442, 1368, 1301, 1254, 1251, 1254, 1270, 1333, 1418, 1531, 1713, 2215, 3436, 4126, 2582, 1898, 1641, 1512, 1426, 1346, 1304, 1296, 1312, 1329, 1380, 1480, 1579, 1854, 2529, 4126]
| }
| }, {
| "name": "3840x2160_D75_30",
| "resolution": "3840x2160",
| "illumination": "D75",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [2248, 1863, 1577, 1501, 1408, 1343, 1306, 1241, 1257, 1259, 1287, 1319, 1377, 1436, 1529, 1805, 2223, 2208, 1744, 1537, 1455, 1359, 1305, 1250, 1222, 1198, 1209, 1229, 1282, 1340, 1416, 1492, 1688, 2088, 2046, 1697, 1513, 1413, 1335, 1252, 1203, 1175, 1165, 1164, 1195, 1239, 1310, 1366, 1452, 1615, 1983, 1991, 1615, 1490, 1391, 1302, 1230, 1172, 1136, 1122, 1125, 1164, 1213, 1288, 1350, 1448, 1571, 1882, 1903, 1587, 1464, 1365, 1286, 1201, 1144, 1098, 1081, 1105, 1132, 1193, 1251, 1335, 1418, 1519, 1819, 1863, 1555, 1458, 1338, 1252, 1181, 1120, 1082, 1050, 1064, 1101, 1160, 1226, 1314, 1402, 1496, 1764, 1816, 1539, 1437, 1333, 1242, 1183, 1106, 1061, 1037, 1048, 1084, 1155, 1216, 1309, 1398, 1500, 1774, 1786, 1539, 1436, 1347, 1235, 1168, 1088, 1051, 1027, 1041, 1082, 1140, 1205, 1294, 1397, 1488, 1717, 1790, 1541, 1432, 1328, 1249, 1156, 1096, 1048, 1024, 1034, 1074, 1133, 1210, 1299, 1394, 1490, 1730, 1829, 1546, 1447, 1332, 1248, 1168, 1103, 1055, 1037, 1048, 1085, 1156, 1223, 1303, 1403, 1488, 1736, 1839, 1553, 1449, 1353, 1269, 1178, 1117, 1068, 1051, 1061, 1106, 1167, 1229, 1314, 1415, 1500, 1806, 1900, 1583, 1470, 1369, 1283, 1201, 1151, 1099, 1082, 1089, 1123, 1181, 1243, 1338, 1429, 1534, 1817, 1984, 1617, 1494, 1397, 1316, 1231, 1177, 1132, 1121, 1124, 1164, 1205, 1277, 1365, 1452, 1573, 1942, 2087, 1672, 1529, 1435, 1341, 1260, 1201, 1168, 1158, 1160, 1188, 1247, 1302, 1396, 1478, 1639, 2037, 2213, 1763, 1552, 1465, 1387, 1303, 1264, 1213, 1202, 1213, 1237, 1284, 1349, 1419, 1506, 1715, 2173, 2460, 1861, 1600, 1492, 1418, 1345, 1301, 1266, 1246, 1252, 1282, 1330, 1386, 1467, 1557, 1838, 2349, 2737, 2057, 1687, 1540, 1465, 1390, 1356, 1320, 1299, 1305, 1331, 1379, 1460, 1520, 1653, 1981, 2616]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2246, 1819, 1561, 1453, 1388, 1324, 1287, 1244, 1230, 1241, 1264, 1296, 1357, 1427, 1518, 1764, 2170, 2116, 1724, 1510, 1431, 1348, 1289, 1241, 1210, 1195, 1198, 1229, 1274, 1325, 1398, 1468, 1666, 2056, 2012, 1654, 1487, 1397, 1317, 1253, 1200, 1173, 1155, 1163, 1197, 1233, 1288, 1364, 1444, 1586, 1923, 1930, 1592, 1463, 1366, 1286, 1225, 1169, 1129, 1127, 1126, 1156, 1209, 1265, 1343, 1421, 1543, 1842, 1859, 1556, 1449, 1349, 1270, 1197, 1142, 1099, 1078, 1092, 1129, 1175, 1244, 1321, 1400, 1504, 1796, 1801, 1532, 1437, 1336, 1251, 1171, 1119, 1074, 1055, 1065, 1104, 1162, 1229, 1300, 1391, 1488, 1735, 1774, 1512, 1423, 1336, 1236, 1164, 1098, 1055, 1035, 1046, 1088, 1142, 1212, 1292, 1381, 1470, 1702, 1762, 1510, 1418, 1323, 1232, 1165, 1086, 1044, 1024, 1040, 1077, 1145, 1203, 1288, 1380, 1467, 1692, 1757, 1518, 1424, 1324, 1235, 1158, 1093, 1038, 1027, 1036, 1077, 1131, 1203, 1287, 1379, 1469, 1708, 1786, 1519, 1433, 1328, 1240, 1169, 1099, 1054, 1038, 1048, 1086, 1147, 1214, 1299, 1385, 1484, 1717, 1798, 1534, 1431, 1336, 1256, 1175, 1115, 1070, 1054, 1066, 1098, 1157, 1222, 1302, 1391, 1495, 1760, 1848, 1554, 1445, 1351, 1274, 1205, 1137, 1097, 1081, 1094, 1124, 1180, 1245, 1324, 1409, 1513, 1796, 1899, 1592, 1471, 1377, 1299, 1223, 1171, 1129, 1114, 1119, 1156, 1207, 1266, 1351, 1433, 1562, 1881, 2032, 1642, 1497, 1415, 1319, 1251, 1209, 1169, 1149, 1158, 1188, 1231, 1297, 1373, 1463, 1606, 1976, 2158, 1727, 1534, 1443, 1363, 1289, 1238, 1208, 1192, 1202, 1226, 1272, 1328, 1402, 1487, 1694, 2158, 2330, 1838, 1569, 1477, 1398, 1331, 1285, 1252, 1236, 1248, 1270, 1312, 1373, 1444, 1537, 1793, 2318, 2580, 1970, 1656, 1510, 1444, 1373, 1329, 1302, 1290, 1280, 1311, 1352, 1412, 1462, 1623, 1951, 2563]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2283, 1826, 1572, 1463, 1390, 1337, 1280, 1251, 1243, 1249, 1274, 1308, 1361, 1426, 1516, 1747, 2172, 2173, 1734, 1511, 1435, 1361, 1299, 1247, 1215, 1202, 1208, 1233, 1273, 1329, 1402, 1469, 1676, 2067, 2014, 1664, 1492, 1404, 1323, 1259, 1206, 1173, 1161, 1158, 1192, 1239, 1299, 1367, 1454, 1594, 1951, 1945, 1608, 1476, 1374, 1294, 1228, 1176, 1138, 1120, 1125, 1157, 1209, 1268, 1348, 1428, 1545, 1872, 1861, 1567, 1461, 1359, 1270, 1201, 1144, 1105, 1091, 1099, 1134, 1178, 1251, 1327, 1417, 1517, 1798, 1824, 1536, 1443, 1344, 1254, 1181, 1121, 1080, 1060, 1072, 1104, 1155, 1230, 1311, 1400, 1495, 1750, 1805, 1532, 1425, 1336, 1248, 1167, 1103, 1064, 1040, 1050, 1090, 1152, 1220, 1302, 1390, 1485, 1721, 1764, 1530, 1425, 1325, 1238, 1159, 1095, 1052, 1029, 1040, 1080, 1134, 1206, 1288, 1387, 1480, 1732, 1777, 1528, 1423, 1322, 1240, 1155, 1093, 1046, 1024, 1040, 1072, 1142, 1209, 1299, 1383, 1482, 1727, 1792, 1533, 1427, 1327, 1244, 1170, 1102, 1057, 1030, 1051, 1086, 1144, 1216, 1294, 1389, 1485, 1750, 1815, 1535, 1443, 1345, 1258, 1180, 1115, 1073, 1052, 1056, 1101, 1154, 1224, 1316, 1402, 1502, 1766, 1861, 1568, 1460, 1356, 1267, 1200, 1135, 1106, 1080, 1087, 1126, 1176, 1244, 1326, 1415, 1524, 1813, 1950, 1601, 1476, 1383, 1307, 1223, 1163, 1132, 1116, 1119, 1155, 1204, 1268, 1350, 1442, 1567, 1913, 2041, 1655, 1505, 1419, 1323, 1257, 1200, 1165, 1143, 1157, 1189, 1231, 1301, 1372, 1470, 1622, 1998, 2170, 1734, 1527, 1437, 1360, 1289, 1237, 1204, 1194, 1198, 1230, 1272, 1332, 1402, 1486, 1695, 2134, 2356, 1846, 1574, 1479, 1402, 1330, 1280, 1248, 1237, 1242, 1265, 1303, 1368, 1440, 1545, 1795, 2320, 2583, 1979, 1661, 1520, 1438, 1379, 1326, 1297, 1285, 1282, 1306, 1353, 1417, 1474, 1614, 1953, 2565]
| },
| "lsc_samples_blue": {
| "uCoeff": [2192, 1753, 1547, 1437, 1378, 1311, 1260, 1223, 1242, 1236, 1260, 1292, 1342, 1403, 1481, 1699, 2060, 2059, 1684, 1489, 1418, 1344, 1280, 1240, 1213, 1191, 1197, 1224, 1263, 1322, 1384, 1442, 1625, 1943, 1960, 1621, 1462, 1382, 1305, 1248, 1195, 1177, 1147, 1162, 1182, 1225, 1283, 1349, 1422, 1557, 1853, 1873, 1569, 1449, 1371, 1286, 1219, 1172, 1147, 1121, 1132, 1156, 1205, 1257, 1328, 1405, 1511, 1790, 1805, 1542, 1428, 1342, 1257, 1197, 1141, 1105, 1077, 1096, 1132, 1175, 1237, 1311, 1390, 1477, 1724, 1760, 1506, 1413, 1326, 1252, 1175, 1116, 1078, 1056, 1069, 1101, 1163, 1218, 1289, 1375, 1445, 1692, 1733, 1502, 1411, 1316, 1235, 1171, 1099, 1064, 1037, 1050, 1091, 1143, 1201, 1290, 1358, 1441, 1662, 1693, 1493, 1398, 1315, 1230, 1153, 1088, 1040, 1027, 1037, 1080, 1131, 1203, 1275, 1362, 1441, 1646, 1711, 1490, 1396, 1312, 1234, 1156, 1103, 1051, 1024, 1048, 1072, 1129, 1200, 1269, 1359, 1439, 1655, 1753, 1498, 1403, 1331, 1244, 1166, 1103, 1057, 1037, 1043, 1080, 1131, 1210, 1275, 1362, 1437, 1679, 1749, 1512, 1416, 1339, 1249, 1178, 1112, 1079, 1057, 1064, 1102, 1146, 1218, 1286, 1366, 1459, 1689, 1802, 1516, 1426, 1342, 1267, 1191, 1134, 1094, 1079, 1080, 1113, 1165, 1232, 1304, 1371, 1477, 1753, 1890, 1569, 1451, 1366, 1286, 1214, 1154, 1126, 1112, 1117, 1144, 1190, 1247, 1315, 1398, 1501, 1823, 1935, 1604, 1468, 1383, 1308, 1236, 1205, 1154, 1142, 1150, 1169, 1222, 1275, 1343, 1431, 1569, 1914, 2060, 1686, 1496, 1411, 1339, 1281, 1229, 1200, 1176, 1190, 1215, 1248, 1313, 1369, 1452, 1653, 2021, 2232, 1774, 1534, 1454, 1368, 1322, 1272, 1233, 1232, 1233, 1244, 1291, 1349, 1413, 1503, 1743, 2180, 2354, 1907, 1604, 1479, 1412, 1361, 1303, 1271, 1266, 1279, 1288, 1322, 1386, 1433, 1574, 1877, 2354]
| }
| }, {
| "name": "3840x2160_HZ_100",
| "resolution": "3840x2160",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5892, 3139, 2152, 1793, 1597, 1473, 1385, 1319, 1307, 1314, 1354, 1441, 1566, 1749, 2060, 2958, 5286, 4698, 2723, 1969, 1712, 1523, 1390, 1307, 1266, 1237, 1250, 1281, 1364, 1485, 1664, 1902, 2576, 4383, 3971, 2437, 1872, 1612, 1443, 1324, 1248, 1200, 1177, 1194, 1235, 1305, 1407, 1576, 1806, 2311, 3744, 3541, 2239, 1802, 1563, 1393, 1275, 1200, 1150, 1130, 1145, 1188, 1255, 1364, 1520, 1741, 2127, 3297, 3223, 2108, 1741, 1501, 1351, 1237, 1156, 1114, 1092, 1104, 1143, 1212, 1319, 1467, 1672, 1991, 3046, 3020, 2036, 1703, 1473, 1317, 1200, 1128, 1078, 1059, 1073, 1114, 1182, 1286, 1429, 1623, 1917, 2841, 2864, 1975, 1664, 1449, 1300, 1180, 1104, 1057, 1037, 1054, 1094, 1165, 1270, 1401, 1594, 1892, 2733, 2819, 1964, 1649, 1438, 1284, 1177, 1092, 1043, 1025, 1037, 1079, 1159, 1255, 1382, 1587, 1877, 2662, 2808, 1953, 1653, 1438, 1281, 1177, 1096, 1040, 1024, 1039, 1079, 1158, 1259, 1396, 1583, 1877, 2672, 2830, 1964, 1656, 1446, 1298, 1178, 1109, 1059, 1034, 1046, 1094, 1161, 1261, 1401, 1601, 1882, 2723, 2946, 2008, 1695, 1467, 1317, 1200, 1130, 1075, 1056, 1067, 1111, 1180, 1275, 1418, 1623, 1927, 2841, 3153, 2072, 1728, 1494, 1339, 1229, 1148, 1106, 1087, 1096, 1139, 1206, 1309, 1455, 1668, 1986, 3033, 3456, 2185, 1797, 1546, 1385, 1270, 1188, 1137, 1123, 1137, 1178, 1246, 1344, 1498, 1716, 2102, 3297, 3783, 2349, 1867, 1615, 1443, 1321, 1244, 1190, 1171, 1182, 1229, 1298, 1399, 1563, 1793, 2282, 3686, 4521, 2643, 1953, 1699, 1517, 1374, 1295, 1246, 1227, 1244, 1284, 1354, 1464, 1634, 1882, 2540, 4357, 5446, 2983, 2096, 1788, 1594, 1446, 1367, 1309, 1298, 1305, 1349, 1426, 1559, 1732, 2036, 2922, 5324, 6979, 3559, 2365, 1907, 1712, 1539, 1458, 1396, 1380, 1390, 1438, 1520, 1656, 1853, 2289, 3506, 6718]
| },
| "lsc_samples_greenR": {
| "uCoeff": [5064, 2877, 2042, 1735, 1563, 1433, 1359, 1304, 1286, 1295, 1320, 1403, 1524, 1665, 1966, 2759, 4801, 4225, 2541, 1872, 1639, 1488, 1364, 1279, 1249, 1224, 1234, 1264, 1337, 1436, 1583, 1808, 2416, 3975, 3606, 2289, 1794, 1570, 1403, 1304, 1236, 1183, 1175, 1183, 1218, 1277, 1377, 1515, 1735, 2155, 3407, 3214, 2118, 1723, 1512, 1357, 1264, 1185, 1144, 1127, 1139, 1177, 1236, 1330, 1467, 1665, 1993, 3068, 2922, 1993, 1669, 1461, 1325, 1224, 1155, 1102, 1090, 1108, 1136, 1198, 1295, 1419, 1604, 1896, 2811, 2779, 1920, 1639, 1427, 1299, 1191, 1115, 1086, 1059, 1073, 1110, 1175, 1262, 1385, 1573, 1825, 2603, 2650, 1886, 1611, 1411, 1279, 1185, 1107, 1064, 1043, 1044, 1090, 1152, 1249, 1367, 1540, 1790, 2506, 2594, 1862, 1597, 1406, 1268, 1166, 1094, 1049, 1024, 1038, 1079, 1153, 1236, 1367, 1534, 1782, 2506, 2567, 1862, 1590, 1395, 1266, 1168, 1089, 1041, 1031, 1041, 1082, 1150, 1243, 1359, 1547, 1782, 2489, 2603, 1881, 1604, 1406, 1275, 1177, 1103, 1049, 1035, 1056, 1084, 1157, 1245, 1369, 1547, 1790, 2515, 2718, 1901, 1621, 1433, 1299, 1194, 1122, 1075, 1055, 1064, 1105, 1177, 1262, 1395, 1573, 1830, 2622, 2866, 1961, 1665, 1458, 1320, 1224, 1150, 1105, 1087, 1102, 1136, 1198, 1284, 1422, 1604, 1891, 2738, 3093, 2059, 1715, 1497, 1364, 1259, 1181, 1136, 1118, 1137, 1170, 1230, 1325, 1467, 1654, 1993, 3018, 3439, 2227, 1777, 1560, 1403, 1302, 1228, 1185, 1164, 1174, 1214, 1270, 1367, 1518, 1715, 2131, 3345, 3996, 2440, 1862, 1632, 1467, 1359, 1279, 1236, 1224, 1236, 1264, 1330, 1430, 1583, 1790, 2377, 3891, 4832, 2801, 1993, 1719, 1553, 1419, 1344, 1297, 1281, 1293, 1327, 1398, 1509, 1673, 1935, 2698, 4739, 6213, 3330, 2214, 1844, 1647, 1506, 1433, 1362, 1354, 1369, 1406, 1491, 1597, 1769, 2187, 3201, 6060]
| },
| "lsc_samples_greenB": {
| "uCoeff": [5229, 2914, 2065, 1727, 1569, 1440, 1350, 1291, 1282, 1289, 1326, 1394, 1526, 1679, 1971, 2793, 4948, 4415, 2596, 1891, 1657, 1489, 1363, 1293, 1248, 1225, 1231, 1258, 1338, 1449, 1599, 1825, 2441, 4096, 3781, 2318, 1825, 1575, 1410, 1307, 1233, 1185, 1167, 1178, 1217, 1282, 1376, 1526, 1743, 2194, 3511, 3336, 2143, 1751, 1514, 1368, 1262, 1187, 1141, 1126, 1133, 1172, 1235, 1336, 1481, 1676, 2037, 3137, 3009, 2037, 1699, 1475, 1326, 1223, 1148, 1102, 1089, 1104, 1136, 1199, 1298, 1429, 1628, 1925, 2858, 2847, 1945, 1646, 1432, 1307, 1199, 1122, 1079, 1052, 1069, 1102, 1172, 1271, 1402, 1582, 1871, 2643, 2721, 1900, 1617, 1426, 1282, 1182, 1104, 1053, 1036, 1049, 1087, 1156, 1252, 1376, 1559, 1820, 2578, 2652, 1886, 1617, 1404, 1269, 1165, 1094, 1046, 1028, 1036, 1076, 1147, 1233, 1368, 1552, 1807, 2542, 2633, 1891, 1610, 1412, 1271, 1170, 1091, 1044, 1024, 1037, 1081, 1143, 1235, 1368, 1549, 1807, 2525, 2662, 1895, 1613, 1412, 1287, 1172, 1099, 1049, 1030, 1041, 1081, 1157, 1254, 1376, 1552, 1820, 2569, 2772, 1930, 1631, 1434, 1293, 1183, 1109, 1069, 1047, 1059, 1100, 1170, 1265, 1388, 1579, 1848, 2662, 2903, 1977, 1672, 1463, 1326, 1215, 1134, 1099, 1078, 1087, 1134, 1191, 1280, 1423, 1613, 1915, 2836, 3206, 2083, 1727, 1505, 1358, 1258, 1176, 1133, 1110, 1126, 1157, 1221, 1319, 1451, 1657, 2009, 3085, 3562, 2221, 1803, 1552, 1404, 1298, 1217, 1165, 1152, 1163, 1205, 1267, 1365, 1514, 1723, 2131, 3494, 4119, 2466, 1867, 1624, 1460, 1343, 1269, 1223, 1203, 1215, 1252, 1317, 1421, 1599, 1798, 2394, 3964, 4948, 2793, 1998, 1711, 1530, 1407, 1328, 1280, 1258, 1273, 1312, 1376, 1489, 1664, 1940, 2751, 4883, 6302, 3291, 2228, 1812, 1624, 1483, 1402, 1353, 1326, 1331, 1381, 1466, 1582, 1760, 2168, 3206, 6144]
| },
| "lsc_samples_blue": {
| "uCoeff": [4674, 2681, 1960, 1688, 1571, 1424, 1370, 1302, 1275, 1275, 1321, 1360, 1482, 1642, 1860, 2567, 4239, 3797, 2367, 1823, 1613, 1470, 1360, 1293, 1248, 1223, 1232, 1266, 1321, 1424, 1558, 1770, 2278, 3646, 3314, 2196, 1736, 1571, 1391, 1302, 1232, 1199, 1191, 1207, 1215, 1275, 1360, 1482, 1688, 2025, 3089, 2893, 2025, 1688, 1494, 1360, 1257, 1199, 1146, 1139, 1132, 1176, 1240, 1321, 1435, 1613, 1919, 2848, 2721, 1899, 1642, 1435, 1321, 1232, 1161, 1118, 1098, 1105, 1139, 1199, 1275, 1391, 1558, 1805, 2604, 2567, 1860, 1599, 1424, 1302, 1184, 1125, 1085, 1060, 1066, 1111, 1161, 1248, 1370, 1532, 1753, 2497, 2497, 1823, 1585, 1381, 1257, 1168, 1111, 1048, 1042, 1060, 1091, 1146, 1240, 1340, 1506, 1736, 2337, 2398, 1805, 1571, 1381, 1257, 1168, 1091, 1054, 1030, 1042, 1072, 1139, 1223, 1330, 1470, 1703, 2278, 2431, 1787, 1558, 1381, 1248, 1154, 1098, 1042, 1024, 1030, 1066, 1132, 1215, 1321, 1494, 1720, 2307, 2431, 1805, 1571, 1381, 1275, 1168, 1105, 1048, 1042, 1042, 1091, 1139, 1240, 1340, 1494, 1688, 2337, 2497, 1823, 1571, 1391, 1266, 1176, 1111, 1072, 1036, 1054, 1098, 1154, 1232, 1340, 1494, 1703, 2398, 2641, 1879, 1613, 1424, 1311, 1207, 1139, 1091, 1066, 1079, 1125, 1176, 1248, 1381, 1532, 1787, 2567, 2848, 1939, 1642, 1447, 1321, 1223, 1161, 1125, 1111, 1105, 1154, 1191, 1284, 1391, 1558, 1879, 2721, 3142, 2071, 1720, 1506, 1360, 1275, 1207, 1168, 1146, 1154, 1184, 1232, 1330, 1447, 1599, 1960, 2988, 3646, 2307, 1753, 1585, 1413, 1311, 1257, 1215, 1184, 1191, 1240, 1275, 1360, 1519, 1672, 2170, 3439, 4142, 2531, 1899, 1613, 1494, 1381, 1302, 1275, 1240, 1248, 1293, 1350, 1458, 1571, 1805, 2431, 4239, 5360, 2940, 2048, 1703, 1585, 1458, 1381, 1330, 1311, 1321, 1340, 1402, 1506, 1657, 2025, 2893, 5064]
| }
| }, {
| "name": "3840x2160_HZ_70",
| "resolution": "3840x2160",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [4432, 2620, 1924, 1667, 1521, 1424, 1352, 1295, 1285, 1291, 1324, 1396, 1494, 1630, 1851, 2484, 4007, 3666, 2333, 1793, 1610, 1465, 1356, 1286, 1251, 1224, 1236, 1262, 1333, 1431, 1569, 1739, 2220, 3440, 3186, 2132, 1726, 1533, 1400, 1301, 1235, 1192, 1170, 1186, 1223, 1283, 1368, 1502, 1672, 2034, 3020, 2901, 1991, 1678, 1497, 1360, 1259, 1192, 1146, 1127, 1141, 1181, 1240, 1334, 1460, 1626, 1902, 2719, 2685, 1897, 1633, 1448, 1325, 1226, 1151, 1112, 1091, 1102, 1139, 1202, 1296, 1418, 1575, 1803, 2551, 2546, 1847, 1606, 1426, 1296, 1192, 1125, 1077, 1059, 1072, 1112, 1175, 1267, 1387, 1538, 1750, 2410, 2437, 1802, 1576, 1407, 1282, 1174, 1102, 1057, 1037, 1054, 1093, 1159, 1254, 1364, 1516, 1734, 2337, 2408, 1796, 1565, 1399, 1268, 1172, 1091, 1043, 1025, 1037, 1078, 1154, 1241, 1348, 1512, 1725, 2287, 2402, 1788, 1570, 1399, 1265, 1172, 1095, 1040, 1024, 1039, 1078, 1153, 1245, 1361, 1509, 1726, 2297, 2417, 1796, 1572, 1406, 1281, 1173, 1108, 1059, 1034, 1046, 1093, 1156, 1246, 1365, 1524, 1729, 2334, 2500, 1829, 1603, 1424, 1298, 1193, 1128, 1075, 1056, 1067, 1109, 1174, 1259, 1379, 1541, 1763, 2420, 2648, 1876, 1628, 1445, 1317, 1220, 1145, 1105, 1086, 1095, 1136, 1198, 1289, 1410, 1576, 1806, 2556, 2861, 1959, 1681, 1488, 1356, 1257, 1182, 1134, 1121, 1134, 1173, 1234, 1319, 1445, 1612, 1892, 2741, 3081, 2079, 1732, 1543, 1405, 1302, 1234, 1184, 1167, 1177, 1220, 1280, 1365, 1497, 1670, 2025, 3009, 3590, 2294, 1793, 1609, 1467, 1347, 1279, 1236, 1218, 1234, 1269, 1329, 1419, 1552, 1735, 2213, 3470, 4204, 2534, 1897, 1675, 1527, 1407, 1342, 1291, 1282, 1287, 1325, 1389, 1497, 1627, 1848, 2487, 4117, 5193, 2937, 2094, 1762, 1620, 1483, 1419, 1366, 1353, 1361, 1400, 1466, 1572, 1717, 2034, 2897, 5010]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3852, 2422, 1837, 1618, 1491, 1389, 1329, 1282, 1266, 1273, 1293, 1362, 1457, 1560, 1776, 2333, 3668, 3326, 2193, 1714, 1548, 1434, 1333, 1260, 1235, 1212, 1221, 1246, 1308, 1388, 1500, 1662, 2097, 3146, 2919, 2016, 1662, 1497, 1364, 1282, 1224, 1175, 1168, 1175, 1207, 1258, 1341, 1449, 1613, 1911, 2773, 2657, 1895, 1611, 1453, 1327, 1249, 1178, 1140, 1124, 1135, 1170, 1222, 1303, 1413, 1563, 1795, 2548, 2458, 1805, 1572, 1412, 1301, 1213, 1150, 1100, 1089, 1106, 1132, 1189, 1274, 1375, 1517, 1727, 2374, 2363, 1753, 1551, 1385, 1279, 1183, 1113, 1085, 1059, 1072, 1108, 1168, 1245, 1348, 1495, 1675, 2228, 2273, 1730, 1531, 1373, 1262, 1179, 1105, 1064, 1043, 1044, 1089, 1147, 1234, 1333, 1469, 1651, 2162, 2235, 1713, 1520, 1370, 1253, 1161, 1093, 1049, 1024, 1038, 1078, 1148, 1223, 1335, 1466, 1647, 2167, 2216, 1713, 1515, 1360, 1251, 1163, 1088, 1041, 1031, 1041, 1081, 1146, 1230, 1328, 1478, 1648, 2155, 2242, 1728, 1527, 1370, 1259, 1172, 1102, 1049, 1035, 1056, 1083, 1152, 1231, 1336, 1477, 1653, 2174, 2325, 1742, 1539, 1393, 1281, 1187, 1120, 1075, 1055, 1064, 1103, 1171, 1246, 1359, 1498, 1684, 2251, 2429, 1786, 1574, 1413, 1299, 1215, 1147, 1104, 1086, 1101, 1133, 1190, 1266, 1381, 1521, 1729, 2331, 2587, 1858, 1611, 1444, 1337, 1246, 1176, 1133, 1116, 1134, 1165, 1219, 1301, 1418, 1559, 1805, 2530, 2825, 1982, 1657, 1495, 1369, 1284, 1219, 1180, 1160, 1169, 1205, 1254, 1336, 1458, 1605, 1905, 2755, 3205, 2135, 1718, 1551, 1422, 1333, 1264, 1226, 1215, 1226, 1250, 1307, 1389, 1508, 1658, 2085, 3128, 3763, 2393, 1813, 1616, 1491, 1383, 1320, 1280, 1266, 1276, 1305, 1364, 1452, 1577, 1766, 2314, 3696, 4656, 2764, 1974, 1709, 1564, 1454, 1396, 1335, 1329, 1341, 1371, 1440, 1521, 1646, 1952, 2667, 4549]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3968, 2450, 1855, 1611, 1496, 1395, 1320, 1270, 1262, 1268, 1299, 1354, 1459, 1571, 1780, 2359, 3771, 3463, 2235, 1730, 1563, 1435, 1332, 1273, 1234, 1213, 1218, 1241, 1309, 1399, 1514, 1676, 2116, 3233, 3047, 2039, 1687, 1501, 1371, 1285, 1221, 1177, 1161, 1171, 1206, 1262, 1340, 1459, 1619, 1942, 2849, 2748, 1915, 1635, 1454, 1337, 1247, 1180, 1137, 1123, 1129, 1165, 1221, 1308, 1425, 1572, 1830, 2600, 2523, 1840, 1598, 1425, 1302, 1212, 1144, 1100, 1088, 1102, 1132, 1190, 1276, 1384, 1537, 1750, 2409, 2415, 1773, 1557, 1390, 1287, 1191, 1119, 1078, 1052, 1068, 1100, 1165, 1253, 1363, 1503, 1713, 2259, 2327, 1741, 1536, 1387, 1265, 1176, 1102, 1053, 1036, 1049, 1086, 1151, 1237, 1341, 1486, 1675, 2218, 2280, 1732, 1538, 1368, 1254, 1160, 1093, 1046, 1028, 1036, 1075, 1143, 1220, 1335, 1481, 1667, 2195, 2267, 1737, 1532, 1376, 1256, 1165, 1090, 1044, 1024, 1037, 1080, 1139, 1222, 1336, 1479, 1668, 2183, 2287, 1740, 1534, 1375, 1271, 1167, 1098, 1049, 1030, 1041, 1080, 1152, 1240, 1343, 1481, 1678, 2216, 2367, 1766, 1548, 1394, 1275, 1177, 1107, 1069, 1047, 1059, 1098, 1164, 1249, 1352, 1503, 1698, 2282, 2457, 1799, 1580, 1417, 1305, 1206, 1131, 1098, 1077, 1086, 1131, 1183, 1262, 1382, 1529, 1748, 2406, 2672, 1877, 1621, 1451, 1332, 1245, 1171, 1130, 1108, 1124, 1152, 1210, 1296, 1403, 1562, 1818, 2581, 2917, 1977, 1678, 1488, 1370, 1280, 1208, 1160, 1148, 1158, 1197, 1251, 1334, 1454, 1611, 1905, 2866, 3295, 2155, 1722, 1544, 1415, 1319, 1255, 1214, 1195, 1206, 1239, 1294, 1380, 1522, 1665, 2099, 3181, 3846, 2387, 1817, 1609, 1471, 1372, 1306, 1264, 1244, 1257, 1291, 1344, 1435, 1569, 1770, 2355, 3800, 4719, 2735, 1985, 1682, 1544, 1433, 1368, 1327, 1303, 1306, 1349, 1418, 1508, 1639, 1937, 2671, 4608]
| },
| "lsc_samples_blue": {
| "uCoeff": [3579, 2275, 1771, 1579, 1498, 1381, 1339, 1280, 1256, 1255, 1294, 1323, 1421, 1540, 1691, 2189, 3275, 3018, 2059, 1675, 1526, 1418, 1329, 1273, 1234, 1211, 1219, 1248, 1294, 1377, 1479, 1631, 1990, 2910, 2704, 1943, 1614, 1498, 1354, 1281, 1220, 1191, 1184, 1198, 1204, 1256, 1326, 1421, 1574, 1809, 2539, 2418, 1821, 1582, 1437, 1330, 1242, 1191, 1142, 1136, 1128, 1169, 1226, 1294, 1385, 1519, 1736, 2384, 2306, 1729, 1549, 1389, 1297, 1221, 1156, 1116, 1097, 1103, 1135, 1190, 1255, 1350, 1478, 1653, 2217, 2201, 1704, 1517, 1383, 1282, 1177, 1122, 1084, 1060, 1065, 1109, 1155, 1232, 1334, 1460, 1617, 2148, 2155, 1678, 1508, 1346, 1242, 1162, 1109, 1048, 1042, 1060, 1090, 1141, 1226, 1309, 1440, 1607, 2032, 2084, 1666, 1498, 1347, 1243, 1163, 1090, 1054, 1030, 1042, 1071, 1135, 1211, 1301, 1410, 1582, 1991, 2111, 1652, 1487, 1348, 1234, 1150, 1097, 1042, 1024, 1030, 1065, 1128, 1203, 1293, 1432, 1597, 2015, 2109, 1666, 1498, 1347, 1259, 1163, 1104, 1048, 1042, 1042, 1090, 1135, 1227, 1310, 1431, 1570, 2037, 2155, 1678, 1496, 1355, 1250, 1170, 1109, 1072, 1036, 1054, 1096, 1149, 1218, 1309, 1430, 1580, 2079, 2257, 1719, 1529, 1383, 1291, 1199, 1136, 1090, 1066, 1078, 1122, 1169, 1232, 1344, 1460, 1644, 2201, 2402, 1761, 1549, 1400, 1297, 1212, 1156, 1123, 1109, 1103, 1149, 1182, 1263, 1350, 1478, 1713, 2306, 2603, 1857, 1609, 1447, 1330, 1259, 1199, 1163, 1142, 1150, 1177, 1219, 1303, 1396, 1507, 1769, 2489, 2948, 2030, 1628, 1510, 1373, 1289, 1243, 1206, 1177, 1183, 1227, 1256, 1326, 1453, 1561, 1923, 2796, 3267, 2185, 1736, 1526, 1439, 1348, 1282, 1259, 1227, 1234, 1273, 1320, 1407, 1490, 1660, 2108, 3336, 4059, 2470, 1841, 1591, 1510, 1411, 1349, 1306, 1289, 1297, 1311, 1361, 1442, 1553, 1823, 2435, 3852]
| }
| }, {
| "name": "3840x2160_HZ_30",
| "resolution": "3840x2160",
| "illumination": "HZ",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [2484, 1928, 1621, 1498, 1419, 1359, 1309, 1264, 1257, 1260, 1284, 1335, 1397, 1471, 1572, 1851, 2303, 2291, 1814, 1559, 1474, 1387, 1312, 1258, 1231, 1208, 1217, 1237, 1291, 1359, 1443, 1521, 1745, 2182, 2140, 1726, 1532, 1428, 1343, 1270, 1217, 1181, 1161, 1175, 1206, 1255, 1316, 1404, 1493, 1664, 2054, 2048, 1661, 1512, 1410, 1316, 1238, 1181, 1140, 1122, 1135, 1171, 1220, 1293, 1379, 1473, 1602, 1948, 1968, 1616, 1490, 1377, 1291, 1210, 1145, 1109, 1089, 1100, 1133, 1189, 1264, 1352, 1445, 1552, 1892, 1915, 1595, 1477, 1364, 1268, 1181, 1122, 1076, 1058, 1071, 1108, 1165, 1243, 1331, 1424, 1528, 1835, 1868, 1572, 1460, 1352, 1258, 1166, 1100, 1056, 1037, 1053, 1091, 1152, 1232, 1315, 1412, 1524, 1808, 1861, 1573, 1454, 1347, 1246, 1164, 1089, 1043, 1025, 1037, 1077, 1148, 1222, 1303, 1411, 1522, 1788, 1860, 1569, 1459, 1348, 1245, 1165, 1093, 1040, 1024, 1039, 1077, 1147, 1226, 1315, 1410, 1524, 1796, 1866, 1573, 1459, 1353, 1258, 1165, 1106, 1059, 1034, 1046, 1091, 1150, 1227, 1318, 1421, 1525, 1816, 1906, 1591, 1481, 1366, 1272, 1184, 1125, 1074, 1056, 1066, 1107, 1166, 1237, 1328, 1432, 1544, 1858, 1975, 1615, 1494, 1380, 1287, 1207, 1140, 1103, 1085, 1094, 1132, 1187, 1262, 1351, 1454, 1566, 1921, 2068, 1658, 1526, 1410, 1318, 1239, 1175, 1131, 1118, 1131, 1166, 1218, 1285, 1375, 1474, 1613, 1999, 2146, 1718, 1552, 1447, 1355, 1277, 1221, 1177, 1161, 1169, 1207, 1257, 1321, 1410, 1506, 1683, 2106, 2349, 1829, 1581, 1488, 1400, 1311, 1258, 1222, 1206, 1220, 1249, 1295, 1359, 1443, 1538, 1777, 2287, 2549, 1935, 1631, 1524, 1439, 1356, 1308, 1267, 1260, 1264, 1293, 1340, 1413, 1487, 1597, 1906, 2507, 2811, 2108, 1734, 1568, 1498, 1408, 1366, 1327, 1317, 1322, 1350, 1394, 1459, 1535, 1694, 2085, 2732]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2236, 1816, 1563, 1462, 1395, 1329, 1288, 1252, 1239, 1244, 1257, 1307, 1368, 1419, 1523, 1766, 2157, 2128, 1729, 1504, 1426, 1362, 1291, 1235, 1216, 1197, 1203, 1223, 1270, 1324, 1390, 1468, 1671, 2042, 2002, 1653, 1485, 1399, 1313, 1254, 1207, 1165, 1160, 1165, 1192, 1232, 1293, 1362, 1450, 1586, 1927, 1915, 1597, 1462, 1373, 1287, 1228, 1168, 1134, 1120, 1130, 1161, 1204, 1266, 1341, 1426, 1532, 1855, 1838, 1554, 1443, 1347, 1269, 1199, 1144, 1098, 1087, 1103, 1127, 1176, 1245, 1316, 1401, 1501, 1791, 1808, 1529, 1435, 1329, 1253, 1173, 1109, 1084, 1058, 1071, 1105, 1159, 1222, 1298, 1391, 1476, 1729, 1770, 1521, 1423, 1322, 1240, 1170, 1103, 1063, 1043, 1044, 1087, 1140, 1215, 1289, 1375, 1466, 1704, 1756, 1513, 1418, 1322, 1233, 1154, 1091, 1049, 1024, 1038, 1077, 1142, 1205, 1291, 1375, 1467, 1715, 1747, 1515, 1415, 1314, 1232, 1156, 1087, 1041, 1031, 1041, 1080, 1140, 1212, 1286, 1385, 1468, 1711, 1760, 1524, 1423, 1322, 1239, 1164, 1100, 1049, 1035, 1056, 1082, 1146, 1213, 1293, 1384, 1471, 1719, 1801, 1529, 1430, 1339, 1257, 1178, 1117, 1074, 1055, 1063, 1101, 1163, 1226, 1310, 1398, 1489, 1757, 1846, 1552, 1452, 1353, 1271, 1203, 1142, 1102, 1085, 1099, 1129, 1180, 1241, 1326, 1411, 1513, 1789, 1912, 1590, 1473, 1374, 1301, 1230, 1168, 1130, 1114, 1131, 1158, 1204, 1269, 1352, 1433, 1554, 1880, 2006, 1655, 1496, 1408, 1324, 1260, 1206, 1172, 1154, 1162, 1194, 1233, 1295, 1378, 1457, 1604, 1968, 2150, 1728, 1526, 1442, 1361, 1299, 1244, 1213, 1204, 1213, 1231, 1275, 1333, 1408, 1483, 1696, 2110, 2337, 1850, 1573, 1479, 1409, 1334, 1289, 1257, 1246, 1254, 1275, 1318, 1377, 1449, 1540, 1802, 2305, 2581, 2010, 1654, 1529, 1453, 1384, 1346, 1299, 1295, 1305, 1325, 1373, 1419, 1483, 1640, 1955, 2535]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2286, 1832, 1575, 1457, 1399, 1334, 1281, 1241, 1236, 1240, 1262, 1300, 1370, 1428, 1525, 1780, 2201, 2193, 1755, 1515, 1438, 1362, 1290, 1247, 1215, 1197, 1201, 1218, 1271, 1333, 1400, 1478, 1683, 2083, 2068, 1667, 1504, 1403, 1318, 1256, 1205, 1167, 1152, 1161, 1191, 1236, 1292, 1369, 1455, 1605, 1966, 1964, 1611, 1480, 1375, 1296, 1226, 1170, 1132, 1119, 1124, 1156, 1203, 1271, 1351, 1433, 1555, 1883, 1876, 1578, 1463, 1358, 1270, 1198, 1138, 1098, 1086, 1100, 1127, 1177, 1247, 1324, 1416, 1516, 1811, 1838, 1543, 1439, 1333, 1260, 1181, 1116, 1077, 1051, 1067, 1097, 1156, 1230, 1311, 1397, 1502, 1747, 1803, 1529, 1428, 1334, 1243, 1168, 1100, 1052, 1036, 1048, 1084, 1144, 1217, 1295, 1388, 1483, 1737, 1783, 1527, 1432, 1320, 1234, 1153, 1091, 1046, 1028, 1036, 1074, 1137, 1203, 1292, 1387, 1481, 1732, 1778, 1532, 1429, 1327, 1236, 1158, 1089, 1044, 1024, 1037, 1079, 1133, 1205, 1293, 1387, 1483, 1728, 1788, 1533, 1429, 1326, 1249, 1160, 1096, 1049, 1030, 1041, 1079, 1146, 1221, 1298, 1387, 1489, 1744, 1826, 1546, 1437, 1340, 1252, 1168, 1105, 1068, 1047, 1058, 1096, 1157, 1228, 1305, 1402, 1499, 1776, 1863, 1561, 1457, 1357, 1276, 1195, 1127, 1096, 1077, 1085, 1127, 1173, 1238, 1326, 1417, 1526, 1833, 1960, 1603, 1481, 1380, 1296, 1229, 1164, 1127, 1106, 1120, 1146, 1196, 1264, 1340, 1435, 1562, 1908, 2056, 1651, 1512, 1402, 1325, 1257, 1197, 1154, 1143, 1152, 1186, 1231, 1294, 1375, 1462, 1604, 2028, 2196, 1741, 1529, 1437, 1356, 1286, 1236, 1201, 1185, 1194, 1221, 1264, 1326, 1419, 1488, 1705, 2138, 2377, 1846, 1576, 1473, 1392, 1325, 1276, 1243, 1226, 1237, 1263, 1301, 1362, 1443, 1543, 1827, 2355, 2607, 1993, 1661, 1510, 1437, 1367, 1322, 1292, 1272, 1274, 1305, 1354, 1408, 1478, 1630, 1957, 2560]
| },
| "lsc_samples_blue": {
| "uCoeff": [2119, 1733, 1519, 1433, 1401, 1323, 1297, 1250, 1230, 1228, 1258, 1275, 1339, 1405, 1467, 1684, 1989, 1980, 1648, 1477, 1409, 1349, 1288, 1247, 1215, 1196, 1202, 1224, 1257, 1315, 1373, 1447, 1607, 1928, 1891, 1606, 1451, 1400, 1304, 1252, 1204, 1180, 1174, 1187, 1189, 1230, 1280, 1339, 1422, 1521, 1806, 1784, 1549, 1440, 1361, 1290, 1222, 1180, 1136, 1131, 1123, 1160, 1208, 1259, 1318, 1393, 1493, 1766, 1752, 1502, 1426, 1328, 1266, 1206, 1150, 1113, 1095, 1101, 1130, 1177, 1229, 1295, 1371, 1451, 1702, 1713, 1495, 1408, 1327, 1256, 1167, 1119, 1083, 1059, 1065, 1106, 1147, 1211, 1286, 1363, 1435, 1682, 1700, 1485, 1406, 1299, 1221, 1155, 1107, 1048, 1042, 1059, 1088, 1135, 1207, 1268, 1352, 1434, 1626, 1665, 1480, 1400, 1302, 1223, 1156, 1088, 1054, 1030, 1042, 1070, 1129, 1194, 1262, 1331, 1420, 1609, 1684, 1471, 1393, 1303, 1216, 1144, 1095, 1042, 1024, 1030, 1064, 1123, 1188, 1256, 1349, 1432, 1625, 1680, 1480, 1400, 1302, 1239, 1156, 1102, 1048, 1042, 1042, 1088, 1129, 1209, 1270, 1347, 1412, 1636, 1700, 1485, 1396, 1307, 1229, 1162, 1107, 1071, 1036, 1053, 1094, 1142, 1200, 1268, 1344, 1415, 1654, 1746, 1506, 1417, 1327, 1263, 1188, 1132, 1089, 1065, 1077, 1119, 1160, 1211, 1295, 1363, 1454, 1713, 1807, 1524, 1426, 1337, 1266, 1198, 1150, 1119, 1107, 1101, 1143, 1170, 1236, 1295, 1371, 1491, 1752, 1885, 1573, 1460, 1369, 1290, 1238, 1188, 1157, 1137, 1144, 1167, 1201, 1266, 1327, 1384, 1515, 1823, 2017, 1662, 1461, 1410, 1320, 1260, 1225, 1194, 1168, 1173, 1211, 1230, 1280, 1364, 1412, 1593, 1939, 2099, 1724, 1520, 1409, 1366, 1305, 1254, 1238, 1210, 1215, 1247, 1280, 1340, 1382, 1467, 1678, 2133, 2325, 1843, 1566, 1442, 1410, 1348, 1305, 1273, 1260, 1266, 1273, 1306, 1356, 1414, 1554, 1823, 2236]
| }
| }, {
| "name": "3840x2160_TL84_100",
| "resolution": "3840x2160",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [5130, 2923, 2061, 1740, 1571, 1441, 1355, 1309, 1273, 1276, 1337, 1424, 1524, 1693, 1964, 2732, 4788, 4261, 2552, 1890, 1648, 1483, 1381, 1289, 1241, 1229, 1226, 1270, 1320, 1437, 1581, 1802, 2417, 3928, 3643, 2296, 1809, 1576, 1428, 1313, 1238, 1197, 1169, 1175, 1214, 1276, 1366, 1510, 1716, 2158, 3397, 3244, 2121, 1740, 1528, 1370, 1260, 1191, 1143, 1125, 1140, 1169, 1232, 1327, 1462, 1654, 2003, 3047, 2940, 2011, 1676, 1479, 1330, 1223, 1145, 1105, 1081, 1098, 1140, 1200, 1296, 1428, 1606, 1890, 2809, 2793, 1934, 1654, 1432, 1296, 1197, 1130, 1077, 1058, 1054, 1107, 1164, 1266, 1385, 1566, 1828, 2674, 2718, 1883, 1622, 1424, 1286, 1177, 1103, 1056, 1030, 1039, 1086, 1158, 1245, 1374, 1538, 1802, 2514, 2578, 1897, 1606, 1401, 1266, 1175, 1091, 1047, 1024, 1030, 1070, 1148, 1235, 1355, 1547, 1783, 2465, 2605, 1876, 1606, 1404, 1276, 1175, 1093, 1045, 1026, 1039, 1079, 1143, 1232, 1352, 1533, 1777, 2453, 2689, 1890, 1627, 1416, 1279, 1180, 1100, 1050, 1039, 1039, 1081, 1153, 1241, 1370, 1542, 1802, 2465, 2732, 1926, 1643, 1441, 1306, 1191, 1122, 1074, 1045, 1065, 1103, 1167, 1260, 1385, 1566, 1828, 2592, 2906, 1972, 1682, 1474, 1316, 1214, 1140, 1103, 1077, 1086, 1122, 1191, 1286, 1420, 1606, 1897, 2825, 3162, 2086, 1722, 1524, 1370, 1263, 1177, 1122, 1117, 1130, 1164, 1229, 1316, 1457, 1648, 1987, 3047, 3516, 2245, 1796, 1571, 1412, 1306, 1223, 1183, 1158, 1169, 1212, 1276, 1370, 1510, 1710, 2149, 3374, 4088, 2465, 1890, 1643, 1474, 1352, 1279, 1235, 1220, 1226, 1257, 1320, 1428, 1571, 1796, 2383, 3928, 4929, 2809, 2003, 1734, 1542, 1424, 1348, 1286, 1276, 1289, 1316, 1381, 1501, 1670, 1926, 2718, 4743, 5985, 3286, 2245, 1828, 1654, 1501, 1412, 1370, 1352, 1352, 1389, 1453, 1596, 1770, 2149, 3202, 6057]
| },
| "lsc_samples_greenR": {
| "uCoeff": [5184, 2925, 2021, 1716, 1550, 1418, 1345, 1291, 1283, 1276, 1312, 1389, 1497, 1663, 1947, 2704, 4787, 4223, 2539, 1879, 1627, 1477, 1359, 1283, 1234, 1224, 1234, 1263, 1326, 1426, 1572, 1785, 2386, 3915, 3596, 2257, 1785, 1563, 1410, 1303, 1232, 1184, 1173, 1180, 1216, 1276, 1364, 1503, 1708, 2123, 3355, 3212, 2105, 1716, 1500, 1349, 1255, 1189, 1141, 1124, 1132, 1165, 1228, 1316, 1454, 1645, 2004, 3007, 2959, 1983, 1678, 1451, 1314, 1212, 1153, 1109, 1085, 1097, 1134, 1197, 1287, 1408, 1589, 1874, 2774, 2743, 1898, 1623, 1429, 1291, 1195, 1125, 1074, 1054, 1060, 1099, 1169, 1261, 1384, 1553, 1816, 2592, 2619, 1884, 1596, 1413, 1270, 1169, 1105, 1057, 1031, 1041, 1088, 1142, 1236, 1359, 1531, 1781, 2514, 2565, 1847, 1589, 1394, 1268, 1171, 1092, 1035, 1024, 1038, 1075, 1141, 1228, 1357, 1525, 1760, 2464, 2548, 1856, 1596, 1394, 1263, 1162, 1097, 1044, 1024, 1032, 1081, 1142, 1224, 1345, 1525, 1769, 2456, 2637, 1856, 1603, 1400, 1274, 1176, 1099, 1054, 1031, 1044, 1075, 1148, 1230, 1367, 1528, 1777, 2489, 2694, 1893, 1616, 1429, 1296, 1186, 1117, 1074, 1051, 1060, 1102, 1165, 1249, 1377, 1556, 1811, 2601, 2880, 1962, 1656, 1445, 1321, 1218, 1148, 1096, 1080, 1085, 1127, 1191, 1272, 1400, 1592, 1874, 2743, 3080, 2054, 1712, 1497, 1357, 1246, 1180, 1130, 1117, 1125, 1162, 1220, 1323, 1443, 1630, 1973, 3007, 3448, 2204, 1764, 1559, 1397, 1296, 1228, 1173, 1151, 1165, 1206, 1265, 1362, 1506, 1701, 2117, 3326, 4041, 2432, 1856, 1613, 1459, 1349, 1278, 1224, 1205, 1222, 1255, 1312, 1415, 1569, 1777, 2349, 3835, 4787, 2753, 1983, 1708, 1543, 1415, 1330, 1291, 1274, 1280, 1314, 1379, 1494, 1645, 1913, 2684, 4698, 6264, 3240, 2211, 1807, 1620, 1509, 1410, 1354, 1333, 1337, 1397, 1462, 1572, 1760, 2135, 3132, 6111]
| },
| "lsc_samples_greenB": {
| "uCoeff": [5227, 2895, 2079, 1726, 1549, 1428, 1351, 1298, 1278, 1291, 1334, 1396, 1511, 1691, 1955, 2707, 4794, 4325, 2569, 1891, 1658, 1479, 1368, 1287, 1240, 1226, 1228, 1269, 1337, 1439, 1591, 1814, 2412, 4025, 3671, 2302, 1809, 1571, 1415, 1302, 1230, 1187, 1174, 1187, 1212, 1282, 1376, 1521, 1730, 2194, 3421, 3301, 2126, 1742, 1517, 1366, 1263, 1193, 1140, 1125, 1137, 1174, 1238, 1323, 1473, 1665, 2012, 3097, 2987, 2007, 1691, 1467, 1327, 1230, 1147, 1105, 1089, 1097, 1137, 1193, 1291, 1428, 1605, 1915, 2840, 2788, 1930, 1640, 1442, 1293, 1200, 1130, 1075, 1048, 1065, 1107, 1163, 1265, 1391, 1568, 1845, 2632, 2717, 1905, 1608, 1412, 1289, 1182, 1105, 1059, 1034, 1044, 1091, 1151, 1244, 1371, 1552, 1796, 2534, 2622, 1872, 1605, 1404, 1267, 1174, 1096, 1044, 1027, 1037, 1078, 1151, 1234, 1363, 1542, 1788, 2484, 2632, 1877, 1605, 1409, 1269, 1171, 1089, 1044, 1024, 1040, 1080, 1147, 1228, 1359, 1533, 1792, 2500, 2650, 1886, 1612, 1420, 1276, 1172, 1100, 1053, 1025, 1041, 1080, 1149, 1244, 1368, 1545, 1801, 2517, 2767, 1920, 1636, 1434, 1295, 1189, 1115, 1065, 1051, 1065, 1099, 1167, 1263, 1386, 1571, 1831, 2669, 2906, 1965, 1654, 1459, 1320, 1218, 1144, 1100, 1080, 1089, 1128, 1183, 1287, 1412, 1605, 1891, 2798, 3189, 2085, 1714, 1502, 1359, 1250, 1178, 1130, 1113, 1120, 1158, 1220, 1313, 1456, 1665, 2007, 3023, 3501, 2214, 1792, 1558, 1402, 1289, 1218, 1172, 1158, 1163, 1200, 1263, 1361, 1502, 1714, 2163, 3421, 4068, 2444, 1863, 1626, 1459, 1342, 1265, 1222, 1206, 1218, 1256, 1320, 1428, 1568, 1788, 2359, 3940, 4919, 2788, 1965, 1711, 1527, 1409, 1320, 1284, 1259, 1273, 1304, 1373, 1484, 1654, 1915, 2698, 4734, 6488, 3272, 2253, 1801, 1629, 1490, 1399, 1354, 1327, 1349, 1368, 1461, 1591, 1750, 2175, 3162, 5973]
| },
| "lsc_samples_blue": {
| "uCoeff": [4449, 2797, 1981, 1707, 1542, 1428, 1343, 1286, 1280, 1286, 1317, 1370, 1467, 1615, 1872, 2560, 4449, 3877, 2445, 1834, 1625, 1475, 1357, 1286, 1239, 1222, 1222, 1268, 1330, 1421, 1569, 1762, 2280, 3667, 3392, 2206, 1785, 1542, 1392, 1298, 1228, 1185, 1165, 1180, 1206, 1268, 1370, 1483, 1675, 2072, 3193, 3084, 2040, 1718, 1491, 1364, 1280, 1190, 1150, 1121, 1140, 1185, 1228, 1324, 1436, 1625, 1925, 2887, 2797, 1952, 1645, 1451, 1311, 1233, 1165, 1117, 1094, 1099, 1145, 1195, 1286, 1399, 1587, 1834, 2635, 2635, 1859, 1615, 1436, 1305, 1201, 1135, 1081, 1064, 1077, 1117, 1170, 1251, 1370, 1542, 1774, 2513, 2560, 1821, 1596, 1399, 1280, 1180, 1103, 1073, 1048, 1052, 1094, 1150, 1228, 1343, 1508, 1739, 2380, 2467, 1809, 1578, 1399, 1268, 1165, 1094, 1044, 1024, 1040, 1081, 1145, 1233, 1343, 1499, 1718, 2360, 2445, 1821, 1578, 1399, 1251, 1165, 1090, 1048, 1028, 1036, 1073, 1140, 1222, 1343, 1483, 1707, 2280, 2490, 1809, 1569, 1392, 1274, 1170, 1094, 1060, 1036, 1048, 1073, 1155, 1233, 1350, 1516, 1718, 2360, 2609, 1846, 1606, 1406, 1286, 1190, 1117, 1073, 1048, 1060, 1103, 1150, 1228, 1370, 1525, 1751, 2423, 2769, 1911, 1625, 1436, 1311, 1201, 1145, 1094, 1081, 1090, 1117, 1175, 1268, 1378, 1542, 1797, 2584, 2918, 1995, 1665, 1475, 1350, 1239, 1180, 1131, 1112, 1117, 1155, 1206, 1292, 1421, 1596, 1885, 2769, 3231, 2154, 1728, 1516, 1370, 1280, 1206, 1175, 1155, 1165, 1195, 1251, 1337, 1475, 1645, 2040, 3084, 3618, 2319, 1797, 1578, 1428, 1317, 1256, 1222, 1201, 1201, 1251, 1298, 1392, 1533, 1707, 2243, 3618, 4377, 2635, 1911, 1645, 1499, 1392, 1324, 1274, 1245, 1262, 1298, 1357, 1451, 1606, 1821, 2513, 4240, 5428, 3084, 2137, 1762, 1596, 1475, 1399, 1324, 1317, 1330, 1364, 1428, 1525, 1685, 2025, 2887, 5320]
| }
| }, {
| "name": "3840x2160_TL84_70",
| "resolution": "3840x2160",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [3898, 2457, 1852, 1622, 1498, 1396, 1325, 1286, 1254, 1256, 1309, 1381, 1457, 1583, 1774, 2313, 3659, 3352, 2202, 1729, 1556, 1429, 1348, 1270, 1227, 1217, 1213, 1252, 1293, 1389, 1498, 1657, 2097, 3113, 2946, 2022, 1674, 1502, 1387, 1291, 1226, 1189, 1163, 1168, 1203, 1257, 1331, 1445, 1597, 1914, 2765, 2679, 1897, 1626, 1467, 1339, 1245, 1183, 1139, 1122, 1136, 1162, 1219, 1300, 1409, 1553, 1803, 2533, 2471, 1819, 1578, 1428, 1306, 1212, 1141, 1103, 1080, 1096, 1136, 1191, 1274, 1383, 1519, 1722, 2372, 2373, 1764, 1564, 1390, 1277, 1189, 1127, 1076, 1058, 1054, 1105, 1158, 1249, 1348, 1489, 1678, 2283, 2325, 1727, 1540, 1385, 1269, 1171, 1101, 1056, 1030, 1039, 1085, 1153, 1231, 1340, 1468, 1661, 2168, 2223, 1741, 1528, 1365, 1251, 1170, 1090, 1047, 1024, 1030, 1069, 1144, 1222, 1324, 1477, 1648, 2135, 2245, 1725, 1529, 1368, 1261, 1170, 1092, 1045, 1026, 1039, 1078, 1139, 1219, 1321, 1466, 1644, 2128, 2308, 1736, 1546, 1379, 1263, 1174, 1099, 1050, 1039, 1039, 1080, 1148, 1228, 1337, 1473, 1663, 2135, 2336, 1762, 1558, 1400, 1288, 1184, 1120, 1074, 1045, 1065, 1101, 1161, 1245, 1350, 1492, 1682, 2228, 2460, 1795, 1588, 1427, 1295, 1205, 1137, 1102, 1076, 1085, 1119, 1183, 1267, 1379, 1523, 1734, 2398, 2639, 1880, 1617, 1468, 1343, 1250, 1172, 1120, 1115, 1128, 1159, 1218, 1293, 1409, 1554, 1800, 2552, 2882, 1996, 1673, 1504, 1377, 1288, 1214, 1178, 1154, 1164, 1203, 1260, 1339, 1451, 1600, 1920, 2776, 3272, 2154, 1741, 1560, 1428, 1327, 1264, 1225, 1211, 1216, 1243, 1297, 1387, 1498, 1663, 2090, 3155, 3833, 2400, 1821, 1629, 1482, 1387, 1324, 1270, 1261, 1272, 1295, 1348, 1445, 1574, 1758, 2329, 3699, 4497, 2731, 1999, 1696, 1570, 1449, 1377, 1342, 1327, 1326, 1356, 1406, 1520, 1647, 1922, 2668, 4547]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3936, 2459, 1820, 1602, 1480, 1375, 1316, 1270, 1263, 1256, 1286, 1349, 1434, 1558, 1761, 2292, 3658, 3325, 2192, 1720, 1538, 1424, 1328, 1264, 1221, 1212, 1221, 1245, 1298, 1379, 1491, 1644, 2074, 3103, 2911, 1991, 1654, 1491, 1371, 1282, 1220, 1176, 1167, 1173, 1205, 1257, 1329, 1439, 1590, 1886, 2734, 2656, 1885, 1605, 1442, 1320, 1240, 1182, 1137, 1121, 1128, 1159, 1215, 1290, 1402, 1546, 1804, 2503, 2486, 1797, 1580, 1403, 1291, 1202, 1149, 1107, 1084, 1095, 1130, 1188, 1266, 1365, 1504, 1709, 2346, 2335, 1735, 1538, 1387, 1272, 1187, 1122, 1073, 1054, 1059, 1097, 1162, 1244, 1347, 1478, 1668, 2220, 2249, 1728, 1518, 1375, 1254, 1163, 1103, 1057, 1031, 1041, 1087, 1137, 1222, 1326, 1462, 1644, 2168, 2213, 1700, 1514, 1359, 1253, 1166, 1091, 1035, 1024, 1038, 1074, 1137, 1215, 1325, 1458, 1629, 2135, 2201, 1709, 1520, 1359, 1249, 1157, 1096, 1044, 1024, 1032, 1080, 1138, 1212, 1315, 1459, 1637, 2130, 2268, 1708, 1526, 1364, 1259, 1171, 1098, 1054, 1031, 1044, 1074, 1144, 1217, 1335, 1461, 1643, 2154, 2307, 1735, 1535, 1389, 1278, 1180, 1115, 1074, 1051, 1060, 1100, 1159, 1234, 1342, 1483, 1668, 2235, 2440, 1787, 1566, 1401, 1300, 1209, 1145, 1095, 1079, 1084, 1124, 1183, 1254, 1361, 1511, 1715, 2335, 2577, 1854, 1609, 1444, 1331, 1234, 1175, 1128, 1115, 1123, 1157, 1210, 1299, 1396, 1539, 1789, 2522, 2832, 1963, 1646, 1494, 1364, 1279, 1219, 1168, 1147, 1160, 1198, 1250, 1332, 1447, 1593, 1894, 2741, 3238, 2128, 1713, 1534, 1415, 1324, 1263, 1215, 1197, 1213, 1242, 1290, 1375, 1496, 1648, 2063, 3087, 3730, 2356, 1805, 1607, 1482, 1379, 1307, 1274, 1259, 1264, 1293, 1346, 1439, 1553, 1748, 2303, 3666, 4692, 2696, 1972, 1678, 1541, 1456, 1375, 1328, 1309, 1312, 1363, 1414, 1499, 1639, 1911, 2615, 4585]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3966, 2436, 1866, 1611, 1479, 1384, 1321, 1276, 1259, 1270, 1306, 1356, 1446, 1581, 1767, 2294, 3663, 3398, 2215, 1730, 1564, 1426, 1336, 1268, 1226, 1214, 1215, 1251, 1308, 1391, 1507, 1667, 2094, 3182, 2966, 2026, 1674, 1498, 1375, 1281, 1218, 1179, 1167, 1179, 1201, 1262, 1340, 1454, 1609, 1942, 2783, 2722, 1901, 1627, 1457, 1335, 1248, 1185, 1136, 1122, 1133, 1167, 1224, 1296, 1418, 1563, 1811, 2570, 2507, 1816, 1591, 1418, 1303, 1219, 1143, 1103, 1088, 1095, 1133, 1184, 1270, 1383, 1518, 1742, 2396, 2370, 1761, 1552, 1399, 1274, 1192, 1127, 1074, 1048, 1064, 1105, 1157, 1248, 1353, 1491, 1692, 2251, 2324, 1745, 1528, 1374, 1272, 1176, 1103, 1059, 1034, 1044, 1090, 1146, 1230, 1337, 1480, 1656, 2184, 2256, 1721, 1527, 1368, 1252, 1169, 1095, 1044, 1027, 1037, 1077, 1146, 1221, 1331, 1473, 1652, 2150, 2266, 1726, 1528, 1373, 1254, 1166, 1088, 1044, 1024, 1040, 1079, 1143, 1216, 1328, 1466, 1656, 2164, 2278, 1732, 1533, 1383, 1260, 1167, 1099, 1053, 1025, 1041, 1079, 1145, 1230, 1335, 1475, 1662, 2175, 2363, 1757, 1552, 1394, 1277, 1183, 1113, 1065, 1051, 1065, 1097, 1161, 1247, 1351, 1496, 1684, 2287, 2460, 1789, 1564, 1414, 1299, 1209, 1141, 1099, 1079, 1088, 1125, 1176, 1268, 1372, 1522, 1729, 2377, 2659, 1879, 1610, 1449, 1332, 1238, 1173, 1128, 1111, 1118, 1153, 1210, 1290, 1408, 1569, 1816, 2534, 2871, 1971, 1669, 1493, 1368, 1272, 1209, 1167, 1154, 1158, 1192, 1248, 1331, 1444, 1604, 1931, 2811, 3258, 2138, 1719, 1545, 1415, 1318, 1251, 1213, 1198, 1209, 1242, 1297, 1387, 1495, 1657, 2071, 3164, 3825, 2383, 1790, 1609, 1468, 1374, 1298, 1268, 1245, 1257, 1283, 1341, 1430, 1561, 1750, 2314, 3692, 4849, 2721, 2005, 1673, 1548, 1439, 1365, 1328, 1304, 1323, 1337, 1413, 1515, 1631, 1943, 2638, 4488]
| },
| "lsc_samples_blue": {
| "uCoeff": [3422, 2362, 1788, 1595, 1473, 1384, 1314, 1265, 1260, 1265, 1290, 1332, 1408, 1518, 1701, 2183, 3422, 3076, 2119, 1684, 1536, 1422, 1326, 1267, 1226, 1210, 1210, 1250, 1302, 1375, 1488, 1625, 1992, 2925, 2762, 1951, 1654, 1473, 1354, 1277, 1216, 1177, 1159, 1173, 1195, 1249, 1335, 1422, 1563, 1846, 2616, 2560, 1833, 1607, 1434, 1334, 1264, 1182, 1146, 1118, 1136, 1178, 1215, 1297, 1386, 1529, 1741, 2413, 2363, 1772, 1552, 1403, 1288, 1222, 1160, 1115, 1093, 1097, 1141, 1186, 1265, 1357, 1502, 1677, 2241, 2253, 1703, 1531, 1393, 1285, 1193, 1132, 1080, 1064, 1076, 1115, 1163, 1235, 1334, 1468, 1634, 2160, 2204, 1676, 1518, 1362, 1263, 1174, 1101, 1073, 1048, 1052, 1093, 1145, 1215, 1312, 1442, 1609, 2066, 2137, 1669, 1504, 1364, 1253, 1160, 1093, 1044, 1024, 1040, 1080, 1141, 1220, 1313, 1436, 1594, 2054, 2121, 1680, 1505, 1364, 1237, 1160, 1089, 1048, 1028, 1036, 1072, 1136, 1210, 1313, 1422, 1586, 1994, 2155, 1669, 1496, 1357, 1259, 1165, 1093, 1060, 1036, 1048, 1072, 1150, 1220, 1319, 1450, 1594, 2054, 2241, 1697, 1526, 1369, 1269, 1183, 1115, 1073, 1048, 1060, 1101, 1145, 1215, 1336, 1456, 1619, 2099, 2355, 1745, 1539, 1393, 1291, 1193, 1142, 1093, 1080, 1089, 1115, 1168, 1251, 1341, 1468, 1653, 2214, 2455, 1806, 1569, 1425, 1324, 1228, 1175, 1129, 1110, 1115, 1150, 1196, 1271, 1377, 1510, 1718, 2342, 2670, 1924, 1615, 1456, 1339, 1264, 1198, 1170, 1151, 1160, 1187, 1236, 1309, 1420, 1546, 1833, 2560, 2927, 2040, 1664, 1504, 1387, 1294, 1242, 1213, 1193, 1193, 1238, 1277, 1354, 1465, 1590, 1980, 2927, 3436, 2265, 1746, 1553, 1444, 1358, 1302, 1258, 1232, 1247, 1278, 1326, 1401, 1520, 1673, 2171, 3337, 4107, 2579, 1912, 1641, 1520, 1426, 1365, 1300, 1295, 1306, 1333, 1384, 1458, 1576, 1823, 2430, 4031]
| }
| }, {
| "name": "3840x2160_TL84_30",
| "resolution": "3840x2160",
| "illumination": "TL84",
| "vignetting": 30,
| "lsc_samples_red": {
| "uCoeff": [2256, 1836, 1573, 1465, 1401, 1335, 1285, 1256, 1229, 1229, 1271, 1323, 1368, 1436, 1522, 1754, 2153, 2140, 1734, 1515, 1432, 1358, 1305, 1244, 1209, 1201, 1197, 1228, 1257, 1325, 1388, 1465, 1671, 2026, 2016, 1656, 1494, 1404, 1332, 1261, 1209, 1178, 1154, 1158, 1188, 1231, 1285, 1358, 1439, 1588, 1923, 1927, 1599, 1473, 1385, 1298, 1225, 1173, 1134, 1118, 1131, 1154, 1201, 1264, 1338, 1419, 1537, 1847, 1846, 1563, 1448, 1361, 1273, 1198, 1135, 1101, 1078, 1094, 1131, 1178, 1246, 1323, 1402, 1497, 1790, 1814, 1537, 1445, 1333, 1251, 1179, 1123, 1075, 1057, 1053, 1102, 1149, 1226, 1298, 1386, 1477, 1761, 1801, 1519, 1431, 1332, 1246, 1163, 1099, 1055, 1030, 1039, 1083, 1146, 1211, 1294, 1374, 1472, 1708, 1749, 1534, 1425, 1318, 1231, 1162, 1088, 1047, 1024, 1030, 1068, 1138, 1205, 1282, 1384, 1467, 1696, 1765, 1524, 1426, 1321, 1240, 1163, 1091, 1045, 1026, 1039, 1077, 1133, 1203, 1280, 1376, 1466, 1694, 1800, 1530, 1439, 1329, 1242, 1167, 1097, 1050, 1039, 1039, 1079, 1142, 1210, 1294, 1380, 1478, 1696, 1808, 1544, 1445, 1346, 1263, 1176, 1117, 1073, 1045, 1064, 1099, 1154, 1224, 1302, 1393, 1487, 1743, 1864, 1559, 1463, 1365, 1268, 1194, 1133, 1100, 1076, 1084, 1116, 1173, 1243, 1324, 1413, 1516, 1828, 1941, 1604, 1478, 1394, 1306, 1233, 1165, 1117, 1113, 1124, 1153, 1203, 1262, 1344, 1429, 1550, 1892, 2037, 1664, 1508, 1416, 1331, 1264, 1202, 1170, 1149, 1157, 1192, 1238, 1298, 1372, 1454, 1614, 1980, 2185, 1740, 1543, 1450, 1367, 1293, 1244, 1212, 1200, 1204, 1225, 1267, 1332, 1400, 1487, 1699, 2124, 2371, 1854, 1579, 1489, 1401, 1338, 1292, 1248, 1241, 1250, 1266, 1305, 1371, 1447, 1535, 1811, 2307, 2512, 1991, 1670, 1519, 1458, 1380, 1330, 1305, 1294, 1291, 1312, 1344, 1418, 1484, 1619, 1955, 2534]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2272, 1837, 1552, 1450, 1386, 1318, 1277, 1241, 1237, 1229, 1251, 1296, 1350, 1418, 1513, 1742, 2153, 2127, 1728, 1508, 1419, 1354, 1287, 1239, 1203, 1197, 1203, 1222, 1261, 1317, 1383, 1455, 1657, 2021, 1998, 1637, 1480, 1395, 1318, 1253, 1204, 1166, 1158, 1163, 1190, 1231, 1283, 1353, 1434, 1570, 1907, 1914, 1591, 1458, 1365, 1281, 1220, 1172, 1132, 1117, 1123, 1150, 1198, 1255, 1332, 1413, 1538, 1830, 1854, 1548, 1449, 1340, 1260, 1189, 1143, 1104, 1082, 1093, 1125, 1175, 1238, 1308, 1391, 1488, 1775, 1791, 1517, 1424, 1331, 1247, 1177, 1119, 1072, 1053, 1059, 1094, 1154, 1222, 1297, 1377, 1471, 1724, 1756, 1520, 1413, 1324, 1232, 1156, 1101, 1056, 1031, 1041, 1085, 1131, 1204, 1282, 1369, 1460, 1708, 1743, 1505, 1413, 1312, 1233, 1159, 1089, 1035, 1024, 1038, 1073, 1131, 1199, 1283, 1369, 1454, 1695, 1738, 1512, 1419, 1313, 1229, 1151, 1094, 1044, 1024, 1032, 1079, 1133, 1196, 1275, 1370, 1461, 1695, 1776, 1510, 1422, 1317, 1238, 1163, 1096, 1054, 1031, 1044, 1073, 1138, 1200, 1291, 1371, 1464, 1707, 1790, 1525, 1427, 1336, 1255, 1171, 1113, 1073, 1051, 1059, 1098, 1152, 1215, 1296, 1386, 1478, 1748, 1853, 1553, 1446, 1343, 1272, 1198, 1140, 1094, 1079, 1083, 1121, 1173, 1231, 1309, 1403, 1503, 1791, 1906, 1587, 1471, 1374, 1295, 1218, 1167, 1124, 1113, 1119, 1151, 1196, 1268, 1334, 1418, 1543, 1875, 2010, 1642, 1488, 1407, 1319, 1255, 1206, 1161, 1142, 1154, 1187, 1229, 1291, 1369, 1448, 1597, 1960, 2167, 1724, 1523, 1429, 1355, 1291, 1243, 1202, 1187, 1200, 1224, 1260, 1322, 1399, 1475, 1682, 2089, 2322, 1828, 1567, 1472, 1402, 1331, 1277, 1252, 1240, 1243, 1264, 1303, 1366, 1430, 1528, 1796, 2291, 2596, 1972, 1652, 1506, 1435, 1386, 1328, 1292, 1278, 1279, 1318, 1351, 1401, 1478, 1612, 1925, 2550]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2285, 1824, 1582, 1457, 1386, 1326, 1282, 1247, 1233, 1241, 1268, 1302, 1359, 1435, 1517, 1744, 2155, 2162, 1742, 1515, 1439, 1355, 1294, 1242, 1208, 1198, 1198, 1227, 1270, 1326, 1395, 1472, 1669, 2059, 2027, 1659, 1494, 1400, 1322, 1252, 1202, 1169, 1159, 1169, 1186, 1236, 1292, 1366, 1447, 1605, 1932, 1950, 1602, 1474, 1377, 1295, 1227, 1175, 1131, 1118, 1128, 1158, 1206, 1261, 1346, 1426, 1542, 1867, 1866, 1561, 1457, 1352, 1271, 1204, 1137, 1101, 1086, 1093, 1128, 1172, 1242, 1323, 1402, 1511, 1803, 1812, 1535, 1435, 1341, 1248, 1181, 1123, 1073, 1047, 1064, 1102, 1148, 1225, 1302, 1387, 1487, 1742, 1801, 1532, 1421, 1323, 1249, 1168, 1101, 1058, 1034, 1044, 1088, 1139, 1210, 1292, 1383, 1469, 1717, 1769, 1519, 1424, 1320, 1232, 1162, 1093, 1044, 1027, 1037, 1076, 1140, 1204, 1288, 1380, 1470, 1705, 1778, 1524, 1425, 1325, 1234, 1159, 1087, 1044, 1024, 1040, 1078, 1137, 1199, 1286, 1376, 1474, 1716, 1782, 1527, 1429, 1333, 1240, 1160, 1097, 1053, 1025, 1041, 1078, 1139, 1212, 1292, 1383, 1478, 1720, 1824, 1540, 1440, 1340, 1254, 1174, 1111, 1064, 1051, 1064, 1095, 1154, 1227, 1303, 1396, 1489, 1779, 1864, 1555, 1445, 1354, 1271, 1198, 1137, 1097, 1079, 1087, 1122, 1166, 1243, 1318, 1412, 1513, 1816, 1953, 1604, 1472, 1378, 1297, 1222, 1166, 1124, 1109, 1115, 1147, 1196, 1260, 1344, 1441, 1561, 1882, 2031, 1648, 1505, 1406, 1323, 1249, 1197, 1160, 1149, 1152, 1181, 1227, 1291, 1366, 1457, 1621, 1999, 2177, 1730, 1527, 1438, 1355, 1285, 1232, 1200, 1188, 1197, 1224, 1267, 1332, 1398, 1482, 1687, 2129, 2367, 1844, 1557, 1473, 1390, 1327, 1269, 1246, 1227, 1237, 1256, 1298, 1359, 1436, 1529, 1802, 2304, 2663, 1985, 1675, 1503, 1441, 1372, 1320, 1292, 1273, 1288, 1295, 1350, 1415, 1471, 1633, 1938, 2509]
| },
| "lsc_samples_blue": {
| "uCoeff": [2052, 1782, 1531, 1445, 1381, 1326, 1275, 1237, 1234, 1237, 1255, 1282, 1329, 1388, 1473, 1681, 2052, 2008, 1684, 1483, 1417, 1352, 1286, 1241, 1208, 1195, 1193, 1226, 1265, 1313, 1381, 1442, 1608, 1936, 1921, 1611, 1480, 1380, 1304, 1249, 1200, 1167, 1151, 1163, 1181, 1224, 1288, 1340, 1414, 1545, 1846, 1862, 1557, 1459, 1358, 1293, 1242, 1172, 1140, 1114, 1131, 1168, 1198, 1261, 1319, 1401, 1496, 1782, 1785, 1531, 1428, 1340, 1258, 1207, 1154, 1112, 1091, 1095, 1135, 1174, 1238, 1301, 1390, 1467, 1715, 1743, 1495, 1419, 1336, 1258, 1182, 1128, 1079, 1063, 1075, 1111, 1155, 1213, 1286, 1370, 1447, 1689, 1729, 1483, 1413, 1313, 1241, 1166, 1099, 1072, 1048, 1051, 1091, 1138, 1197, 1270, 1353, 1436, 1646, 1697, 1482, 1405, 1316, 1233, 1153, 1091, 1044, 1024, 1040, 1079, 1135, 1203, 1273, 1351, 1429, 1647, 1690, 1491, 1407, 1317, 1219, 1154, 1088, 1048, 1028, 1036, 1071, 1131, 1194, 1273, 1341, 1425, 1613, 1708, 1482, 1399, 1311, 1238, 1158, 1091, 1060, 1036, 1048, 1071, 1144, 1203, 1278, 1363, 1429, 1647, 1751, 1498, 1420, 1319, 1246, 1175, 1113, 1072, 1048, 1059, 1099, 1138, 1197, 1291, 1365, 1443, 1666, 1803, 1524, 1425, 1336, 1263, 1182, 1138, 1092, 1080, 1088, 1111, 1159, 1227, 1292, 1370, 1460, 1721, 1837, 1555, 1441, 1358, 1290, 1212, 1167, 1125, 1108, 1112, 1144, 1183, 1242, 1318, 1396, 1495, 1773, 1921, 1616, 1465, 1376, 1298, 1242, 1187, 1163, 1146, 1154, 1177, 1217, 1272, 1347, 1413, 1557, 1862, 2007, 1668, 1487, 1405, 1332, 1264, 1224, 1200, 1183, 1181, 1220, 1249, 1304, 1374, 1433, 1630, 2007, 2180, 1773, 1527, 1430, 1370, 1313, 1273, 1238, 1215, 1227, 1251, 1286, 1335, 1405, 1476, 1716, 2133, 2345, 1905, 1613, 1479, 1418, 1361, 1320, 1268, 1265, 1273, 1292, 1326, 1369, 1431, 1554, 1821, 2313]
| }
| }],
| "tableAll_len": 21
| }
| },
| "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_Camera",
| "correct_level": 255,
| "correct_level_max": 254,
| "light_center": [1276.17, 734.826],
| "coefficient": [-1531.87, 4.36762e-05, -8.07698e-08, 5.60124e-11]
| }
| },
| "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": 0,
| "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": [0.5, 0.5, 0.5, 0.5, 0.5, 0.1, 0.1, 0.1, 0.1]
| }
| },
| "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.2665, 3.3552],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [80, 80, 80, 80]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.8123, 2.9754],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [80, 80, 80, 80]
| }
| }, {
| "name": "D50",
| "awbGain": [1.8255, 1.9895],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [80, 80, 80, 80]
| }
| }, {
| "name": "D65",
| "awbGain": [2.1888, 1.7702],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [80, 80, 80, 80]
| }
| }, {
| "name": "D75",
| "awbGain": [2.2722, 1.6078],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [80, 80, 80, 80]
| }
| }, {
| "name": "HZ",
| "awbGain": [1.0456, 4.1914],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [80, 80, 80, 80]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.5348, 2.7129],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 16],
| "sat": [80, 80, 80, 80]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.4696, -0.3211, -0.1485, -0.35, 1.3791, -0.0291, 0.1023, -1.1232, 2.0209],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [1.1515, -0.0862, -0.0653, -0.195, 1.1729, 0.0221, 0.1389, -0.6783, 1.5394],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [1.6837, -0.686, 0.0023, -0.2409, 1.1568, 0.0841, 0.0884, -0.6662, 1.5777],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.3428, -0.4047, 0.062, -0.0813, 0.9595, 0.1218, 0.1615, -0.3888, 1.2273],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [1.5516, -0.5666, 0.015, -0.1956, 1.2831, -0.0875, 0.0995, -0.6309, 1.5315],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [1.242, -0.2868, 0.0448, -0.0509, 1.0826, -0.0317, 0.1667, -0.3332, 1.1664],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.5555, -0.5665, 0.011, -0.1369, 1.2631, -0.1262, 0.0765, -0.5457, 1.4692],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [1.2535, -0.2872, 0.0338, 0.0011, 1.0673, -0.0684, 0.1583, -0.2706, 1.1123],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.577, -0.5793, 0.0023, -0.131, 1.2508, -0.1199, 0.0551, -0.4942, 1.4391],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.2713, -0.298, 0.0267, 0.0075, 1.0569, -0.0643, 0.1444, -0.2338, 1.0894],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.3742, -0.2265, -0.1477, -0.3788, 1.225, 0.1539, 0.0827, -1.4073, 2.3246],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [1.0685, -0.0408, -0.0277, -0.2288, 1.0343, 0.1945, 0.1121, -0.9133, 1.8012],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.4661, -0.4302, -0.0359, -0.254, 1.2602, -0.0062, 0.0797, -0.6687, 1.589],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [1.1626, -0.1799, 0.0173, -0.1102, 1.0717, 0.0386, 0.136, -0.3552, 1.2192],
| "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.075,
| "LumaTrigThers": 0,
| "StableThers": 0.02,
| "StableFrames": 3,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 50,
| "OutFocusPos": 30,
| "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": [610, 398, 100, 87, 87, 87, 87, 266, 370, 397, 359, 242, 87, 87, 87, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2146, 1233, 87, 87, 87, 87, 87, 893, 1340, 1447, 1275, 725, 87, 87, 87, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2182, 1025, 87, 87, 87, 87, 87, 1114, 1585, 1687, 1472, 816, 87, 87, 87, 87]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1724, 897, 87, 87, 87, 87, 87, 894, 1235, 1307, 1144, 659, 87, 87, 87, 87]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1395, 955, 439, 87, 87, 87, 231, 703, 892, 933, 835, 565, 87, 87, 87, 87]
| }, {
| "iso": 1500,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2701, 1752, 401, 87, 87, 87, 87, 1304, 1702, 1769, 1527, 849, 87, 87, 87, 428]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [2494, 2174, 1886, 1631, 1239, 1025, 979, 1027, 1092, 1127, 1112, 1044, 939, 841, 847, 1052]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [3258, 2996, 2748, 2514, 2095, 1744, 1467, 1273, 1161, 1122, 1134, 1175, 1226, 1278, 1328, 1377]
| }, {
| "iso": 6400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [4317, 3912, 3543, 3210, 2661, 2272, 2037, 1928, 1898, 1903, 1909, 1905, 1895, 1903, 1968, 2140]
| }, {
| "iso": 12800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [5211, 4715, 4254, 3832, 3113, 2590, 2289, 2203, 2278, 2436, 2618, 2785, 2919, 3016, 3079, 3121]
| }, {
| "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]
| }],
| "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": [375, 318, 265, 214, 118, 87, 87, 87, 87, 103, 120, 124, 115, 91, 87, 87]
| }, {
| "iso": 100,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [415, 357, 302, 250, 159, 88, 87, 87, 115, 140, 154, 155, 144, 120, 87, 87]
| }, {
| "iso": 200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [492, 427, 367, 312, 218, 155, 133, 146, 171, 192, 203, 20, 18, 159, 119, 87]
| }, {
| "iso": 400,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [695, 603, 518, 439, 306, 216, 184, 203, 239, 269, 284, 282, 261, 221, 165, 103]
| }, {
| "iso": 800,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1043, 910, 786, 672, 476, 336, 272, 282, 325, 367, 390, 389, 363, 310, 236, 158]
| }, {
| "iso": 1500,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [1200, 1074, 959, 856, 684, 565, 501, 482, 489, 502, 506, 495, 464, 414, 347, 279]
| }, {
| "iso": 1600,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [815, 691, 574, 461, 248, 87, 87, 87, 154, 230, 268, 274, 252, 199, 111, 87]
| }, {
| "iso": 3200,
| "lumapoint": [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
| "sigma": [858, 748, 645, 550, 388, 270, 214, 222, 259, 293, 313, 312, 291, 249, 190, 137]
| }, {
| "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]
| }],
| "Calib_ISO_len": 13
| }],
| "Setting_len": 2
| },
| "Bayernr2D": {
| "enable": 1,
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.1,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.2,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.3,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.2
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.5
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 1.15,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 1500,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.05,
| "weight": 0.1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.4,
| "edgesofts": 2,
| "ratio": 0.04,
| "weight": 0.2
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.03,
| "weight": 0.5
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 1,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.8
| }, {
| "iso": 1500,
| "gauss_guide": 1,
| "filter_strength": 1.2,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 0.9
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "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.35,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.225,
| "hi_clipwgt": 0.225,
| "softwgt": 0
| }, {
| "iso": 100,
| "filter_strength": 0.35,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.225,
| "hi_clipwgt": 0.225,
| "softwgt": 0
| }, {
| "iso": 200,
| "filter_strength": 0.55,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.225,
| "hi_clipwgt": 0.125,
| "softwgt": 0
| }, {
| "iso": 400,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.17,
| "hi_clipwgt": 0.17,
| "softwgt": 0
| }, {
| "iso": 800,
| "filter_strength": 0.4,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.1,
| "hi_clipwgt": 0.1,
| "softwgt": 0
| }, {
| "iso": 1500,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.04,
| "hi_clipwgt": 0.04,
| "softwgt": 0
| }, {
| "iso": 1600,
| "filter_strength": 0.05,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.04,
| "hi_clipwgt": 0.04,
| "softwgt": 0
| }, {
| "iso": 3200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 6400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 12800,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 25600,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 51200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 102400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0
| }, {
| "iso": 100,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.55,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0
| }, {
| "iso": 200,
| "filter_strength": 0.2,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.125,
| "hi_clipwgt": 0.125,
| "softwgt": 0
| }, {
| "iso": 400,
| "filter_strength": 0.15,
| "sp_filter_strength": 0.6,
| "lo_clipwgt": 0.1,
| "hi_clipwgt": 0.1,
| "softwgt": 0
| }, {
| "iso": 800,
| "filter_strength": 0.12,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.08,
| "hi_clipwgt": 0.08,
| "softwgt": 0
| }, {
| "iso": 1500,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.05,
| "hi_clipwgt": 0.05,
| "softwgt": 0
| }, {
| "iso": 1600,
| "filter_strength": 0.05,
| "sp_filter_strength": 0.65,
| "lo_clipwgt": 0.04,
| "hi_clipwgt": 0.04,
| "softwgt": 0
| }, {
| "iso": 3200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 6400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 12800,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 25600,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 51200,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }, {
| "iso": 102400,
| "filter_strength": 0.06,
| "sp_filter_strength": 0.7,
| "lo_clipwgt": 0.0322,
| "hi_clipwgt": 0.0322,
| "softwgt": 0
| }],
| "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": 30,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "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": 30,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "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.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 8.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 18.2,
| "hf_color_sat": 1.3,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 2,
| "lf_denoise_strength": 50,
| "lf_color_sat": 3,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 35.2,
| "hf_color_sat": 1.1,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 2,
| "lf_denoise_strength": 50,
| "lf_color_sat": 2,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 35.2,
| "hf_color_sat": 1.1,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 2,
| "lf_denoise_strength": 50,
| "lf_color_sat": 2,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "lf_denoise_alpha": 1
| }, {
| "iso": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 50,
| "lf_color_sat": 4,
| "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": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 30,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 18.2,
| "hf_color_sat": 1.3,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 8,
| "thumb_color_sat": 2,
| "lf_denoise_strength": 8,
| "lf_color_sat": 3,
| "lf_denoise_alpha": 1
| }, {
| "iso": 1600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 35.2,
| "hf_color_sat": 1.1,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 2,
| "lf_denoise_strength": 16,
| "lf_color_sat": 2,
| "lf_denoise_alpha": 1
| }, {
| "iso": 3200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 20,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 35.2,
| "hf_color_sat": 1.1,
| "hf_denoise_alpha": 0,
| "hf_bf_wgt_clip": 0,
| "thumb_spikes_reducion_strength": 0.2,
| "thumb_denoise_strength": 16,
| "thumb_color_sat": 2,
| "lf_denoise_strength": 16,
| "lf_color_sat": 2,
| "lf_denoise_alpha": 1
| }, {
| "iso": 6400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 12800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 25600,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 51200,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 102400,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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": 204800,
| "hf_bypass": 0,
| "lf_bypass": 0,
| "cnr_exgain": 1,
| "cnr_g_gain": 1,
| "color_sat_adj": 40,
| "color_sat_adj_alpha": 0.8,
| "hf_spikes_reducion_strength": 0.5,
| "hf_denoise_strength": 10.2,
| "hf_color_sat": 1.5,
| "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
| }],
| "Tuning_ISO_len": 13
| }],
| "Setting_len": 2
| }
| },
| "ynr_v2": {
| "Version": "",
| "CalibPara": {
| "Setting": [{
| "SNR_Mode": "LSNR",
| "Sensor_Mode": "lcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-9.60086e-13, 9.76012e-09, -3.5858e-05, 0.052272, 4.4182],
| "ynr_ci_l": 0.4636,
| "ynr_ci_h": 0.2694
| }, {
| "iso": 100,
| "sigma_curve": [-3.82428e-13, 5.59894e-09, -2.84723e-05, 0.0519503, 6.11673],
| "ynr_ci_l": 0.433,
| "ynr_ci_h": 0.2503
| }, {
| "iso": 200,
| "sigma_curve": [8.95393e-15, 2.83318e-09, -2.39129e-05, 0.0524077, 9.45814],
| "ynr_ci_l": 0.4048,
| "ynr_ci_h": 0.2319
| }, {
| "iso": 400,
| "sigma_curve": [-5.99931e-14, 3.84533e-09, -2.76144e-05, 0.0544926, 17.6545],
| "ynr_ci_l": 0.3826,
| "ynr_ci_h": 0.216
| }, {
| "iso": 800,
| "sigma_curve": [-3.26841e-13, 6.49178e-09, -3.65161e-05, 0.0618525, 32.745],
| "ynr_ci_l": 0.3483,
| "ynr_ci_h": 0.194
| }, {
| "iso": 1500,
| "sigma_curve": [-1.67278e-12, 1.9889e-08, -8.39923e-05, 0.12744, 19.1837],
| "ynr_ci_l": 0.3601,
| "ynr_ci_h": 0.196
| }, {
| "iso": 1600,
| "sigma_curve": [-4.9153e-12, 5.35045e-08, -0.000203976, 0.277971, 23.3188],
| "ynr_ci_l": 0.2863,
| "ynr_ci_h": 0.1597
| }, {
| "iso": 3200,
| "sigma_curve": [-7.19554e-12, 7.65051e-08, -0.000288215, 0.394942, 21.3052],
| "ynr_ci_l": 0.2905,
| "ynr_ci_h": 0.1601
| }, {
| "iso": 6400,
| "sigma_curve": [-1.65334e-12, 4.2331e-08, -0.000265642, 0.473311, 131.035],
| "ynr_ci_l": 0.2395,
| "ynr_ci_h": 0.1475
| }, {
| "iso": 12800,
| "sigma_curve": [6.34936e-12, -2.74306e-08, -0.000121194, 0.502902, 172.106],
| "ynr_ci_l": 0.2836,
| "ynr_ci_h": 0.1751
| }, {
| "iso": 25600,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }, {
| "iso": 51200,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }, {
| "iso": 102400,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }],
| "Calib_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Calib_ISO": [{
| "iso": 50,
| "sigma_curve": [-0, 0, -0, -0.006, 22.1381],
| "ynr_ci_l": 0.3106,
| "ynr_ci_h": 0.2198
| }, {
| "iso": 100,
| "sigma_curve": [-0, 0, -0, 0.0104, 21.1076],
| "ynr_ci_l": 0.3146,
| "ynr_ci_h": 0.2087
| }, {
| "iso": 200,
| "sigma_curve": [-0, 0, -0, 0.0488, 12.8588],
| "ynr_ci_l": 0.323,
| "ynr_ci_h": 0.2005
| }, {
| "iso": 400,
| "sigma_curve": [-0, 0, -0, 0.0132, 45.8375],
| "ynr_ci_l": 0.3181,
| "ynr_ci_h": 0.1898
| }, {
| "iso": 800,
| "sigma_curve": [-0, 0, -0, -0.0288, 86.9525],
| "ynr_ci_l": 0.3113,
| "ynr_ci_h": 0.1826
| }, {
| "iso": 1500,
| "sigma_curve": [-0, 0, -0.0001, 0.0451, 85.822],
| "ynr_ci_l": 0.3096,
| "ynr_ci_h": 0.1846
| }, {
| "iso": 1600,
| "sigma_curve": [-0, 0, -0, 0.0309, 34.1171],
| "ynr_ci_l": 0.4358,
| "ynr_ci_h": 0.225
| }, {
| "iso": 3200,
| "sigma_curve": [-0, 0, -0.0001, 0.0375, 53.4624],
| "ynr_ci_l": 0.3923,
| "ynr_ci_h": 0.1958
| }, {
| "iso": 6400,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }, {
| "iso": 12800,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }, {
| "iso": 25600,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }, {
| "iso": 51200,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }, {
| "iso": 102400,
| "sigma_curve": [-0, 0, -0, 0.0299, 10.9382],
| "ynr_ci_l": 0.5,
| "ynr_ci_h": 1
| }],
| "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": 0.3,
| "low_bf_1": 0.4,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.3,
| "low_filt_strength_0": 0.4,
| "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.5,
| "high_weight": 0.4,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "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": 0.35,
| "low_bf_1": 0.4,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.3,
| "low_filt_strength_0": 0.4,
| "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": 1.1,
| "high_weight": 0.4,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "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": 0.45,
| "low_bf_1": 0.4,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.3,
| "low_filt_strength_0": 0.4,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.25,
| "base_filter_weight_0": 0.28,
| "base_filter_weight_1": 0.46,
| "base_filter_weight_2": 0.26,
| "high_thred_adj": 1.2,
| "high_weight": 0.4,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "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": 0.75,
| "low_bf_1": 0.75,
| "low_thred_adj": 0.4,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.7,
| "low_filt_strength_0": 0.4,
| "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": 1.2,
| "high_weight": 0.6,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "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": 0.75,
| "low_bf_1": 0.75,
| "low_thred_adj": 0.35,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.8,
| "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": 1.8,
| "high_weight": 0.2,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "iso": 1500,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.2,
| "low_bf_1": 1.2,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.9,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.6,
| "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.2,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.4, 3.8, 3.2, 3.1, 4, 7.3, 8.6, 8]
| }, {
| "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": 0.8,
| "low_bf_1": 0.7,
| "low_thred_adj": 0.35,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.7,
| "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.2,
| "high_weight": 0.6,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "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": 1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.5,
| "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.4,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "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": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 3.2, 3.4, 3.6, 3.1, 3, 7.3, 8.6, 8]
| }, {
| "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": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.3,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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]
| }],
| "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": 0.6,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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": 0.5,
| "high_weight": 0.8,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "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": 0.65,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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": 0.8,
| "high_weight": 0.8,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "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": 0.7,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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": 0.9,
| "high_weight": 0.7,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "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": 0.8,
| "low_bf_1": 0.7,
| "low_thred_adj": 0.35,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.7,
| "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.2,
| "high_weight": 0.6,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "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": 0.9,
| "low_bf_1": 0.9,
| "low_thred_adj": 0.35,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.8,
| "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": 1.8,
| "high_weight": 0.4,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "iso": 1500,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.2,
| "low_bf_1": 1.2,
| "low_thred_adj": 0.5,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.9,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.6,
| "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.2,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.4, 2.8, 3.2, 3.6, 4, 4.3, 4.6, 5]
| }, {
| "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": 0.8,
| "low_bf_1": 0.7,
| "low_thred_adj": 0.35,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.7,
| "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.2,
| "high_weight": 0.6,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "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": 1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "low_filt_strength_0": 0.7,
| "low_filt_strength_1": 0.85,
| "low_bi_weight": 0.5,
| "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.4,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "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": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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.2, 1.3, 1.4, 1.6, 1.7, 1.8, 2, 2.2, 2.4, 2.6, 2.8, 3, 3.3, 3.6, 4]
| }, {
| "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": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "low_thred_adj": 0.25,
| "low_peak_supress": 0.5,
| "low_edge_adj_thresh": 7,
| "low_center_weight": 0.4,
| "low_dist_adj": 8,
| "low_weight": 0.5,
| "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.78,
| "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]
| }],
| "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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0.1,
| "sharp_ratio": 2,
| "bf_gain": 2,
| "bf_ratio": 0,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [1023, 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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0.1,
| "sharp_ratio": 2,
| "bf_gain": 3,
| "bf_ratio": 0,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [1023, 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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0.1,
| "sharp_ratio": 2,
| "bf_gain": 3,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "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.5,
| "pbf_add": 1,
| "gaus_ratio": 0.1,
| "sharp_ratio": 2,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "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": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 1,
| "gaus_ratio": 0.8,
| "sharp_ratio": 1.5,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "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": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 1,
| "gaus_ratio": 0.8,
| "sharp_ratio": 0.5,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 1,
| "gaus_ratio": 0.6,
| "sharp_ratio": 11,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.3,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 13,
| "bf_gain": 2,
| "bf_ratio": 0,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [8, 12, 16, 16, 24, 20, 16, 16],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [1023, 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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 13,
| "bf_gain": 3,
| "bf_ratio": 0,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [12, 16, 20, 24, 28, 24, 20, 20],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [1023, 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.8,
| "pbf_ratio": 0,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 13,
| "bf_gain": 3,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [24, 32, 40, 48, 56, 48, 48, 40],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "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,
| "pbf_add": 1,
| "gaus_ratio": 0,
| "sharp_ratio": 13,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [32, 40, 48, 56, 64, 56, 48, 40],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "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": 0.8,
| "pbf_ratio": 0.2,
| "pbf_add": 1,
| "gaus_ratio": 0.5,
| "sharp_ratio": 12,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "luma_para": {
| "luma_point": [0, 64, 128, 256, 384, 640, 896, 1024],
| "luma_sigma": [40, 48, 56, 64, 80, 64, 56, 48],
| "hf_clip": [64, 96, 128, 160, 192, 160, 128, 0],
| "local_sharp_strength": [512, 512, 512, 512, 512, 512, 512, 512]
| },
| "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": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 1,
| "gaus_ratio": 0.6,
| "sharp_ratio": 11,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.5,
| "pbf_add": 1,
| "gaus_ratio": 0.6,
| "sharp_ratio": 11,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.3,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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": 0.8,
| "pbf_ratio": 0.4,
| "pbf_add": 1,
| "gaus_ratio": 1,
| "sharp_ratio": 8,
| "bf_gain": 4,
| "bf_ratio": 1,
| "bf_add": 32,
| "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
| }
| }
| }
|
|