hc
2023-08-21 ef9e1ccebba20d2e3859126411166909a383f483
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
{
   "sensor_calib":    {
       "resolution":    {
           "width":    2592,
           "height":    1944
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 8, 128, 0, 1, 128, 1024],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    8
           },
           "CISExtraAgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISIspDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISHdrGainIndSetEn":    1
       },
       "CISTimeSet":    {
           "Linear":    {
               "CISTimeRegMin":    4,
               "CISLinTimeRegMaxFac":    {
                   "fCoeff":    [1, 4]
               },
               "CISTimeRegOdevity":    {
                   "fCoeff":    [1, 0]
               }
           },
           "Hdr":    [{
                   "name":    "HDR_TWO_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }, {
                   "name":    "HDR_THREE_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }]
       },
       "CISHdrSet":    {
           "hdr_en":    0,
           "hdr_mode":    "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
           "line_mode":    "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
       },
       "CISDcgSet":    {
           "Linear":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    1,
               "sync_switch":    0,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           },
           "Hdr":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    3.5,
               "sync_switch":    1,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           }
       },
       "CISExpUpdate":    {
           "Linear":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    2
           },
           "Hdr":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           }
       },
       "CISMinFps":    10,
       "CISFlip":    0
   },
   "module_calib":    {
       "sensor_module":    {
           "FNumber":    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":    0,
                               "AecOpType":    "RK_AIQ_OP_MODE_AUTO",
                               "HistStatsMode":    "CAM_HISTV2_MODE_Y",
                               "RawStatsMode":    "CAM_RAWSTATSV2_MODE_Y",
                               "YRangeMode":    "CAM_YRANGEV2_MODE_FULL",
                               "AecGridWeight":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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":    6,
                                       "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.15,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    2,
                                   "WhiteDelay":    2
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    0,
                                   "FpsValue":    24
                               },
                               "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":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.003,
                                   "InitGainValue":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.04, 0.04, 0.04, 0.04, 0.04],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 4, 8, 15.5, 16],
                                   "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.032, 0.064, 0.192, 0.32, 0.448],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [45, 45, 40, 38, 33, 30],
                                   "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.032, 0.064, 0.128, 0.192, 0.32, 0.448],
                                       "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.03, 0.03, 0.03, 0.03, 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":    60,
                               "AlterExp":    {
                                   "LinearAE":    [{
                                           "TimeValue":    0.02,
                                           "GainValue":    1,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    1,
                                           "DcgMode":    0
                                       }, {
                                           "TimeValue":    0.02,
                                           "GainValue":    6,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    29,
                                           "DcgMode":    0
                                       }],
                                   "LinearAE_len":    2,
                                   "HdrAE":    [{
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [1, 1, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    1,
                                           "DcgMode":    [0, 0, 0]
                                       }, {
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [6, 6, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    29,
                                           "DcgMode":    [0, 0, 0]
                                       }],
                                   "HdrAE_len":    2
                               }
                           }
                       },
                       "wb_v21":    {
                           "control":    {
                               "byPass":    0,
                               "mode":    "CALIB_WB_MODE_AUTO"
                           },
                           "manualPara":    {
                               "mode":    "CALIB_MWB_MODE_SCENE",
                               "cfg":    {
                                   "mwbGain":    [1.0132, 1, 1, 2.3179],
                                   "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":    [3],
                                   "minR_len":    1,
                                   "maxG":    [230],
                                   "maxG_len":    1,
                                   "minG":    [3],
                                   "minG_len":    1,
                                   "maxB":    [230],
                                   "maxB_len":    1,
                                   "minB":    [3],
                                   "minB_len":    1,
                                   "maxY":    [230],
                                   "maxY_len":    1,
                                   "minY":    [3],
                                   "minY_len":    1
                               },
                               "rgb2TcsPara":    {
                                   "pseudoLuminanceWeight":    [0.250045, 0.499925, 0.25003],
                                   "rotationMat":    [-0.634695, 0.772763, -0.173209, 0.772763, 0.634695, 0.479175, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.044922, 0.136719, 0.011719, 29.5625, -0.083984, 0.003906, 0.076172, 129.625, 0.050781, -0.0625, 0.046875, 113.375, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [244, 249, 228, 211]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-1096, -985, 140, 65]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-40, 158, 121, 16]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-235, -40, 237, 80]
                                   }, {
                                       "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":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }],
                                           "ratioSet_len":    3
                                       }, {
                                           "LvValue":    8192,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [0, 0, 0.2, 0.5, 1, 1, 1, 0.5, 0]
                                               }],
                                           "ratioSet_len":    3
                                       }],
                                   "wpDiffWeightLvSet_len":    2
                               },
                               "wpDiffBlkWeiEnable":    0,
                               "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.0132, 1, 1, 2.3179],
                                       "uvRegion":    {
                                           "u":    [124.5, 55.5, 56, 125],
                                           "v":    [128, 135, 113, 127]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.2378, -0.9008, 0.0655, -0.0388],
                                           "big":    [-1.2397, -0.9008, 0.0756, -0.068]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [45, 109, 237, 365, 621, 877],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 134, 113.312, 187.375, 97.875, 114.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.48, 1, 1, 1.5416],
                                       "defaultDayGainHigh":    [1.682, 1, 1, 1.3443],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.3391, 1, 1, 1.9955],
                                       "uvRegion":    {
                                           "u":    [59.5, 71.5, 125.5, 125],
                                           "v":    [93.5, 70, 126, 127]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.6839, -0.4566, 0.0105, -0.1325],
                                           "big":    [-0.6839, -0.4476, 0.0251, -0.1625]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [46, 110, 174, 302, 558, 814],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 131.812, 114.062, 190.188, 115.125, 109.312],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.48, 1, 1, 1.5416],
                                       "defaultDayGainHigh":    [1.682, 1, 1, 1.3443],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.48, 1, 1, 1.5416],
                                       "uvRegion":    {
                                           "u":    [71.5, 100, 126.5, 125.5],
                                           "v":    [70.5, 52, 125, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.4469, -0.1324, 0.0688, -0.0503],
                                           "big":    [-0.4469, -0.1324, 0.0801, -0.0803]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [20, 52, 116, 244, 372, 500],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 129.688, 113.812, 191, 131.438, 112.562],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.48, 1, 1, 1.5416],
                                       "defaultDayGainHigh":    [1.682, 1, 1, 1.3443],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.682, 1, 1, 1.3443],
                                       "uvRegion":    {
                                           "u":    [96, 118, 128.5, 126.5],
                                           "v":    [51.5, 47, 124.5, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.1324, 0.0694, 0.0802, -0.0798],
                                           "big":    [-0.1324, 0.0694, 0.1102, -0.1098]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [16, 32, 96, 224, 352, 480],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 128.375, 113.562, 190.375, 143.812, 112.312],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.48, 1, 1, 1.5416],
                                       "defaultDayGainHigh":    [1.682, 1, 1, 1.3443],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.7823, 1, 1, 1.2535],
                                       "uvRegion":    {
                                           "u":    [132.5, 128.5, 107, 129.5],
                                           "v":    [121, 125, 50, 43.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0694, 0.234, 0.061, -0.0991],
                                           "big":    [0.0694, 0.255, 0.0924, -0.1291]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [6, 38, 70, 198, 326, 582],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 127.625, 113.625, 189.562, 150.375, 115.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.48, 1, 1, 1.5416],
                                       "defaultDayGainHigh":    [1.682, 1, 1, 1.3443],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.8564, 1, 1, 2.745],
                                       "uvRegion":    {
                                           "u":    [124.5, 57.5, 55.5, 124.5],
                                           "v":    [129.5, 150.5, 135, 128]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.5807, -1.2397, 0.0386, -0.0691],
                                           "big":    [-1.5823, -1.2362, 0.0464, -0.0826]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [63, 127, 255, 511, 767, 1279],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 135.875, 113.062, 183.625, 85.0625, 118.938],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.48, 1, 1, 1.5416],
                                       "defaultDayGainHigh":    [1.682, 1, 1, 1.3443],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.1894, 1, 1, 1.9754],
                                       "uvRegion":    {
                                           "u":    [125, 56, 61, 125.5],
                                           "v":    [127.5, 112.5, 85.5, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.8982, -0.6839, 0.0958, -0.0515],
                                           "big":    [-0.8982, -0.6839, 0.107, -0.0815]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [52, 84, 212, 340, 468, 724],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 132.625, 113.5, 189.562, 109.875, 113.375],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.48, 1, 1, 1.5416],
                                       "defaultDayGainHigh":    [1.682, 1, 1, 1.3443],
                                       "xyType2Enable":    1
                                   }],
                               "lightSources_len":    7
                           },
                           "autoExtPara":    {
                               "lightSourceForFirstFrame":    "D50",
                               "tolerance":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "toleranceValue":    [0, 0, 0, 0],
                                   "toleranceValue_len":    4
                               },
                               "runInterval":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "intervalValue":    [0, 0, 0, 0],
                                   "intervalValue_len":    4
                               },
                               "dampFactor":    {
                                   "dFStep":    0.05,
                                   "dFMin":    0.7,
                                   "dFMax":    0.9,
                                   "lvIIRsize":    4,
                                   "lvVarTh":    0.04
                               },
                               "wbGainAdjust":    {
                                   "enable":    0,
                                   "lutAll":    [{
                                           "lumaValue":    128,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    8192,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    65536,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }],
                                   "lutAll_len":    3
                               },
                               "wbGainDaylightClip":    {
                                   "enable":    0,
                                   "outdoor_cct_min":    5000
                               },
                               "wbGainClip":    {
                                   "enable":    0,
                                   "cct":    [1000, 2856, 4100, 6500, 7500],
                                   "cct_len":    5,
                                   "cri_bound_up":    [0.091, 0.091, 0.18, 0.12, 0.12],
                                   "cri_bound_up_len":    5,
                                   "cri_bound_low":    [0.07, 0.07, 0.16, 0.16, 0.16],
                                   "cri_bound_low_len":    5
                               },
                               "division":    {
                                   "lumaValThLow":    110,
                                   "lumaValThLow2":    200,
                                   "lumaValThHigh":    65536,
                                   "lumaValThHigh2":    65600,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "low":    [150],
                                       "low_len":    1,
                                       "high":    [216],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [1.48, 1, 1, 1.5416],
                               "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.0031,
                                   "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":    20.9445,
                                           "meanH":    32.3829
                                       }, {
                                           "index":    13,
                                           "meanC":    18.3203,
                                           "meanH":    -76.7368
                                       }, {
                                           "index":    5,
                                           "meanC":    8.64997,
                                           "meanH":    -69.0522
                                       }, {
                                           "index":    10,
                                           "meanC":    8.88309,
                                           "meanH":    -41.943
                                       }, {
                                           "index":    14,
                                           "meanC":    14.0655,
                                           "meanH":    148.716
                                       }, {
                                           "index":    16,
                                           "meanC":    23.8057,
                                           "meanH":    89.6809
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.01318,
                                           "BGain":    2.31788
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.1894,
                                           "BGain":    1.97535
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.48001,
                                           "BGain":    1.5416
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8242, -0.5662, -2.1476],
                               "lineRgProjCCT":    [1, -0.0002, 0.489],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [1.682, 1, 1, 1.3443],
                                   "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, 6, 11, 17, 22, 28, 33, 39, 44, 55, 66, 77, 88, 109, 130, 150, 170, 210, 248, 286, 323, 393, 460, 525, 586, 702, 809, 909, 1002, 1172, 1325, 1462, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 4095]
                           }
                       },
                       "ablc_calib":    {
                           "BlcTuningPara":    {
                               "enable":    1,
                               "BLC_Data":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "R_Channel":    [256.625, 256, 255.75, 255.25, 254.562, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [256.688, 256.062, 255.938, 256.125, 255.812, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [256.875, 255.938, 256.188, 255.562, 255.688, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [256.438, 256.062, 256.188, 255.625, 255.5, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "B_Channel_len":    13
                               }
                           }
                       },
                       "adegamma_calib":    {
                           "DegammaTuningPara":    {
                               "degamma_en":    0,
                               "X_axis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_R":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_G":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_B":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                           }
                       },
                       "agic_calib_v21":    {
                           "GicTuningPara":    {
                               "enable":    0,
                               "gr_ration":    0,
                               "GicData":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "ISO_len":    9,
                                   "min_busy_thre":    [40, 40, 40, 40, 40, 40, 40, 40, 40],
                                   "min_busy_thre_len":    9,
                                   "min_grad_thr1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr1_len":    9,
                                   "min_grad_thr2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr2_len":    9,
                                   "k_grad1":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_len":    9,
                                   "k_grad2":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_len":    9,
                                   "gb_thre":    [32, 32, 32, 32, 32, 32, 32, 32, 32],
                                   "gb_thre_len":    9,
                                   "maxCorV":    [10, 10, 10, 10, 10, 10, 10, 10, 10],
                                   "maxCorV_len":    9,
                                   "maxCorVboth":    [20, 20, 20, 20, 20, 20, 20, 20, 20],
                                   "maxCorVboth_len":    9,
                                   "dark_thre":    [120, 120, 120, 120, 120, 120, 120, 120, 120],
                                   "dark_thre_len":    9,
                                   "dark_threHi":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                   "dark_threHi_len":    9,
                                   "k_grad1_dark":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_dark_len":    9,
                                   "k_grad2_dark":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_dark_len":    9,
                                   "min_grad_thr_dark1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr_dark1_len":    9,
                                   "min_grad_thr_dark2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr_dark2_len":    9,
                                   "noiseCurve_0":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_0_len":    9,
                                   "noiseCurve_1":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_1_len":    9,
                                   "NoiseScale":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseScale_len":    9,
                                   "NoiseBase":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseBase_len":    9,
                                   "globalStrength":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "globalStrength_len":    9,
                                   "diff_clip":    [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
                                   "diff_clip_len":    9
                               }
                           }
                       },
                       "adehaze_calib_v21":    {
                           "DehazeTuningPara":    {
                               "Enable":    1,
                               "cfg_alpha":    0,
                               "ByPassThr":    0,
                               "dehaze_setting":    {
                                   "en":    0,
                                   "air_lc_en":    1,
                                   "stab_fnum":    8,
                                   "sigma":    6,
                                   "wt_sigma":    8,
                                   "air_sigma":    120,
                                   "tmax_sigma":    0.01,
                                   "pre_wet":    0.01,
                                   "DehazeData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "dc_min_th":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "dc_min_th_len":    9,
                                       "dc_max_th":    [192, 192, 192, 192, 192, 192, 192, 192, 192],
                                       "dc_max_th_len":    9,
                                       "yhist_th":    [249, 249, 249, 249, 249, 249, 249, 249, 249],
                                       "yhist_th_len":    9,
                                       "yblk_th":    [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
                                       "yblk_th_len":    9,
                                       "dark_th":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "dark_th_len":    9,
                                       "bright_min":    [180, 180, 180, 180, 180, 180, 180, 180, 180],
                                       "bright_min_len":    9,
                                       "bright_max":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                       "bright_max_len":    9,
                                       "wt_max":    [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
                                       "wt_max_len":    9,
                                       "air_min":    [200, 200, 200, 200, 200, 200, 200, 200, 200],
                                       "air_min_len":    9,
                                       "air_max":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "air_max_len":    9,
                                       "tmax_base":    [125, 125, 125, 125, 125, 125, 125, 125, 125],
                                       "tmax_base_len":    9,
                                       "tmax_off":    [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
                                       "tmax_off_len":    9,
                                       "tmax_max":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "tmax_max_len":    9,
                                       "cfg_wt":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "cfg_wt_len":    9,
                                       "cfg_air":    [210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "cfg_air_len":    9,
                                       "cfg_tmax":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                       "cfg_tmax_len":    9,
                                       "dc_weitcur":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "dc_weitcur_len":    9,
                                       "bf_weight":    [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
                                       "bf_weight_len":    9,
                                       "range_sigma":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "range_sigma_len":    9,
                                       "space_sigma_pre":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_pre_len":    9,
                                       "space_sigma_cur":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_cur_len":    9
                                   }
                               },
                               "enhance_setting":    {
                                   "en":    1,
                                   "enhance_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
                                   "EnhanceData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "enhance_value":    [1.95, 1.9, 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":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set2":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set3":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                   },
                                   "set1":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [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":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [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":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [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":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_thr":    [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
                                           "rb_line_mad_fac":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_mad_fac":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [8, 8, 8, 8, 8, 8, 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":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       }
                                   },
                                   "set3":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "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":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   }
                               },
                               "Dpcc_pdaf":    {
                                   "en":    0,
                                   "point_en":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "offsetx":    0,
                                   "offsety":    0,
                                   "wrapx":    0,
                                   "wrapy":    0,
                                   "wrapx_num":    0,
                                   "wrapy_num":    0,
                                   "point_x":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "point_y":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "forward_med":    0
                               },
                               "Sensor_dpcc":    {
                                   "sensor_dpcc_auto_en":    0,
                                   "max_level":    20,
                                   "SensorDpcc_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "ISO_len":    13,
                                       "level_single":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_single_len":    13,
                                       "level_multiple":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_multiple_len":    13
                                   }
                               }
                           }
                       },
                       "amerge_calib":    {
                           "MergeTuningPara":    {
                               "OECurve":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "Smooth_len":    13,
                                   "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                   "Offset_len":    13
                               },
                               "MDCurve":    {
                                   "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "MoveCoef_len":    13,
                                   "LM_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "LM_smooth_len":    13,
                                   "LM_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "LM_offset_len":    13,
                                   "MS_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "MS_smooth_len":    13,
                                   "MS_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "MS_offset_len":    13
                               },
                               "ByPassThr":    0,
                               "OECurve_damp":    0.3,
                               "MDCurveLM_damp":    0.3,
                               "MDCurveMS_damp":    0.3
                           }
                       },
                       "adrc_calib":    {
                           "DrcTuningPara":    {
                               "Enable":    0,
                               "DrcGain":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "DrcGain":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "DrcGain_len":    13,
                                   "Alpha":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                   "Alpha_len":    13,
                                   "Clip":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "Clip_len":    13
                               },
                               "HiLight":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Strength":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Strength_len":    13
                               },
                               "LocalTMOSetting":    {
                                   "LocalTMOData":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "LocalWeit":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalWeit_len":    13,
                                       "GlobalContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "GlobalContrast_len":    13,
                                       "LoLitContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "LoLitContrast_len":    13
                                   },
                                   "curPixWeit":    0.376471,
                                   "preFrameWeit":    1,
                                   "Range_force_sgm":    0,
                                   "Range_sgm_cur":    0.125015,
                                   "Range_sgm_pre":    0.125015,
                                   "Space_sgm_cur":    4068,
                                   "Space_sgm_pre":    3968
                               },
                               "CompressSetting":    {
                                   "Mode":    "COMPRESS_AUTO",
                                   "Manual_curve":    [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
                               },
                               "Scale_y":    [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
                               "ByPassThr":    0,
                               "Edge_Weit":    0.0627451,
                               "OutPutLongFrame":    0,
                               "IIR_frame":    16,
                               "Tolerance":    0,
                               "damp":    0.9
                           }
                       },
                       "cpsl":    {
                           "param":    {
                               "enable":    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":    "2592x1944",
                                       "lsc_sect_size_x":    [162, 162, 162, 162, 162, 162, 162, 162],
                                       "lsc_sect_size_y":    [121, 122, 121, 122, 121, 122, 121, 122]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [0.973, 2.4231],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.3057, 2.1201],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.631, 1.5426],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [1.6708, 1.3455],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [1.8586, 1.2432],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.825, 2.8223],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.1489, 2.0836],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    2,
                                       "name":    "GRAY",
                                       "wbGain":    [1, 1],
                                       "tableUsed":    [{
                                               "name":    "GRAY_0"
                                           }],
                                       "tableUsed_len":    1,
                                       "gains":    [1, 10, 31, 64],
                                       "gains_len":    4,
                                       "vig":    [90, 60, 25, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "2592x1944_A_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5204, 4417, 4038, 3507, 3068, 2802, 2578, 2445, 2515, 2525, 2691, 2895, 3264, 3813, 4293, 4616, 5963, 4687, 4092, 3548, 3038, 2715, 2416, 2191, 2087, 2087, 2123, 2298, 2494, 2802, 3282, 3813, 4293, 5074, 4449, 3813, 3164, 2691, 2360, 2073, 1899, 1794, 1773, 1810, 1966, 2191, 2494, 2922, 3448, 4065, 4581, 4385, 3487, 2895, 2425, 2087, 1810, 1632, 1538, 1538, 1565, 1699, 1911, 2215, 2600, 3147, 3743, 4385, 3986, 3213, 2645, 2215, 1848, 1606, 1430, 1360, 1336, 1379, 1504, 1728, 2005, 2369, 2895, 3548, 4205, 3813, 3053, 2464, 2038, 1709, 1464, 1291, 1220, 1203, 1244, 1375, 1561, 1842, 2207, 2668, 3282, 4065, 3632, 2936, 2351, 1935, 1606, 1348, 1191, 1123, 1105, 1134, 1252, 1443, 1695, 2073, 2557, 3100, 3986, 3487, 2815, 2273, 1848, 1522, 1281, 1147, 1061, 1054, 1086, 1191, 1372, 1610, 1960, 2474, 3053, 3766, 3569, 2752, 2223, 1799, 1485, 1257, 1123, 1043, 1026, 1059, 1155, 1345, 1593, 1935, 2397, 3023, 3960, 3632, 2802, 2281, 1804, 1504, 1270, 1115, 1049, 1024, 1065, 1166, 1342, 1589, 1979, 2416, 2994, 3836, 3720, 2908, 2273, 1894, 1549, 1297, 1166, 1080, 1059, 1109, 1212, 1369, 1663, 2025, 2454, 3084, 3935, 3766, 3008, 2425, 1979, 1636, 1394, 1237, 1153, 1134, 1168, 1286, 1471, 1728, 2123, 2611, 3196, 3986, 3836, 3180, 2578, 2116, 1789, 1515, 1357, 1262, 1239, 1294, 1417, 1593, 1888, 2273, 2727, 3372, 4120, 4092, 3372, 2739, 2298, 1948, 1676, 1518, 1420, 1407, 1464, 1561, 1768, 2059, 2474, 2950, 3589, 4263, 4385, 3675, 2994, 2546, 2168, 1899, 1723, 1627, 1623, 1672, 1783, 2005, 2307, 2727, 3213, 3860, 4548, 4514, 3960, 3410, 2854, 2484, 2207, 1986, 1911, 1876, 1935, 2052, 2315, 2600, 3068, 3569, 4176, 4616, 4951, 4417, 3885, 3336, 2841, 2600, 2416, 2223, 2191, 2289, 2454, 2727, 3038, 3589, 4038, 4481, 5483]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3766, 3138, 2896, 2596, 2335, 2136, 2042, 1943, 1930, 1994, 2042, 2206, 2409, 2689, 2953, 3292, 4100, 3292, 2997, 2642, 2344, 2128, 1949, 1847, 1761, 1751, 1798, 1876, 1988, 2190, 2459, 2751, 3058, 3483, 3154, 2763, 2400, 2091, 1918, 1756, 1636, 1572, 1572, 1623, 1692, 1825, 1981, 2214, 2542, 2924, 3292, 2953, 2608, 2206, 1949, 1736, 1576, 1469, 1434, 1404, 1434, 1540, 1659, 1836, 2042, 2344, 2726, 3171, 2828, 2419, 2070, 1831, 1632, 1455, 1335, 1278, 1276, 1312, 1381, 1505, 1687, 1894, 2206, 2574, 2924, 2677, 2282, 1968, 1716, 1513, 1362, 1247, 1190, 1160, 1190, 1281, 1394, 1581, 1809, 2028, 2409, 2924, 2654, 2214, 1865, 1654, 1430, 1295, 1167, 1113, 1099, 1119, 1195, 1335, 1502, 1706, 1981, 2353, 2789, 2574, 2151, 1814, 1585, 1381, 1236, 1134, 1066, 1053, 1081, 1147, 1284, 1444, 1641, 1930, 2239, 2689, 2563, 2113, 1814, 1564, 1372, 1224, 1097, 1058, 1024, 1054, 1132, 1244, 1420, 1654, 1900, 2214, 2689, 2596, 2190, 1814, 1589, 1381, 1214, 1113, 1060, 1042, 1062, 1136, 1265, 1427, 1636, 1918, 2239, 2738, 2654, 2206, 1888, 1606, 1424, 1254, 1145, 1069, 1066, 1085, 1174, 1298, 1455, 1673, 1937, 2273, 2689, 2677, 2282, 1949, 1678, 1491, 1321, 1195, 1125, 1128, 1149, 1219, 1344, 1509, 1731, 2001, 2353, 2842, 2776, 2371, 2008, 1756, 1556, 1400, 1278, 1216, 1204, 1216, 1303, 1430, 1606, 1819, 2099, 2449, 2910, 2939, 2552, 2143, 1859, 1678, 1509, 1407, 1344, 1315, 1341, 1420, 1556, 1721, 1955, 2231, 2574, 2953, 3154, 2738, 2273, 2021, 1819, 1664, 1536, 1469, 1455, 1491, 1568, 1678, 1882, 2091, 2409, 2776, 3122, 3274, 2896, 2520, 2214, 2014, 1825, 1716, 1645, 1636, 1664, 1751, 1882, 2077, 2317, 2631, 2968, 3385, 3524, 3257, 2896, 2499, 2273, 2121, 1975, 1865, 1870, 1882, 1988, 2128, 2317, 2585, 2910, 3239, 4018]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3686, 3107, 2772, 2482, 2255, 2052, 1951, 1871, 1883, 1926, 1964, 2149, 2363, 2649, 2908, 3242, 4151, 3334, 2967, 2591, 2255, 2052, 1877, 1770, 1719, 1694, 1734, 1819, 1945, 2126, 2402, 2709, 3058, 3471, 3173, 2759, 2373, 2067, 1877, 1694, 1611, 1536, 1532, 1536, 1638, 1770, 1945, 2189, 2482, 2866, 3278, 3027, 2557, 2189, 1932, 1719, 1565, 1443, 1379, 1363, 1409, 1471, 1620, 1808, 2038, 2308, 2721, 3074, 2908, 2411, 2074, 1781, 1611, 1429, 1333, 1248, 1238, 1278, 1360, 1497, 1661, 1901, 2197, 2579, 2923, 2747, 2326, 1964, 1694, 1505, 1339, 1223, 1158, 1145, 1174, 1262, 1382, 1573, 1786, 2089, 2431, 2880, 2672, 2247, 1871, 1616, 1429, 1264, 1149, 1098, 1076, 1106, 1186, 1321, 1513, 1734, 1997, 2335, 2759, 2591, 2197, 1853, 1598, 1385, 1228, 1102, 1055, 1035, 1059, 1142, 1278, 1436, 1671, 1951, 2299, 2672, 2557, 2165, 1830, 1569, 1369, 1215, 1086, 1031, 1024, 1049, 1125, 1240, 1405, 1647, 1938, 2247, 2747, 2672, 2205, 1836, 1573, 1369, 1200, 1096, 1046, 1026, 1057, 1121, 1251, 1422, 1647, 1913, 2264, 2734, 2660, 2230, 1901, 1607, 1389, 1243, 1132, 1072, 1051, 1070, 1163, 1286, 1457, 1690, 1945, 2326, 2734, 2852, 2335, 1951, 1680, 1486, 1289, 1184, 1125, 1117, 1121, 1215, 1333, 1524, 1724, 2038, 2382, 2825, 2880, 2421, 2038, 1755, 1561, 1395, 1278, 1198, 1174, 1215, 1295, 1436, 1598, 1836, 2126, 2493, 2880, 3074, 2568, 2165, 1871, 1666, 1494, 1376, 1309, 1303, 1318, 1405, 1561, 1714, 1951, 2255, 2637, 2982, 3173, 2799, 2326, 2067, 1792, 1620, 1505, 1443, 1446, 1461, 1544, 1694, 1865, 2103, 2421, 2852, 3156, 3315, 2952, 2579, 2197, 1964, 1786, 1675, 1607, 1607, 1625, 1699, 1848, 2038, 2290, 2649, 2952, 3353, 3554, 3173, 2937, 2461, 2222, 2045, 1877, 1836, 1830, 1883, 1938, 2096, 2308, 2602, 2997, 3242, 4010]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3264, 2725, 2610, 2254, 2137, 1968, 1922, 1809, 1823, 1809, 1892, 1999, 2175, 2480, 2667, 2884, 3817, 2988, 2610, 2362, 2083, 1907, 1796, 1698, 1698, 1652, 1642, 1733, 1823, 1968, 2194, 2431, 2756, 3140, 2787, 2431, 2119, 1922, 1758, 1664, 1569, 1521, 1467, 1530, 1599, 1686, 1809, 2032, 2254, 2557, 2884, 2851, 2362, 1968, 1783, 1652, 1493, 1408, 1354, 1369, 1377, 1441, 1569, 1710, 1892, 2119, 2480, 2756, 2531, 2156, 1850, 1686, 1530, 1408, 1291, 1264, 1233, 1258, 1354, 1458, 1631, 1771, 2032, 2296, 2610, 2455, 2066, 1836, 1620, 1441, 1332, 1209, 1163, 1147, 1142, 1252, 1362, 1549, 1733, 1922, 2234, 2531, 2455, 2016, 1783, 1559, 1377, 1252, 1142, 1082, 1064, 1116, 1186, 1325, 1450, 1664, 1836, 2156, 2455, 2339, 1983, 1758, 1539, 1347, 1203, 1106, 1046, 1050, 1050, 1126, 1252, 1400, 1620, 1823, 2119, 2505, 2317, 1922, 1771, 1484, 1340, 1197, 1101, 1037, 1028, 1033, 1097, 1233, 1433, 1559, 1796, 2101, 2431, 2317, 1983, 1771, 1511, 1340, 1175, 1068, 1041, 1024, 1050, 1126, 1233, 1392, 1620, 1771, 2101, 2455, 2480, 2032, 1771, 1559, 1385, 1215, 1121, 1059, 1041, 1073, 1163, 1271, 1450, 1599, 1836, 2137, 2431, 2505, 2119, 1850, 1620, 1416, 1284, 1203, 1121, 1087, 1132, 1197, 1340, 1475, 1664, 1878, 2194, 2557, 2557, 2156, 1864, 1686, 1511, 1347, 1227, 1186, 1169, 1203, 1304, 1408, 1549, 1746, 1968, 2254, 2583, 2667, 2254, 1968, 1758, 1589, 1458, 1347, 1311, 1284, 1318, 1408, 1484, 1652, 1823, 2083, 2384, 2756, 2818, 2431, 2101, 1836, 1710, 1589, 1502, 1408, 1416, 1467, 1511, 1610, 1771, 1937, 2254, 2557, 2756, 2918, 2638, 2296, 1999, 1850, 1698, 1652, 1549, 1579, 1559, 1652, 1783, 1907, 2119, 2407, 2695, 3025, 3140, 2756, 2455, 2296, 2049, 1922, 1771, 1771, 1783, 1746, 1864, 1952, 2083, 2362, 2725, 2851, 3494]
                                       }
                                   }, {
                                       "name":    "2592x1944_A_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3950, 3558, 3385, 3047, 2742, 2555, 2385, 2281, 2347, 2352, 2484, 2635, 2907, 3296, 3585, 3706, 4481, 3689, 3388, 3062, 2713, 2487, 2257, 2075, 1991, 1994, 2024, 2172, 2326, 2562, 2918, 3276, 3543, 3971, 3589, 3231, 2796, 2458, 2209, 1976, 1832, 1742, 1725, 1757, 1894, 2083, 2327, 2656, 3032, 3430, 3688, 3600, 3016, 2607, 2255, 1986, 1752, 1597, 1513, 1515, 1539, 1660, 1846, 2102, 2408, 2820, 3223, 3600, 3336, 2826, 2419, 2088, 1783, 1572, 1413, 1349, 1327, 1368, 1484, 1687, 1927, 2226, 2635, 3102, 3507, 3232, 2717, 2280, 1942, 1663, 1444, 1283, 1216, 1200, 1240, 1365, 1537, 1787, 2095, 2458, 2908, 3432, 3110, 2635, 2193, 1857, 1572, 1336, 1188, 1122, 1104, 1133, 1247, 1428, 1656, 1983, 2374, 2773, 3393, 3006, 2542, 2130, 1781, 1496, 1273, 1145, 1061, 1054, 1086, 1189, 1361, 1579, 1884, 2308, 2744, 3230, 3076, 2491, 2088, 1738, 1461, 1250, 1122, 1043, 1026, 1059, 1153, 1336, 1564, 1863, 2242, 2721, 3391, 3122, 2531, 2137, 1741, 1479, 1262, 1114, 1049, 1024, 1065, 1164, 1332, 1559, 1902, 2257, 2694, 3286, 3180, 2611, 2124, 1819, 1518, 1287, 1163, 1079, 1059, 1108, 1208, 1356, 1626, 1939, 2283, 2760, 3352, 3195, 2680, 2246, 1889, 1595, 1377, 1231, 1150, 1132, 1165, 1278, 1451, 1681, 2019, 2409, 2837, 3369, 3219, 2799, 2362, 2000, 1728, 1487, 1343, 1254, 1233, 1285, 1401, 1560, 1820, 2140, 2490, 2957, 3441, 3375, 2923, 2475, 2143, 1861, 1628, 1489, 1401, 1390, 1443, 1530, 1713, 1961, 2298, 2654, 3098, 3506, 3541, 3122, 2656, 2333, 2038, 1818, 1669, 1586, 1584, 1628, 1725, 1915, 2162, 2489, 2837, 3268, 3663, 3564, 3287, 2950, 2559, 2287, 2072, 1891, 1831, 1802, 1853, 1950, 2168, 2387, 2739, 3079, 3453, 3638, 3773, 3558, 3266, 2907, 2551, 2381, 2243, 2084, 2060, 2143, 2276, 2490, 2717, 3114, 3385, 3605, 4145]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2943, 2603, 2491, 2305, 2126, 1981, 1915, 1837, 1828, 1882, 1915, 2041, 2188, 2380, 2535, 2718, 3177, 2674, 2544, 2330, 2131, 1979, 1843, 1765, 1695, 1688, 1728, 1791, 1878, 2033, 2228, 2418, 2591, 2813, 2619, 2400, 2164, 1942, 1817, 1688, 1589, 1535, 1537, 1582, 1641, 1751, 1873, 2048, 2281, 2527, 2722, 2502, 2305, 2024, 1836, 1669, 1536, 1443, 1414, 1387, 1414, 1510, 1612, 1759, 1918, 2141, 2401, 2669, 2432, 2172, 1924, 1745, 1584, 1430, 1322, 1270, 1269, 1303, 1366, 1477, 1634, 1801, 2041, 2300, 2507, 2333, 2074, 1848, 1650, 1480, 1347, 1240, 1187, 1158, 1187, 1273, 1377, 1544, 1735, 1900, 2180, 2528, 2328, 2027, 1765, 1600, 1406, 1285, 1164, 1112, 1098, 1118, 1192, 1324, 1474, 1647, 1867, 2144, 2436, 2271, 1979, 1724, 1540, 1362, 1229, 1132, 1066, 1053, 1081, 1145, 1276, 1422, 1591, 1827, 2054, 2364, 2265, 1949, 1725, 1521, 1354, 1218, 1096, 1058, 1024, 1054, 1131, 1238, 1400, 1604, 1801, 2034, 2366, 2289, 2012, 1724, 1543, 1362, 1208, 1112, 1060, 1042, 1062, 1134, 1258, 1406, 1586, 1816, 2054, 2403, 2328, 2020, 1785, 1556, 1401, 1246, 1143, 1069, 1066, 1084, 1171, 1288, 1430, 1617, 1828, 2076, 2356, 2333, 2074, 1831, 1616, 1460, 1308, 1190, 1123, 1126, 1147, 1213, 1330, 1476, 1664, 1876, 2133, 2463, 2392, 2133, 1871, 1678, 1514, 1378, 1267, 1210, 1199, 1210, 1291, 1407, 1560, 1734, 1949, 2197, 2496, 2492, 2260, 1971, 1757, 1616, 1473, 1385, 1329, 1302, 1326, 1397, 1517, 1655, 1842, 2045, 2278, 2502, 2619, 2380, 2058, 1882, 1729, 1605, 1497, 1439, 1427, 1459, 1526, 1618, 1785, 1942, 2171, 2410, 2595, 2661, 2467, 2232, 2022, 1880, 1733, 1647, 1589, 1583, 1606, 1679, 1784, 1935, 2109, 2321, 2522, 2742, 2774, 2691, 2491, 2226, 2074, 1968, 1857, 1768, 1775, 1783, 1868, 1974, 2111, 2296, 2502, 2678, 3120]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2887, 2579, 2394, 2212, 2059, 1909, 1836, 1773, 1786, 1822, 1847, 1992, 2149, 2348, 2500, 2680, 3213, 2705, 2521, 2289, 2057, 1913, 1780, 1696, 1656, 1636, 1670, 1740, 1840, 1977, 2180, 2384, 2591, 2805, 2633, 2397, 2141, 1921, 1780, 1632, 1566, 1501, 1499, 1501, 1591, 1701, 1841, 2026, 2232, 2481, 2712, 2559, 2264, 2010, 1822, 1653, 1525, 1419, 1362, 1348, 1390, 1445, 1576, 1734, 1915, 2110, 2396, 2595, 2495, 2166, 1928, 1700, 1564, 1406, 1320, 1241, 1232, 1270, 1346, 1470, 1611, 1808, 2034, 2304, 2506, 2388, 2111, 1844, 1631, 1473, 1325, 1217, 1155, 1143, 1171, 1255, 1366, 1536, 1714, 1953, 2198, 2494, 2342, 2055, 1770, 1565, 1405, 1255, 1146, 1097, 1076, 1105, 1183, 1310, 1484, 1673, 1881, 2129, 2412, 2285, 2018, 1758, 1552, 1366, 1222, 1101, 1055, 1035, 1059, 1140, 1270, 1414, 1619, 1845, 2105, 2350, 2260, 1993, 1739, 1526, 1351, 1209, 1085, 1031, 1024, 1049, 1124, 1234, 1385, 1598, 1835, 2063, 2413, 2350, 2025, 1743, 1529, 1351, 1195, 1095, 1046, 1026, 1057, 1120, 1244, 1401, 1597, 1811, 2075, 2400, 2332, 2040, 1796, 1557, 1368, 1235, 1130, 1071, 1051, 1070, 1160, 1276, 1432, 1633, 1835, 2121, 2392, 2471, 2118, 1833, 1618, 1455, 1277, 1179, 1123, 1115, 1119, 1209, 1319, 1490, 1658, 1909, 2157, 2450, 2473, 2174, 1897, 1677, 1518, 1374, 1267, 1192, 1170, 1209, 1284, 1412, 1553, 1749, 1973, 2233, 2473, 2595, 2273, 1989, 1768, 1605, 1460, 1356, 1295, 1290, 1304, 1383, 1522, 1649, 1838, 2065, 2329, 2525, 2633, 2428, 2102, 1921, 1705, 1565, 1468, 1415, 1419, 1431, 1504, 1632, 1770, 1952, 2181, 2470, 2621, 2691, 2510, 2279, 2008, 1837, 1699, 1610, 1554, 1556, 1571, 1632, 1754, 1901, 2086, 2336, 2510, 2719, 2795, 2629, 2523, 2195, 2031, 1903, 1771, 1742, 1739, 1784, 1824, 1947, 2103, 2309, 2570, 2680, 3114]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2592, 2294, 2267, 2026, 1959, 1837, 1810, 1718, 1733, 1718, 1784, 1863, 1991, 2210, 2311, 2413, 2979, 2453, 2246, 2104, 1912, 1788, 1708, 1631, 1637, 1597, 1586, 1663, 1732, 1841, 2005, 2160, 2359, 2564, 2344, 2137, 1931, 1796, 1675, 1605, 1527, 1487, 1438, 1496, 1555, 1625, 1720, 1891, 2043, 2237, 2417, 2424, 2106, 1823, 1691, 1593, 1459, 1386, 1338, 1353, 1360, 1417, 1529, 1645, 1786, 1950, 2202, 2351, 2200, 1956, 1735, 1615, 1490, 1386, 1280, 1256, 1227, 1250, 1340, 1433, 1583, 1691, 1892, 2071, 2262, 2157, 1894, 1732, 1564, 1413, 1318, 1204, 1160, 1145, 1140, 1245, 1347, 1514, 1666, 1807, 2034, 2217, 2168, 1860, 1692, 1513, 1356, 1244, 1140, 1081, 1064, 1115, 1183, 1314, 1425, 1609, 1739, 1978, 2168, 2082, 1837, 1674, 1497, 1330, 1197, 1105, 1046, 1050, 1050, 1124, 1245, 1380, 1572, 1732, 1952, 2215, 2066, 1787, 1687, 1448, 1324, 1192, 1100, 1037, 1028, 1033, 1096, 1227, 1412, 1517, 1709, 1939, 2158, 2064, 1837, 1686, 1472, 1323, 1170, 1067, 1041, 1024, 1050, 1124, 1227, 1372, 1572, 1686, 1937, 2175, 2188, 1873, 1682, 1513, 1364, 1208, 1119, 1059, 1041, 1072, 1160, 1262, 1425, 1549, 1739, 1962, 2149, 2197, 1938, 1745, 1564, 1390, 1272, 1198, 1119, 1086, 1130, 1192, 1326, 1445, 1603, 1769, 2000, 2238, 2221, 1956, 1747, 1615, 1472, 1328, 1219, 1181, 1165, 1197, 1292, 1386, 1507, 1669, 1837, 2037, 2241, 2283, 2019, 1823, 1669, 1536, 1426, 1328, 1297, 1272, 1304, 1386, 1450, 1593, 1726, 1920, 2124, 2351, 2367, 2137, 1916, 1722, 1632, 1537, 1465, 1382, 1391, 1437, 1474, 1556, 1686, 1809, 2043, 2237, 2321, 2402, 2268, 2051, 1842, 1739, 1621, 1590, 1502, 1531, 1511, 1590, 1696, 1788, 1943, 2141, 2312, 2480, 2505, 2317, 2145, 2060, 1885, 1797, 1678, 1685, 1698, 1663, 1759, 1823, 1914, 2114, 2357, 2388, 2753]
                                       }
                                   }, {
                                       "name":    "2592x1944_CWF_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4202, 3602, 3131, 2881, 2520, 2355, 2163, 2100, 2082, 2082, 2201, 2435, 2710, 3074, 3407, 3735, 4627, 3708, 3211, 2801, 2423, 2230, 2008, 1887, 1826, 1787, 1853, 1953, 2091, 2323, 2653, 3037, 3430, 3970, 3551, 2983, 2585, 2210, 1976, 1800, 1652, 1610, 1580, 1620, 1720, 1880, 2091, 2366, 2770, 3211, 3654, 3477, 2770, 2344, 2040, 1800, 1595, 1473, 1423, 1407, 1452, 1541, 1714, 1916, 2172, 2546, 3019, 3407, 3131, 2585, 2172, 1866, 1647, 1461, 1340, 1285, 1266, 1302, 1400, 1550, 1744, 2008, 2333, 2785, 3295, 2965, 2447, 2091, 1756, 1522, 1358, 1235, 1180, 1161, 1205, 1276, 1436, 1647, 1895, 2220, 2667, 3295, 2914, 2389, 1946, 1685, 1452, 1276, 1166, 1107, 1098, 1122, 1220, 1329, 1532, 1806, 2145, 2533, 3171, 2832, 2301, 1946, 1626, 1392, 1220, 1115, 1077, 1056, 1077, 1161, 1282, 1473, 1732, 2057, 2495, 3019, 2816, 2270, 1916, 1595, 1373, 1217, 1110, 1050, 1041, 1052, 1132, 1263, 1444, 1702, 2032, 2471, 3019, 2848, 2291, 1946, 1590, 1380, 1208, 1102, 1054, 1024, 1056, 1135, 1269, 1440, 1714, 2016, 2471, 2983, 2914, 2389, 1953, 1658, 1423, 1238, 1135, 1077, 1063, 1095, 1174, 1305, 1482, 1738, 2049, 2508, 2948, 3037, 2471, 2040, 1732, 1482, 1319, 1188, 1130, 1107, 1145, 1226, 1354, 1550, 1806, 2127, 2585, 3093, 3191, 2585, 2118, 1813, 1575, 1388, 1279, 1214, 1191, 1226, 1329, 1456, 1652, 1909, 2250, 2740, 3191, 3317, 2740, 2291, 1953, 1702, 1509, 1392, 1309, 1309, 1347, 1431, 1590, 1793, 2065, 2423, 2914, 3407, 3602, 3001, 2495, 2136, 1880, 1658, 1550, 1469, 1456, 1491, 1590, 1750, 1946, 2240, 2625, 3074, 3602, 3654, 3191, 2710, 2344, 2100, 1873, 1738, 1674, 1658, 1680, 1800, 1961, 2145, 2495, 2881, 3361, 3763, 3940, 3477, 3055, 2725, 2389, 2145, 2032, 1923, 1916, 1916, 2082, 2230, 2471, 2931, 3211, 3576, 4424]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3368, 2906, 2637, 2337, 2153, 1972, 1897, 1834, 1809, 1829, 1909, 2065, 2256, 2497, 2783, 3040, 3841, 3013, 2759, 2450, 2174, 1983, 1819, 1723, 1670, 1654, 1675, 1755, 1881, 2033, 2288, 2575, 2855, 3268, 2919, 2575, 2233, 1972, 1804, 1645, 1571, 1520, 1495, 1537, 1597, 1710, 1860, 2065, 2362, 2702, 3026, 2748, 2405, 2058, 1829, 1658, 1527, 1421, 1368, 1368, 1373, 1452, 1571, 1714, 1920, 2174, 2526, 2880, 2669, 2249, 1937, 1732, 1548, 1400, 1300, 1248, 1222, 1265, 1345, 1436, 1593, 1804, 2026, 2337, 2783, 2497, 2146, 1834, 1617, 1465, 1318, 1216, 1158, 1136, 1164, 1241, 1365, 1506, 1692, 1920, 2249, 2680, 2423, 2058, 1741, 1563, 1382, 1243, 1144, 1085, 1080, 1103, 1172, 1282, 1427, 1613, 1865, 2139, 2575, 2345, 2014, 1741, 1520, 1342, 1204, 1111, 1049, 1034, 1060, 1114, 1241, 1382, 1567, 1804, 2111, 2478, 2388, 2002, 1710, 1499, 1313, 1183, 1092, 1032, 1024, 1040, 1113, 1213, 1356, 1563, 1779, 2071, 2469, 2379, 2026, 1701, 1499, 1318, 1181, 1094, 1047, 1026, 1054, 1114, 1225, 1365, 1548, 1784, 2098, 2516, 2469, 2033, 1765, 1537, 1353, 1209, 1128, 1067, 1050, 1064, 1138, 1250, 1409, 1593, 1819, 2132, 2585, 2487, 2125, 1824, 1605, 1412, 1270, 1176, 1101, 1090, 1128, 1189, 1292, 1440, 1645, 1865, 2203, 2606, 2637, 2203, 1887, 1662, 1485, 1348, 1248, 1181, 1168, 1193, 1270, 1362, 1523, 1710, 1960, 2288, 2627, 2748, 2337, 1996, 1755, 1578, 1446, 1351, 1287, 1275, 1297, 1362, 1465, 1613, 1814, 2091, 2405, 2713, 2906, 2526, 2132, 1892, 1723, 1571, 1462, 1409, 1379, 1415, 1492, 1609, 1751, 1954, 2241, 2606, 2868, 3013, 2702, 2353, 2045, 1870, 1705, 1629, 1559, 1537, 1545, 1645, 1760, 1925, 2139, 2459, 2713, 3055, 3251, 2932, 2669, 2320, 2125, 1954, 1860, 1751, 1737, 1732, 1819, 1948, 2139, 2405, 2748, 3013, 3649]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3379, 2981, 2656, 2361, 2132, 1966, 1835, 1819, 1824, 1804, 1887, 2027, 2196, 2458, 2678, 3009, 3900, 3065, 2768, 2449, 2174, 1972, 1804, 1702, 1655, 1638, 1672, 1729, 1855, 2014, 2264, 2573, 2890, 3278, 3036, 2604, 2233, 1984, 1785, 1638, 1539, 1487, 1480, 1497, 1579, 1697, 1840, 2065, 2378, 2722, 3009, 2828, 2413, 2065, 1845, 1659, 1504, 1410, 1347, 1344, 1386, 1447, 1564, 1720, 1920, 2210, 2553, 2840, 2722, 2287, 1978, 1715, 1561, 1398, 1301, 1229, 1224, 1261, 1325, 1438, 1602, 1800, 2046, 2404, 2745, 2544, 2167, 1866, 1634, 1457, 1317, 1219, 1149, 1145, 1172, 1242, 1355, 1497, 1702, 1949, 2295, 2689, 2413, 2139, 1790, 1579, 1404, 1240, 1155, 1097, 1085, 1107, 1172, 1289, 1463, 1659, 1893, 2188, 2604, 2458, 2058, 1775, 1539, 1355, 1215, 1103, 1053, 1045, 1067, 1127, 1245, 1401, 1598, 1861, 2139, 2514, 2404, 2058, 1752, 1507, 1330, 1184, 1092, 1042, 1024, 1055, 1118, 1231, 1381, 1587, 1824, 2160, 2544, 2477, 2071, 1766, 1517, 1352, 1193, 1107, 1053, 1037, 1062, 1109, 1235, 1381, 1595, 1829, 2132, 2534, 2553, 2118, 1785, 1568, 1375, 1235, 1129, 1072, 1053, 1072, 1153, 1261, 1407, 1630, 1850, 2196, 2573, 2635, 2203, 1876, 1634, 1428, 1279, 1176, 1124, 1114, 1127, 1204, 1309, 1477, 1655, 1920, 2248, 2604, 2700, 2287, 1972, 1693, 1507, 1363, 1257, 1195, 1174, 1202, 1279, 1398, 1557, 1752, 1990, 2336, 2768, 2828, 2422, 2046, 1780, 1614, 1454, 1347, 1276, 1284, 1307, 1381, 1493, 1655, 1840, 2132, 2486, 2816, 2995, 2573, 2174, 1949, 1733, 1561, 1470, 1398, 1401, 1428, 1500, 1618, 1752, 2008, 2271, 2625, 2955, 3093, 2756, 2440, 2111, 1861, 1706, 1626, 1561, 1542, 1553, 1630, 1785, 1943, 2167, 2477, 2816, 3199, 3362, 3108, 2768, 2378, 2153, 1949, 1840, 1761, 1756, 1780, 1861, 1978, 2167, 2440, 2804, 3108, 3744]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3074, 2653, 2406, 2266, 2029, 1847, 1794, 1724, 1696, 1734, 1773, 1892, 2029, 2233, 2483, 2723, 3412, 2772, 2444, 2186, 1990, 1826, 1715, 1642, 1625, 1600, 1583, 1642, 1715, 1859, 2083, 2299, 2545, 2957, 2631, 2317, 2029, 1826, 1668, 1591, 1514, 1457, 1430, 1457, 1521, 1625, 1715, 1904, 2141, 2406, 2700, 2545, 2233, 1904, 1724, 1575, 1443, 1379, 1304, 1315, 1332, 1404, 1514, 1616, 1763, 2002, 2317, 2566, 2406, 2069, 1794, 1633, 1478, 1361, 1261, 1226, 1203, 1226, 1320, 1411, 1536, 1687, 1881, 2202, 2444, 2352, 1977, 1734, 1575, 1411, 1272, 1198, 1132, 1137, 1149, 1207, 1304, 1443, 1625, 1815, 2083, 2388, 2249, 1892, 1696, 1514, 1355, 1217, 1132, 1100, 1066, 1100, 1145, 1267, 1417, 1567, 1784, 2015, 2317, 2186, 1904, 1668, 1471, 1332, 1189, 1093, 1048, 1045, 1059, 1112, 1226, 1361, 1552, 1734, 1964, 2317, 2249, 1904, 1678, 1450, 1315, 1171, 1085, 1052, 1024, 1045, 1093, 1198, 1355, 1521, 1687, 1952, 2282, 2217, 1892, 1687, 1471, 1304, 1171, 1093, 1048, 1024, 1052, 1128, 1203, 1349, 1514, 1696, 1952, 2282, 2282, 1928, 1715, 1514, 1338, 1212, 1128, 1045, 1048, 1081, 1137, 1222, 1385, 1521, 1734, 1990, 2317, 2352, 2002, 1753, 1536, 1379, 1256, 1189, 1112, 1089, 1104, 1184, 1282, 1398, 1583, 1773, 2042, 2282, 2425, 2042, 1773, 1591, 1457, 1304, 1231, 1158, 1141, 1189, 1261, 1349, 1471, 1660, 1859, 2126, 2444, 2524, 2202, 1881, 1705, 1536, 1411, 1326, 1272, 1272, 1282, 1349, 1443, 1600, 1734, 1952, 2266, 2587, 2723, 2317, 1977, 1794, 1616, 1529, 1424, 1385, 1373, 1411, 1450, 1544, 1696, 1826, 2083, 2370, 2653, 2723, 2444, 2171, 1952, 1784, 1660, 1552, 1521, 1492, 1536, 1591, 1678, 1794, 2002, 2282, 2524, 2797, 2929, 2631, 2425, 2112, 1977, 1784, 1715, 1696, 1678, 1668, 1744, 1870, 2029, 2249, 2483, 2723, 3412]
                                       }
                                   }, {
                                       "name":    "2592x1944_CWF_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3249, 2949, 2675, 2537, 2281, 2170, 2021, 1976, 1963, 1960, 2055, 2239, 2441, 2694, 2891, 3048, 3546, 2977, 2709, 2459, 2198, 2067, 1896, 1801, 1754, 1721, 1778, 1861, 1969, 2148, 2390, 2649, 2878, 3168, 2916, 2574, 2317, 2044, 1868, 1728, 1604, 1570, 1544, 1580, 1666, 1801, 1970, 2178, 2470, 2754, 2993, 2904, 2436, 2141, 1916, 1727, 1553, 1447, 1404, 1390, 1431, 1511, 1663, 1832, 2032, 2312, 2637, 2850, 2669, 2309, 2012, 1776, 1598, 1436, 1327, 1277, 1259, 1293, 1384, 1520, 1687, 1903, 2151, 2474, 2797, 2561, 2211, 1955, 1687, 1489, 1343, 1229, 1177, 1159, 1201, 1269, 1417, 1605, 1813, 2067, 2395, 2822, 2535, 2174, 1836, 1628, 1427, 1267, 1163, 1106, 1097, 1121, 1216, 1318, 1502, 1739, 2011, 2296, 2741, 2479, 2106, 1841, 1577, 1372, 1214, 1114, 1077, 1056, 1077, 1159, 1274, 1449, 1675, 1939, 2271, 2629, 2469, 2082, 1816, 1550, 1355, 1211, 1109, 1050, 1041, 1052, 1131, 1256, 1422, 1648, 1919, 2253, 2632, 2491, 2098, 1841, 1544, 1361, 1202, 1101, 1054, 1024, 1056, 1133, 1261, 1418, 1658, 1903, 2250, 2600, 2535, 2174, 1842, 1603, 1400, 1230, 1133, 1076, 1063, 1094, 1171, 1295, 1455, 1677, 1927, 2274, 2563, 2618, 2232, 1910, 1665, 1451, 1306, 1183, 1128, 1106, 1143, 1220, 1339, 1515, 1732, 1986, 2327, 2662, 2716, 2309, 1966, 1729, 1531, 1367, 1268, 1208, 1186, 1219, 1316, 1431, 1602, 1815, 2079, 2437, 2716, 2781, 2412, 2096, 1840, 1638, 1473, 1371, 1295, 1296, 1331, 1407, 1549, 1720, 1938, 2208, 2553, 2850, 2955, 2588, 2242, 1980, 1783, 1600, 1510, 1439, 1428, 1459, 1546, 1683, 1842, 2070, 2350, 2646, 2955, 2938, 2694, 2385, 2131, 1955, 1776, 1667, 1615, 1603, 1621, 1723, 1854, 1994, 2258, 2523, 2825, 3017, 3065, 2856, 2615, 2410, 2171, 1989, 1907, 1819, 1816, 1813, 1950, 2062, 2240, 2578, 2737, 2930, 3404]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2665, 2429, 2288, 2094, 1973, 1840, 1788, 1740, 1721, 1736, 1799, 1920, 2059, 2224, 2402, 2529, 2996, 2471, 2361, 2175, 1989, 1854, 1728, 1654, 1612, 1599, 1616, 1682, 1783, 1897, 2084, 2276, 2435, 2657, 2443, 2251, 2025, 1839, 1716, 1588, 1529, 1486, 1465, 1502, 1553, 1647, 1765, 1919, 2132, 2352, 2523, 2345, 2141, 1899, 1731, 1598, 1490, 1398, 1351, 1352, 1356, 1427, 1531, 1649, 1811, 1997, 2239, 2446, 2308, 2032, 1810, 1657, 1506, 1378, 1288, 1241, 1216, 1257, 1332, 1412, 1548, 1721, 1887, 2105, 2397, 2190, 1960, 1731, 1561, 1435, 1305, 1210, 1155, 1134, 1161, 1235, 1350, 1474, 1629, 1806, 2046, 2335, 2143, 1895, 1655, 1517, 1361, 1235, 1142, 1084, 1080, 1102, 1169, 1273, 1403, 1562, 1765, 1964, 2264, 2087, 1863, 1659, 1480, 1325, 1198, 1110, 1049, 1034, 1060, 1113, 1234, 1363, 1523, 1715, 1945, 2194, 2124, 1854, 1633, 1461, 1298, 1178, 1091, 1032, 1024, 1040, 1112, 1207, 1339, 1520, 1694, 1913, 2189, 2114, 1873, 1624, 1461, 1302, 1176, 1093, 1047, 1026, 1054, 1113, 1219, 1347, 1506, 1697, 1934, 2224, 2180, 1874, 1677, 1493, 1334, 1202, 1126, 1067, 1050, 1064, 1136, 1242, 1387, 1544, 1724, 1958, 2272, 2182, 1943, 1722, 1550, 1386, 1259, 1172, 1099, 1089, 1126, 1184, 1280, 1412, 1586, 1758, 2008, 2277, 2283, 1995, 1767, 1594, 1448, 1329, 1239, 1176, 1164, 1188, 1260, 1343, 1483, 1637, 1830, 2065, 2275, 2345, 2086, 1846, 1666, 1526, 1415, 1332, 1274, 1264, 1284, 1342, 1433, 1557, 1718, 1927, 2141, 2318, 2433, 2212, 1942, 1771, 1644, 1521, 1428, 1383, 1356, 1389, 1456, 1555, 1669, 1824, 2032, 2276, 2405, 2471, 2317, 2097, 1880, 1756, 1627, 1569, 1511, 1492, 1498, 1583, 1676, 1803, 1959, 2183, 2326, 2502, 2583, 2449, 2313, 2080, 1949, 1825, 1756, 1667, 1657, 1650, 1720, 1819, 1961, 2149, 2375, 2509, 2862]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2673, 2485, 2303, 2113, 1955, 1835, 1734, 1727, 1734, 1714, 1780, 1887, 2009, 2192, 2320, 2506, 3037, 2509, 2368, 2174, 1989, 1844, 1715, 1635, 1598, 1585, 1614, 1659, 1760, 1880, 2064, 2275, 2462, 2664, 2531, 2274, 2025, 1850, 1699, 1581, 1499, 1456, 1451, 1465, 1536, 1635, 1748, 1919, 2145, 2368, 2510, 2407, 2147, 1905, 1745, 1599, 1469, 1388, 1331, 1330, 1368, 1423, 1524, 1654, 1811, 2027, 2261, 2416, 2350, 2064, 1845, 1641, 1518, 1376, 1289, 1222, 1218, 1253, 1312, 1414, 1556, 1717, 1904, 2160, 2368, 2228, 1978, 1759, 1576, 1428, 1304, 1213, 1147, 1143, 1169, 1236, 1340, 1465, 1638, 1831, 2085, 2342, 2135, 1964, 1699, 1531, 1382, 1232, 1152, 1096, 1085, 1106, 1169, 1279, 1437, 1604, 1789, 2005, 2288, 2178, 1900, 1689, 1497, 1337, 1209, 1102, 1053, 1045, 1067, 1125, 1238, 1381, 1552, 1765, 1969, 2223, 2136, 1902, 1670, 1469, 1314, 1179, 1091, 1042, 1024, 1055, 1117, 1225, 1363, 1542, 1734, 1989, 2249, 2193, 1911, 1681, 1477, 1335, 1188, 1106, 1053, 1037, 1062, 1108, 1228, 1362, 1549, 1737, 1963, 2239, 2247, 1946, 1694, 1521, 1355, 1227, 1127, 1071, 1053, 1071, 1150, 1252, 1385, 1578, 1751, 2012, 2263, 2300, 2008, 1767, 1576, 1401, 1267, 1172, 1122, 1113, 1125, 1199, 1296, 1447, 1595, 1806, 2045, 2275, 2332, 2064, 1840, 1622, 1469, 1343, 1247, 1189, 1170, 1196, 1268, 1376, 1515, 1674, 1856, 2104, 2385, 2407, 2155, 1889, 1688, 1558, 1422, 1328, 1264, 1272, 1293, 1360, 1459, 1595, 1741, 1961, 2206, 2397, 2500, 2250, 1976, 1820, 1653, 1511, 1436, 1373, 1377, 1401, 1463, 1563, 1670, 1870, 2057, 2291, 2470, 2530, 2359, 2167, 1936, 1748, 1628, 1566, 1513, 1497, 1505, 1570, 1698, 1819, 1983, 2197, 2405, 2607, 2661, 2580, 2390, 2127, 1973, 1820, 1738, 1676, 1674, 1693, 1757, 1845, 1985, 2178, 2419, 2580, 2928]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2459, 2240, 2107, 2036, 1869, 1732, 1698, 1643, 1620, 1652, 1680, 1771, 1869, 2009, 2167, 2293, 2696, 2296, 2118, 1962, 1834, 1718, 1636, 1581, 1571, 1550, 1533, 1581, 1636, 1746, 1912, 2053, 2196, 2431, 2227, 2047, 1856, 1714, 1595, 1539, 1476, 1428, 1404, 1428, 1483, 1570, 1637, 1781, 1949, 2118, 2279, 2190, 2002, 1769, 1639, 1523, 1412, 1358, 1290, 1302, 1317, 1382, 1478, 1560, 1673, 1851, 2070, 2206, 2103, 1884, 1687, 1568, 1442, 1342, 1251, 1219, 1198, 1219, 1308, 1389, 1495, 1616, 1762, 1994, 2133, 2075, 1819, 1643, 1523, 1385, 1261, 1193, 1130, 1135, 1147, 1202, 1291, 1415, 1568, 1714, 1908, 2104, 2004, 1755, 1616, 1472, 1336, 1210, 1130, 1099, 1066, 1099, 1143, 1258, 1394, 1520, 1693, 1859, 2058, 1959, 1770, 1594, 1435, 1316, 1184, 1092, 1048, 1045, 1059, 1111, 1220, 1343, 1509, 1653, 1821, 2064, 2011, 1771, 1604, 1416, 1300, 1167, 1084, 1052, 1024, 1045, 1092, 1193, 1338, 1482, 1612, 1812, 2038, 1984, 1760, 1611, 1435, 1289, 1166, 1092, 1048, 1024, 1052, 1126, 1197, 1332, 1474, 1619, 1810, 2036, 2030, 1786, 1633, 1472, 1320, 1205, 1126, 1045, 1048, 1080, 1135, 1215, 1364, 1478, 1649, 1838, 2058, 2075, 1840, 1660, 1488, 1355, 1246, 1184, 1110, 1088, 1102, 1179, 1270, 1373, 1530, 1677, 1874, 2020, 2118, 1862, 1669, 1531, 1423, 1288, 1222, 1154, 1138, 1184, 1251, 1330, 1436, 1592, 1743, 1931, 2133, 2174, 1977, 1749, 1622, 1488, 1383, 1309, 1260, 1261, 1270, 1330, 1412, 1545, 1648, 1809, 2028, 2222, 2296, 2047, 1813, 1686, 1549, 1482, 1393, 1361, 1350, 1385, 1417, 1496, 1620, 1714, 1901, 2089, 2244, 2260, 2118, 1950, 1802, 1681, 1587, 1500, 1476, 1451, 1490, 1535, 1603, 1690, 1844, 2040, 2180, 2314, 2358, 2224, 2122, 1910, 1825, 1678, 1629, 1618, 1604, 1594, 1654, 1752, 1869, 2022, 2167, 2293, 2696]
                                       }
                                   }, {
                                       "name":    "2592x1944_D50_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4130, 3525, 3106, 2751, 2509, 2272, 2177, 2090, 2062, 2118, 2289, 2412, 2727, 3075, 3648, 3874, 5148, 3565, 3075, 2775, 2393, 2162, 2010, 1888, 1844, 1822, 1866, 1972, 2133, 2375, 2703, 3106, 3486, 4241, 3565, 2904, 2509, 2192, 1972, 1791, 1685, 1624, 1599, 1658, 1761, 1900, 2133, 2469, 2851, 3302, 3922, 3337, 2751, 2256, 2010, 1771, 1616, 1478, 1418, 1412, 1471, 1575, 1771, 1972, 2240, 2592, 3075, 3606, 3045, 2529, 2147, 1855, 1641, 1465, 1334, 1274, 1258, 1322, 1431, 1607, 1833, 2076, 2412, 2904, 3410, 2904, 2375, 2010, 1732, 1521, 1351, 1229, 1174, 1174, 1215, 1317, 1500, 1685, 1984, 2289, 2775, 3410, 2775, 2289, 1972, 1641, 1451, 1264, 1152, 1099, 1088, 1123, 1239, 1405, 1583, 1877, 2223, 2592, 3234, 2680, 2240, 1911, 1624, 1369, 1219, 1099, 1055, 1051, 1062, 1174, 1334, 1536, 1812, 2133, 2613, 3168, 2703, 2192, 1900, 1607, 1375, 1215, 1099, 1031, 1031, 1059, 1144, 1322, 1521, 1791, 2104, 2549, 3168, 2727, 2256, 1888, 1599, 1363, 1205, 1084, 1024, 1027, 1055, 1169, 1284, 1507, 1791, 2162, 2529, 3137, 2825, 2322, 1935, 1632, 1425, 1229, 1123, 1066, 1051, 1099, 1205, 1357, 1552, 1844, 2162, 2658, 3045, 2931, 2375, 1984, 1694, 1471, 1279, 1165, 1123, 1119, 1152, 1274, 1425, 1641, 1888, 2272, 2775, 3410, 2987, 2509, 2090, 1791, 1583, 1375, 1269, 1205, 1201, 1249, 1363, 1507, 1751, 2023, 2375, 2800, 3410, 3268, 2680, 2240, 1935, 1704, 1544, 1387, 1339, 1339, 1381, 1500, 1676, 1877, 2192, 2529, 3045, 3525, 3410, 2851, 2431, 2104, 1844, 1685, 1552, 1500, 1492, 1544, 1658, 1833, 2062, 2358, 2775, 3201, 3648, 3486, 3106, 2703, 2289, 2049, 1888, 1761, 1713, 1713, 1741, 1877, 2036, 2256, 2592, 3075, 3525, 3972, 3972, 3373, 3075, 2592, 2340, 2147, 2023, 1923, 1923, 1984, 2133, 2305, 2570, 2959, 3302, 3735, 4484]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3469, 2900, 2673, 2468, 2175, 1997, 1915, 1873, 1873, 1915, 1929, 2130, 2344, 2619, 2933, 3189, 4012, 3074, 2790, 2480, 2193, 2005, 1853, 1776, 1699, 1688, 1722, 1807, 1944, 2112, 2398, 2716, 3056, 3400, 2917, 2579, 2251, 1974, 1794, 1666, 1603, 1532, 1532, 1564, 1666, 1770, 1959, 2184, 2480, 2836, 3150, 2760, 2433, 2078, 1846, 1666, 1541, 1429, 1376, 1372, 1413, 1500, 1639, 1794, 2020, 2322, 2673, 3093, 2566, 2271, 1951, 1734, 1564, 1410, 1306, 1254, 1248, 1276, 1368, 1496, 1677, 1901, 2175, 2541, 2933, 2660, 2147, 1833, 1634, 1462, 1312, 1230, 1171, 1148, 1179, 1273, 1402, 1574, 1820, 2086, 2421, 2775, 2421, 2069, 1751, 1584, 1387, 1239, 1140, 1089, 1094, 1118, 1204, 1319, 1492, 1710, 1997, 2322, 2730, 2387, 2020, 1739, 1509, 1343, 1204, 1110, 1067, 1045, 1073, 1161, 1286, 1454, 1666, 1929, 2241, 2687, 2398, 2020, 1739, 1483, 1319, 1196, 1087, 1045, 1024, 1051, 1156, 1248, 1413, 1666, 1901, 2232, 2673, 2387, 2061, 1751, 1505, 1343, 1190, 1096, 1043, 1034, 1067, 1148, 1270, 1445, 1666, 1922, 2251, 2687, 2480, 2078, 1782, 1541, 1368, 1219, 1135, 1073, 1062, 1087, 1174, 1292, 1458, 1694, 1951, 2302, 2687, 2492, 2121, 1826, 1609, 1410, 1276, 1161, 1115, 1118, 1148, 1224, 1347, 1523, 1739, 2005, 2376, 2821, 2592, 2212, 1915, 1671, 1505, 1354, 1270, 1190, 1188, 1230, 1299, 1437, 1614, 1826, 2121, 2492, 2900, 2716, 2354, 2013, 1770, 1584, 1449, 1354, 1316, 1289, 1322, 1421, 1536, 1699, 1922, 2232, 2592, 3002, 2868, 2528, 2156, 1908, 1751, 1584, 1487, 1445, 1425, 1479, 1546, 1666, 1826, 2095, 2410, 2790, 3074, 3056, 2730, 2398, 2103, 1908, 1751, 1650, 1603, 1589, 1624, 1699, 1839, 2036, 2261, 2619, 2933, 3291, 3229, 3020, 2687, 2376, 2156, 1929, 1853, 1788, 1763, 1813, 1908, 2078, 2281, 2579, 2852, 3209, 3861]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3225, 2812, 2650, 2354, 2127, 1985, 1881, 1807, 1833, 1867, 1924, 2100, 2280, 2569, 2844, 3205, 4118, 2978, 2722, 2445, 2135, 1954, 1794, 1715, 1670, 1648, 1698, 1769, 1917, 2083, 2343, 2664, 2996, 3517, 2961, 2583, 2230, 1946, 1775, 1622, 1529, 1484, 1479, 1510, 1617, 1739, 1902, 2144, 2457, 2828, 3184, 2797, 2365, 2057, 1820, 1643, 1497, 1405, 1353, 1335, 1382, 1471, 1591, 1769, 1977, 2280, 2650, 3032, 2609, 2249, 1932, 1704, 1529, 1375, 1307, 1228, 1222, 1281, 1353, 1471, 1643, 1881, 2154, 2506, 2876, 2569, 2135, 1827, 1617, 1429, 1284, 1199, 1139, 1134, 1174, 1258, 1386, 1557, 1775, 2049, 2388, 2828, 2457, 2083, 1763, 1552, 1379, 1216, 1134, 1083, 1079, 1107, 1179, 1301, 1501, 1709, 1954, 2301, 2707, 2399, 2057, 1751, 1524, 1324, 1193, 1093, 1041, 1030, 1061, 1134, 1268, 1437, 1648, 1932, 2260, 2664, 2376, 1992, 1727, 1510, 1321, 1177, 1079, 1028, 1024, 1047, 1132, 1243, 1409, 1648, 1917, 2249, 2623, 2410, 2041, 1733, 1506, 1321, 1174, 1100, 1030, 1034, 1054, 1124, 1246, 1413, 1654, 1902, 2220, 2664, 2544, 2057, 1775, 1533, 1335, 1196, 1122, 1061, 1052, 1074, 1160, 1281, 1454, 1676, 1939, 2322, 2707, 2569, 2181, 1854, 1617, 1417, 1252, 1166, 1124, 1114, 1127, 1210, 1342, 1497, 1709, 2016, 2333, 2751, 2664, 2249, 1917, 1664, 1501, 1331, 1243, 1182, 1168, 1210, 1281, 1421, 1601, 1807, 2109, 2469, 2876, 2782, 2422, 2033, 1763, 1586, 1450, 1346, 1291, 1284, 1304, 1405, 1543, 1733, 1932, 2220, 2609, 2926, 2943, 2583, 2163, 1932, 1715, 1591, 1475, 1405, 1402, 1429, 1543, 1659, 1820, 2057, 2376, 2751, 3125, 3032, 2751, 2365, 2083, 1881, 1733, 1638, 1576, 1571, 1596, 1709, 1827, 2000, 2280, 2609, 2961, 3331, 3288, 3068, 2736, 2343, 2144, 1954, 1867, 1769, 1775, 1814, 1902, 2049, 2311, 2494, 2910, 3225, 3724]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3152, 2669, 2398, 2221, 2030, 1890, 1838, 1779, 1732, 1779, 1838, 1981, 2121, 2347, 2691, 2878, 3448, 2735, 2507, 2236, 2017, 1838, 1732, 1662, 1630, 1630, 1638, 1714, 1808, 1923, 2148, 2415, 2713, 2982, 2606, 2347, 2068, 1848, 1697, 1583, 1524, 1477, 1457, 1490, 1553, 1662, 1798, 2005, 2282, 2606, 2878, 2507, 2206, 1912, 1705, 1575, 1470, 1396, 1313, 1339, 1350, 1432, 1553, 1697, 1869, 2135, 2433, 2735, 2415, 2081, 1818, 1630, 1483, 1384, 1277, 1234, 1239, 1225, 1328, 1445, 1575, 1798, 1981, 2330, 2691, 2298, 2005, 1760, 1553, 1414, 1292, 1198, 1129, 1144, 1157, 1225, 1356, 1531, 1679, 1880, 2236, 2507, 2251, 1912, 1697, 1531, 1350, 1212, 1141, 1088, 1092, 1117, 1177, 1297, 1457, 1638, 1848, 2148, 2451, 2221, 1923, 1671, 1483, 1318, 1186, 1106, 1053, 1050, 1053, 1153, 1253, 1390, 1606, 1788, 2094, 2451, 2251, 1890, 1654, 1445, 1302, 1190, 1088, 1053, 1024, 1064, 1121, 1225, 1414, 1560, 1808, 2068, 2364, 2236, 1869, 1697, 1470, 1302, 1165, 1092, 1047, 1024, 1060, 1125, 1248, 1378, 1583, 1798, 2107, 2398, 2266, 1912, 1723, 1490, 1339, 1194, 1133, 1064, 1074, 1092, 1153, 1282, 1432, 1622, 1828, 2135, 2488, 2330, 2005, 1750, 1553, 1420, 1272, 1186, 1114, 1106, 1137, 1212, 1328, 1477, 1662, 1901, 2162, 2488, 2398, 2055, 1798, 1606, 1464, 1334, 1253, 1186, 1169, 1225, 1302, 1402, 1531, 1714, 1923, 2221, 2585, 2488, 2177, 1901, 1688, 1546, 1420, 1334, 1287, 1277, 1302, 1390, 1510, 1630, 1808, 2030, 2380, 2758, 2691, 2314, 2042, 1798, 1662, 1560, 1451, 1426, 1390, 1432, 1490, 1614, 1741, 1946, 2191, 2526, 2758, 2805, 2488, 2251, 1923, 1808, 1679, 1606, 1524, 1546, 1568, 1630, 1750, 1901, 2094, 2364, 2691, 2903, 3009, 2669, 2451, 2121, 2005, 1859, 1760, 1741, 1741, 1779, 1818, 1969, 2148, 2330, 2626, 2982, 3522]
                                       }
                                   }, {
                                       "name":    "2592x1944_D50_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3198, 2892, 2655, 2431, 2272, 2098, 2034, 1967, 1945, 1992, 2132, 2219, 2455, 2695, 3080, 3152, 3911, 2873, 2605, 2438, 2172, 2008, 1897, 1802, 1770, 1753, 1790, 1878, 2006, 2193, 2432, 2705, 2921, 3365, 2927, 2512, 2254, 2029, 1865, 1720, 1634, 1583, 1562, 1615, 1704, 1819, 2007, 2267, 2537, 2826, 3194, 2797, 2421, 2066, 1890, 1700, 1573, 1452, 1399, 1394, 1449, 1543, 1716, 1882, 2092, 2351, 2683, 3003, 2602, 2263, 1991, 1766, 1592, 1440, 1321, 1266, 1251, 1312, 1414, 1573, 1769, 1964, 2219, 2572, 2887, 2513, 2151, 1884, 1665, 1488, 1336, 1223, 1171, 1172, 1211, 1308, 1478, 1641, 1893, 2128, 2485, 2913, 2424, 2090, 1859, 1588, 1426, 1255, 1149, 1098, 1088, 1122, 1235, 1391, 1550, 1804, 2080, 2345, 2791, 2356, 2055, 1810, 1575, 1351, 1213, 1098, 1055, 1051, 1062, 1172, 1324, 1509, 1748, 2006, 2371, 2749, 2377, 2016, 1801, 1561, 1357, 1209, 1098, 1031, 1031, 1059, 1142, 1313, 1496, 1730, 1982, 2319, 2752, 2394, 2068, 1789, 1552, 1345, 1199, 1083, 1024, 1027, 1055, 1167, 1276, 1481, 1729, 2032, 2300, 2724, 2464, 2118, 1826, 1580, 1402, 1222, 1121, 1066, 1051, 1098, 1201, 1345, 1521, 1773, 2026, 2401, 2640, 2534, 2151, 1862, 1631, 1441, 1267, 1161, 1121, 1117, 1149, 1267, 1407, 1600, 1806, 2113, 2485, 2913, 2556, 2246, 1942, 1709, 1539, 1355, 1259, 1199, 1196, 1242, 1349, 1479, 1693, 1917, 2187, 2486, 2887, 2744, 2363, 2053, 1824, 1640, 1506, 1366, 1324, 1325, 1364, 1473, 1628, 1796, 2050, 2297, 2659, 2941, 2811, 2470, 2189, 1953, 1751, 1624, 1511, 1468, 1462, 1509, 1609, 1758, 1944, 2171, 2474, 2747, 2989, 2816, 2628, 2380, 2085, 1911, 1789, 1688, 1651, 1653, 1676, 1792, 1920, 2090, 2339, 2680, 2951, 3169, 3088, 2778, 2631, 2301, 2130, 1991, 1899, 1819, 1822, 1873, 1995, 2127, 2323, 2600, 2809, 3048, 3446]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2736, 2425, 2316, 2200, 1991, 1862, 1804, 1775, 1777, 1812, 1816, 1976, 2133, 2323, 2520, 2641, 3116, 2516, 2385, 2200, 2005, 1873, 1758, 1701, 1638, 1630, 1659, 1729, 1839, 1965, 2177, 2390, 2590, 2753, 2442, 2254, 2040, 1841, 1707, 1607, 1558, 1498, 1499, 1527, 1617, 1701, 1853, 2022, 2230, 2458, 2616, 2354, 2164, 1916, 1746, 1605, 1503, 1406, 1359, 1356, 1394, 1473, 1594, 1721, 1899, 2122, 2358, 2610, 2228, 2051, 1822, 1658, 1521, 1388, 1294, 1247, 1241, 1268, 1354, 1469, 1625, 1808, 2015, 2273, 2514, 2319, 1961, 1730, 1576, 1433, 1299, 1224, 1168, 1146, 1176, 1266, 1385, 1537, 1745, 1950, 2190, 2410, 2141, 1905, 1664, 1536, 1366, 1231, 1138, 1088, 1093, 1117, 1200, 1308, 1465, 1651, 1881, 2118, 2388, 2121, 1868, 1657, 1470, 1326, 1198, 1109, 1067, 1045, 1073, 1159, 1278, 1431, 1614, 1826, 2055, 2362, 2132, 1870, 1659, 1447, 1304, 1191, 1086, 1045, 1024, 1051, 1154, 1241, 1393, 1615, 1802, 2050, 2353, 2121, 1903, 1668, 1466, 1326, 1185, 1095, 1043, 1034, 1067, 1146, 1262, 1423, 1614, 1819, 2064, 2362, 2188, 1912, 1692, 1496, 1348, 1212, 1133, 1072, 1062, 1086, 1171, 1282, 1433, 1636, 1840, 2101, 2354, 2186, 1939, 1724, 1554, 1384, 1265, 1157, 1113, 1116, 1146, 1218, 1332, 1490, 1671, 1880, 2152, 2447, 2248, 2002, 1791, 1602, 1467, 1335, 1260, 1185, 1183, 1223, 1287, 1413, 1567, 1741, 1968, 2232, 2489, 2321, 2100, 1861, 1679, 1531, 1418, 1335, 1302, 1277, 1308, 1398, 1498, 1635, 1813, 2046, 2292, 2540, 2405, 2214, 1962, 1784, 1669, 1532, 1451, 1417, 1399, 1448, 1506, 1607, 1735, 1945, 2172, 2421, 2559, 2503, 2339, 2133, 1929, 1789, 1668, 1588, 1551, 1540, 1570, 1632, 1746, 1899, 2062, 2312, 2495, 2674, 2568, 2514, 2327, 2125, 1975, 1803, 1750, 1700, 1680, 1722, 1798, 1931, 2080, 2291, 2456, 2656, 3010]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2565, 2359, 2298, 2107, 1951, 1851, 1774, 1717, 1742, 1770, 1812, 1950, 2080, 2283, 2450, 2653, 3190, 2446, 2333, 2171, 1956, 1828, 1706, 1646, 1612, 1594, 1637, 1695, 1815, 1940, 2130, 2348, 2544, 2838, 2475, 2258, 2023, 1817, 1690, 1567, 1490, 1453, 1450, 1477, 1571, 1673, 1803, 1987, 2211, 2451, 2642, 2383, 2109, 1898, 1723, 1584, 1462, 1383, 1337, 1321, 1365, 1445, 1549, 1698, 1861, 2087, 2339, 2563, 2261, 2032, 1806, 1632, 1489, 1355, 1295, 1221, 1216, 1273, 1339, 1445, 1594, 1790, 1997, 2244, 2470, 2247, 1951, 1725, 1561, 1402, 1272, 1194, 1137, 1132, 1171, 1251, 1370, 1521, 1704, 1918, 2162, 2452, 2170, 1916, 1675, 1507, 1358, 1209, 1132, 1082, 1079, 1106, 1176, 1291, 1473, 1650, 1843, 2100, 2370, 2130, 1899, 1668, 1484, 1308, 1188, 1092, 1041, 1030, 1061, 1132, 1260, 1415, 1597, 1828, 2072, 2343, 2114, 1846, 1648, 1471, 1306, 1173, 1078, 1028, 1024, 1047, 1131, 1237, 1389, 1599, 1816, 2064, 2313, 2139, 1886, 1652, 1467, 1305, 1169, 1099, 1030, 1034, 1054, 1123, 1239, 1392, 1603, 1802, 2038, 2343, 2240, 1894, 1685, 1489, 1317, 1190, 1120, 1061, 1052, 1073, 1157, 1272, 1429, 1620, 1830, 2118, 2370, 2247, 1990, 1748, 1561, 1391, 1242, 1162, 1122, 1113, 1125, 1205, 1328, 1465, 1644, 1889, 2116, 2391, 2304, 2032, 1793, 1596, 1463, 1313, 1234, 1177, 1164, 1204, 1270, 1398, 1555, 1724, 1958, 2214, 2470, 2371, 2155, 1878, 1673, 1533, 1419, 1327, 1278, 1272, 1290, 1383, 1505, 1666, 1822, 2036, 2306, 2482, 2461, 2258, 1967, 1805, 1637, 1539, 1440, 1379, 1378, 1402, 1503, 1600, 1730, 1912, 2144, 2390, 2597, 2485, 2355, 2107, 1912, 1765, 1652, 1577, 1526, 1523, 1544, 1641, 1735, 1868, 2078, 2304, 2517, 2703, 2609, 2550, 2365, 2099, 1965, 1825, 1762, 1683, 1690, 1723, 1793, 1906, 2106, 2222, 2502, 2668, 2914]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2514, 2252, 2101, 1999, 1869, 1769, 1737, 1692, 1652, 1692, 1737, 1848, 1946, 2102, 2330, 2408, 2721, 2269, 2167, 2003, 1857, 1728, 1651, 1599, 1575, 1577, 1583, 1646, 1718, 1802, 1967, 2147, 2326, 2449, 2209, 2071, 1889, 1733, 1621, 1531, 1486, 1446, 1429, 1458, 1512, 1603, 1710, 1868, 2066, 2276, 2412, 2161, 1980, 1775, 1622, 1523, 1437, 1375, 1299, 1325, 1334, 1408, 1514, 1633, 1766, 1964, 2164, 2335, 2110, 1894, 1707, 1565, 1447, 1363, 1266, 1227, 1233, 1219, 1315, 1421, 1531, 1716, 1848, 2099, 2325, 2033, 1843, 1666, 1503, 1388, 1280, 1193, 1127, 1142, 1154, 1219, 1341, 1497, 1617, 1771, 2035, 2198, 2005, 1772, 1617, 1487, 1331, 1205, 1139, 1087, 1092, 1116, 1174, 1287, 1432, 1585, 1750, 1971, 2165, 1987, 1786, 1597, 1446, 1302, 1181, 1105, 1053, 1050, 1053, 1151, 1246, 1371, 1559, 1701, 1931, 2172, 2013, 1759, 1583, 1412, 1288, 1185, 1087, 1053, 1024, 1064, 1120, 1219, 1394, 1518, 1720, 1911, 2104, 1999, 1740, 1620, 1434, 1287, 1161, 1091, 1047, 1024, 1060, 1123, 1241, 1359, 1538, 1710, 1942, 2129, 2017, 1772, 1640, 1450, 1321, 1188, 1131, 1064, 1074, 1091, 1150, 1273, 1408, 1570, 1732, 1960, 2195, 2058, 1843, 1657, 1503, 1393, 1261, 1181, 1112, 1105, 1135, 1206, 1314, 1447, 1602, 1789, 1974, 2183, 2097, 1873, 1690, 1544, 1429, 1316, 1243, 1181, 1165, 1219, 1290, 1380, 1491, 1640, 1798, 2009, 2243, 2146, 1957, 1766, 1607, 1497, 1391, 1316, 1274, 1266, 1289, 1369, 1474, 1573, 1713, 1875, 2121, 2353, 2272, 2045, 1867, 1690, 1590, 1511, 1418, 1399, 1366, 1404, 1454, 1560, 1660, 1817, 1991, 2212, 2323, 2320, 2152, 2015, 1778, 1702, 1604, 1548, 1479, 1501, 1519, 1570, 1667, 1783, 1922, 2106, 2309, 2391, 2414, 2252, 2142, 1918, 1848, 1743, 1668, 1658, 1660, 1692, 1719, 1837, 1969, 2088, 2279, 2486, 2773]
                                       }
                                   }, {
                                       "name":    "2592x1944_D65_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4347, 3863, 3419, 3000, 2691, 2497, 2329, 2206, 2206, 2230, 2410, 2590, 2856, 3209, 3692, 4012, 4910, 3899, 3419, 2958, 2623, 2329, 2106, 1985, 1912, 1895, 1939, 2095, 2206, 2497, 2799, 3259, 3659, 4258, 3759, 3209, 2744, 2369, 2149, 1904, 1752, 1674, 1654, 1708, 1805, 1995, 2242, 2574, 2958, 3447, 3899, 3659, 3000, 2527, 2160, 1904, 1688, 1538, 1463, 1468, 1505, 1616, 1789, 2034, 2342, 2673, 3209, 3725, 3337, 2762, 2317, 1976, 1744, 1532, 1389, 1307, 1307, 1336, 1447, 1635, 1861, 2149, 2527, 3022, 3506, 3259, 2623, 2206, 1845, 1597, 1403, 1255, 1191, 1171, 1222, 1340, 1505, 1730, 2024, 2396, 2856, 3447, 3089, 2512, 2116, 1759, 1505, 1303, 1191, 1108, 1100, 1129, 1219, 1403, 1591, 1939, 2266, 2726, 3311, 3000, 2467, 2044, 1702, 1473, 1240, 1120, 1060, 1052, 1071, 1174, 1315, 1544, 1837, 2172, 2639, 3284, 3022, 2410, 2034, 1674, 1428, 1215, 1097, 1042, 1034, 1058, 1142, 1307, 1510, 1805, 2172, 2639, 3184, 3022, 2438, 2054, 1681, 1452, 1222, 1111, 1042, 1024, 1052, 1155, 1311, 1527, 1820, 2194, 2639, 3337, 3160, 2543, 2064, 1759, 1478, 1267, 1158, 1077, 1055, 1097, 1187, 1349, 1585, 1878, 2218, 2744, 3259, 3209, 2673, 2183, 1837, 1561, 1340, 1215, 1139, 1114, 1148, 1259, 1428, 1654, 1939, 2291, 2837, 3391, 3364, 2799, 2266, 1921, 1641, 1447, 1311, 1233, 1219, 1255, 1376, 1532, 1774, 2024, 2438, 2979, 3476, 3659, 2917, 2453, 2074, 1813, 1597, 1457, 1371, 1353, 1408, 1505, 1681, 1948, 2218, 2639, 3160, 3659, 3863, 3184, 2656, 2266, 1985, 1766, 1641, 1561, 1527, 1585, 1674, 1870, 2106, 2410, 2799, 3337, 3793, 3973, 3391, 2917, 2482, 2266, 1995, 1837, 1782, 1766, 1797, 1904, 2085, 2329, 2656, 3112, 3565, 4131, 4302, 3725, 3233, 2856, 2543, 2291, 2160, 2054, 2024, 2064, 2183, 2396, 2708, 3136, 3447, 3899, 4853]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3462, 2910, 2707, 2383, 2192, 2036, 1912, 1900, 1832, 1890, 1999, 2101, 2260, 2559, 2787, 3074, 3939, 3103, 2811, 2520, 2222, 2011, 1847, 1744, 1695, 1686, 1708, 1782, 1900, 2088, 2299, 2631, 2872, 3322, 2990, 2631, 2299, 1993, 1816, 1677, 1573, 1518, 1526, 1543, 1623, 1744, 1895, 2101, 2400, 2729, 3103, 2835, 2472, 2108, 1863, 1673, 1562, 1432, 1384, 1361, 1405, 1471, 1604, 1739, 1940, 2229, 2539, 2950, 2718, 2324, 1993, 1772, 1577, 1426, 1307, 1259, 1243, 1282, 1344, 1451, 1636, 1826, 2108, 2418, 2860, 2579, 2192, 1890, 1644, 1481, 1331, 1220, 1166, 1151, 1170, 1259, 1367, 1529, 1739, 1987, 2307, 2718, 2482, 2121, 1811, 1612, 1399, 1257, 1151, 1103, 1092, 1111, 1185, 1310, 1458, 1648, 1890, 2229, 2663, 2427, 2088, 1787, 1540, 1375, 1231, 1120, 1069, 1042, 1074, 1135, 1255, 1417, 1615, 1857, 2192, 2589, 2436, 2049, 1768, 1515, 1339, 1195, 1103, 1039, 1024, 1049, 1126, 1227, 1396, 1581, 1816, 2142, 2599, 2491, 2101, 1782, 1551, 1361, 1206, 1111, 1050, 1039, 1057, 1124, 1245, 1396, 1592, 1847, 2142, 2529, 2510, 2121, 1811, 1562, 1381, 1236, 1141, 1074, 1052, 1072, 1159, 1267, 1423, 1619, 1873, 2199, 2641, 2589, 2185, 1873, 1640, 1442, 1287, 1182, 1120, 1101, 1139, 1202, 1302, 1474, 1677, 1917, 2268, 2696, 2663, 2244, 1928, 1695, 1522, 1364, 1257, 1191, 1180, 1211, 1274, 1405, 1573, 1763, 2005, 2332, 2787, 2811, 2391, 2049, 1777, 1608, 1461, 1370, 1312, 1277, 1312, 1378, 1501, 1652, 1852, 2135, 2482, 2847, 2963, 2589, 2222, 1940, 1763, 1596, 1484, 1448, 1405, 1448, 1501, 1627, 1772, 2005, 2268, 2641, 3031, 3088, 2729, 2427, 2101, 1928, 1735, 1648, 1592, 1581, 1588, 1665, 1797, 1963, 2185, 2482, 2799, 3193, 3289, 3059, 2752, 2391, 2185, 1993, 1890, 1768, 1777, 1821, 1879, 2011, 2237, 2501, 2799, 3074, 3759]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3443, 2931, 2634, 2392, 2161, 1983, 1864, 1827, 1827, 1843, 1919, 2052, 2235, 2493, 2757, 3055, 3806, 3084, 2792, 2464, 2190, 1965, 1822, 1721, 1646, 1642, 1689, 1753, 1853, 2039, 2274, 2572, 2866, 3270, 3055, 2645, 2259, 1959, 1797, 1646, 1548, 1488, 1492, 1505, 1594, 1721, 1858, 2072, 2332, 2700, 3055, 2892, 2437, 2092, 1843, 1668, 1516, 1426, 1355, 1338, 1378, 1442, 1552, 1730, 1930, 2176, 2561, 2931, 2745, 2315, 1971, 1744, 1537, 1393, 1301, 1225, 1215, 1268, 1327, 1455, 1614, 1817, 2058, 2400, 2734, 2531, 2190, 1869, 1642, 1465, 1314, 1204, 1151, 1129, 1161, 1246, 1358, 1505, 1716, 1977, 2274, 2722, 2512, 2119, 1802, 1571, 1405, 1236, 1139, 1082, 1077, 1098, 1157, 1285, 1452, 1668, 1891, 2220, 2613, 2483, 2085, 1807, 1541, 1349, 1215, 1102, 1050, 1032, 1057, 1127, 1241, 1393, 1602, 1853, 2154, 2522, 2455, 2033, 1763, 1527, 1330, 1189, 1087, 1035, 1024, 1040, 1108, 1232, 1375, 1590, 1843, 2147, 2512, 2512, 2085, 1772, 1523, 1344, 1193, 1091, 1049, 1026, 1049, 1115, 1220, 1381, 1579, 1853, 2140, 2541, 2483, 2147, 1792, 1563, 1375, 1222, 1131, 1073, 1042, 1073, 1141, 1258, 1414, 1626, 1880, 2190, 2623, 2677, 2213, 1874, 1618, 1429, 1278, 1170, 1123, 1106, 1123, 1195, 1319, 1468, 1663, 1924, 2282, 2666, 2666, 2282, 1953, 1707, 1502, 1355, 1258, 1182, 1178, 1198, 1273, 1399, 1541, 1748, 2020, 2348, 2757, 2829, 2446, 2045, 1782, 1626, 1452, 1352, 1290, 1275, 1311, 1372, 1488, 1659, 1869, 2119, 2464, 2817, 2999, 2634, 2190, 1936, 1730, 1586, 1478, 1405, 1408, 1420, 1502, 1614, 1802, 2001, 2267, 2666, 2931, 3084, 2792, 2418, 2119, 1880, 1753, 1622, 1571, 1563, 1582, 1642, 1797, 1947, 2198, 2502, 2792, 3159, 3407, 3113, 2757, 2383, 2133, 1953, 1848, 1802, 1744, 1797, 1891, 2014, 2154, 2483, 2841, 3041, 3719]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3235, 2648, 2515, 2219, 2039, 1878, 1818, 1734, 1715, 1734, 1804, 1918, 2106, 2334, 2529, 2830, 3511, 2866, 2558, 2264, 2012, 1848, 1721, 1640, 1617, 1577, 1611, 1670, 1782, 1878, 2116, 2396, 2664, 2940, 2695, 2408, 2077, 1855, 1702, 1583, 1509, 1470, 1446, 1465, 1540, 1611, 1761, 1951, 2208, 2474, 2744, 2632, 2264, 1943, 1755, 1605, 1465, 1384, 1331, 1324, 1339, 1406, 1494, 1634, 1825, 2030, 2370, 2617, 2529, 2106, 1848, 1640, 1494, 1372, 1271, 1220, 1210, 1237, 1308, 1410, 1540, 1728, 1902, 2241, 2515, 2358, 2039, 1818, 1583, 1419, 1271, 1194, 1126, 1134, 1149, 1217, 1324, 1460, 1628, 1871, 2146, 2461, 2275, 1951, 1708, 1519, 1343, 1217, 1129, 1085, 1080, 1093, 1161, 1264, 1415, 1588, 1789, 2030, 2370, 2264, 1951, 1689, 1494, 1320, 1191, 1104, 1048, 1038, 1050, 1112, 1227, 1380, 1566, 1755, 1977, 2346, 2264, 1910, 1695, 1465, 1312, 1176, 1091, 1048, 1024, 1048, 1085, 1197, 1359, 1519, 1734, 1994, 2275, 2310, 1951, 1721, 1460, 1308, 1179, 1088, 1053, 1024, 1055, 1118, 1201, 1343, 1524, 1702, 2003, 2310, 2370, 1977, 1734, 1519, 1355, 1207, 1107, 1060, 1058, 1070, 1132, 1230, 1380, 1529, 1755, 2049, 2370, 2396, 2058, 1775, 1588, 1393, 1264, 1185, 1109, 1091, 1112, 1179, 1279, 1428, 1588, 1789, 2077, 2408, 2488, 2096, 1840, 1623, 1470, 1327, 1250, 1185, 1161, 1197, 1264, 1351, 1489, 1677, 1894, 2177, 2529, 2648, 2219, 1918, 1715, 1550, 1406, 1327, 1275, 1250, 1293, 1347, 1460, 1594, 1789, 2003, 2310, 2617, 2711, 2358, 2049, 1811, 1664, 1524, 1437, 1388, 1368, 1410, 1460, 1566, 1728, 1878, 2106, 2421, 2695, 2761, 2544, 2252, 1977, 1782, 1683, 1572, 1514, 1524, 1550, 1594, 1689, 1818, 2058, 2298, 2602, 2884, 3019, 2744, 2515, 2208, 1994, 1871, 1741, 1748, 1715, 1708, 1768, 1910, 2077, 2334, 2529, 2848, 3405]
                                       }
                                   }, {
                                       "name":    "2592x1944_D65_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3350, 3144, 2900, 2634, 2425, 2292, 2167, 2069, 2073, 2091, 2238, 2372, 2564, 2804, 3114, 3255, 3744, 3116, 2870, 2585, 2365, 2153, 1982, 1890, 1832, 1819, 1857, 1989, 2071, 2298, 2513, 2828, 3055, 3377, 3072, 2753, 2449, 2181, 2022, 1823, 1696, 1630, 1613, 1662, 1745, 1905, 2104, 2357, 2626, 2941, 3177, 3043, 2622, 2296, 2022, 1821, 1639, 1508, 1442, 1448, 1482, 1582, 1733, 1938, 2182, 2419, 2791, 3094, 2830, 2455, 2137, 1875, 1687, 1503, 1374, 1298, 1299, 1326, 1429, 1600, 1795, 2029, 2318, 2669, 2962, 2794, 2358, 2055, 1767, 1559, 1386, 1248, 1188, 1169, 1218, 1331, 1483, 1683, 1929, 2221, 2553, 2942, 2675, 2278, 1986, 1696, 1477, 1293, 1188, 1107, 1099, 1128, 1215, 1389, 1558, 1860, 2118, 2458, 2853, 2614, 2247, 1927, 1647, 1449, 1233, 1119, 1060, 1052, 1071, 1172, 1306, 1516, 1771, 2041, 2393, 2842, 2635, 2201, 1920, 1622, 1407, 1209, 1096, 1042, 1034, 1058, 1140, 1299, 1485, 1743, 2043, 2395, 2765, 2631, 2222, 1936, 1628, 1429, 1216, 1110, 1042, 1024, 1052, 1153, 1302, 1500, 1756, 2060, 2393, 2885, 2732, 2304, 1940, 1696, 1452, 1258, 1155, 1076, 1055, 1096, 1184, 1337, 1552, 1804, 2076, 2473, 2811, 2754, 2400, 2035, 1760, 1525, 1326, 1209, 1137, 1113, 1146, 1252, 1410, 1612, 1852, 2129, 2537, 2898, 2851, 2485, 2093, 1825, 1592, 1423, 1299, 1226, 1213, 1248, 1361, 1503, 1715, 1917, 2241, 2633, 2938, 3043, 2555, 2233, 1946, 1738, 1555, 1432, 1354, 1338, 1389, 1477, 1633, 1861, 2073, 2390, 2752, 3043, 3150, 2733, 2376, 2092, 1876, 1698, 1594, 1525, 1495, 1547, 1624, 1792, 1983, 2216, 2494, 2854, 3098, 3170, 2848, 2552, 2247, 2098, 1884, 1756, 1714, 1701, 1727, 1817, 1964, 2153, 2393, 2710, 2982, 3285, 3319, 3041, 2755, 2516, 2301, 2115, 2019, 1935, 1911, 1944, 2039, 2205, 2439, 2745, 2922, 3171, 3704]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2731, 2432, 2343, 2131, 2006, 1895, 1801, 1799, 1741, 1790, 1878, 1951, 2063, 2274, 2405, 2555, 3065, 2537, 2401, 2232, 2029, 1878, 1753, 1673, 1635, 1628, 1646, 1707, 1800, 1944, 2094, 2321, 2448, 2696, 2496, 2296, 2080, 1857, 1726, 1617, 1531, 1485, 1494, 1508, 1577, 1678, 1796, 1950, 2164, 2373, 2581, 2412, 2195, 1941, 1761, 1612, 1523, 1408, 1367, 1346, 1387, 1445, 1561, 1671, 1829, 2044, 2249, 2500, 2346, 2094, 1858, 1692, 1533, 1403, 1295, 1251, 1237, 1274, 1331, 1426, 1588, 1741, 1957, 2172, 2457, 2255, 1999, 1780, 1585, 1450, 1317, 1214, 1163, 1149, 1167, 1252, 1351, 1495, 1671, 1864, 2095, 2365, 2190, 1948, 1717, 1561, 1377, 1249, 1148, 1102, 1092, 1110, 1182, 1300, 1433, 1594, 1787, 2039, 2335, 2153, 1926, 1700, 1498, 1356, 1225, 1119, 1069, 1042, 1074, 1133, 1248, 1396, 1567, 1762, 2014, 2283, 2162, 1894, 1684, 1476, 1323, 1190, 1102, 1039, 1024, 1049, 1125, 1221, 1377, 1537, 1727, 1973, 2294, 2204, 1937, 1695, 1508, 1343, 1200, 1110, 1050, 1039, 1057, 1123, 1238, 1376, 1546, 1753, 1972, 2235, 2212, 1948, 1717, 1516, 1360, 1228, 1139, 1073, 1052, 1071, 1156, 1258, 1400, 1568, 1772, 2014, 2317, 2263, 1993, 1765, 1582, 1414, 1275, 1177, 1118, 1100, 1137, 1197, 1289, 1444, 1615, 1803, 2062, 2348, 2304, 2028, 1802, 1623, 1483, 1344, 1247, 1186, 1175, 1205, 1264, 1383, 1529, 1684, 1868, 2101, 2400, 2394, 2130, 1891, 1685, 1553, 1429, 1350, 1298, 1266, 1298, 1358, 1466, 1593, 1751, 1964, 2203, 2421, 2476, 2262, 2016, 1812, 1679, 1543, 1449, 1419, 1380, 1419, 1464, 1571, 1687, 1868, 2054, 2303, 2527, 2526, 2338, 2157, 1927, 1806, 1654, 1586, 1541, 1532, 1537, 1601, 1709, 1836, 1998, 2201, 2392, 2602, 2610, 2544, 2378, 2138, 2000, 1858, 1782, 1682, 1692, 1729, 1773, 1874, 2043, 2227, 2415, 2555, 2939]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2717, 2448, 2285, 2138, 1980, 1850, 1759, 1734, 1737, 1748, 1808, 1909, 2042, 2221, 2382, 2541, 2971, 2523, 2386, 2187, 2002, 1838, 1731, 1652, 1590, 1588, 1629, 1681, 1758, 1902, 2073, 2274, 2443, 2658, 2545, 2307, 2047, 1828, 1709, 1589, 1508, 1457, 1462, 1472, 1550, 1657, 1764, 1925, 2107, 2350, 2545, 2456, 2167, 1928, 1743, 1607, 1480, 1403, 1339, 1324, 1361, 1418, 1513, 1663, 1820, 1999, 2267, 2486, 2368, 2087, 1839, 1667, 1496, 1372, 1289, 1219, 1209, 1260, 1314, 1430, 1567, 1732, 1914, 2157, 2359, 2217, 1997, 1761, 1583, 1435, 1301, 1199, 1148, 1127, 1158, 1239, 1343, 1473, 1650, 1855, 2067, 2368, 2214, 1947, 1709, 1524, 1383, 1228, 1137, 1081, 1077, 1097, 1154, 1276, 1427, 1613, 1788, 2032, 2295, 2198, 1923, 1718, 1499, 1332, 1209, 1101, 1050, 1032, 1057, 1125, 1234, 1373, 1555, 1758, 1982, 2229, 2178, 1881, 1680, 1487, 1314, 1184, 1086, 1035, 1024, 1040, 1107, 1226, 1357, 1545, 1751, 1978, 2223, 2221, 1923, 1687, 1483, 1327, 1188, 1090, 1049, 1026, 1049, 1114, 1214, 1362, 1534, 1758, 1970, 2244, 2191, 1970, 1700, 1517, 1355, 1215, 1129, 1072, 1042, 1072, 1139, 1250, 1391, 1574, 1778, 2006, 2303, 2333, 2016, 1766, 1562, 1402, 1267, 1166, 1121, 1105, 1121, 1190, 1306, 1438, 1602, 1809, 2074, 2324, 2306, 2060, 1824, 1634, 1464, 1336, 1248, 1177, 1174, 1192, 1263, 1377, 1500, 1671, 1881, 2114, 2377, 2407, 2174, 1888, 1690, 1569, 1421, 1333, 1277, 1264, 1297, 1352, 1454, 1599, 1766, 1950, 2189, 2398, 2503, 2298, 1990, 1808, 1650, 1534, 1443, 1379, 1383, 1393, 1465, 1560, 1714, 1864, 2053, 2323, 2452, 2523, 2386, 2149, 1943, 1764, 1670, 1563, 1522, 1516, 1532, 1581, 1709, 1822, 2009, 2217, 2386, 2578, 2692, 2584, 2382, 2131, 1956, 1824, 1745, 1712, 1663, 1708, 1783, 1876, 1974, 2213, 2448, 2530, 2911]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2572, 2237, 2192, 1997, 1877, 1759, 1719, 1652, 1637, 1652, 1707, 1794, 1933, 2091, 2203, 2373, 2765, 2364, 2206, 2025, 1853, 1737, 1641, 1579, 1564, 1529, 1558, 1606, 1695, 1763, 1940, 2132, 2288, 2418, 2275, 2119, 1896, 1739, 1625, 1531, 1472, 1440, 1419, 1435, 1500, 1557, 1677, 1821, 2005, 2171, 2312, 2256, 2027, 1802, 1666, 1550, 1433, 1363, 1316, 1310, 1324, 1384, 1460, 1576, 1728, 1875, 2113, 2245, 2199, 1915, 1733, 1574, 1457, 1352, 1261, 1214, 1205, 1230, 1296, 1388, 1499, 1653, 1780, 2026, 2188, 2080, 1871, 1717, 1530, 1392, 1260, 1189, 1124, 1132, 1147, 1211, 1310, 1431, 1571, 1763, 1960, 2162, 2024, 1805, 1626, 1476, 1324, 1210, 1127, 1084, 1080, 1092, 1158, 1255, 1392, 1539, 1698, 1872, 2100, 2022, 1810, 1613, 1456, 1304, 1186, 1103, 1048, 1038, 1050, 1111, 1221, 1361, 1522, 1671, 1832, 2088, 2024, 1776, 1619, 1430, 1297, 1172, 1090, 1048, 1024, 1048, 1084, 1192, 1342, 1480, 1654, 1848, 2032, 2059, 1810, 1641, 1425, 1293, 1174, 1087, 1053, 1024, 1055, 1117, 1196, 1326, 1484, 1625, 1854, 2059, 2100, 1827, 1649, 1476, 1336, 1200, 1105, 1060, 1058, 1070, 1130, 1223, 1359, 1486, 1668, 1888, 2100, 2110, 1887, 1679, 1535, 1368, 1253, 1180, 1107, 1090, 1110, 1174, 1267, 1401, 1535, 1691, 1903, 2120, 2167, 1906, 1726, 1559, 1435, 1310, 1241, 1180, 1157, 1191, 1254, 1332, 1452, 1607, 1773, 1973, 2199, 2269, 1990, 1780, 1631, 1500, 1378, 1309, 1263, 1240, 1280, 1328, 1428, 1540, 1696, 1852, 2064, 2245, 2287, 2080, 1873, 1701, 1591, 1478, 1405, 1363, 1346, 1384, 1426, 1516, 1648, 1759, 1920, 2129, 2275, 2288, 2195, 2015, 1823, 1680, 1608, 1518, 1470, 1480, 1503, 1537, 1613, 1711, 1891, 2053, 2240, 2377, 2421, 2308, 2192, 1989, 1839, 1753, 1652, 1664, 1637, 1629, 1675, 1787, 1909, 2091, 2203, 2386, 2691]
                                       }
                                   }, {
                                       "name":    "2592x1944_D75_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4295, 3675, 3344, 3044, 2701, 2471, 2278, 2180, 2180, 2228, 2371, 2565, 2832, 3090, 3579, 3923, 4918, 3923, 3316, 2977, 2581, 2317, 2113, 1970, 1896, 1879, 1914, 2039, 2228, 2442, 2813, 3162, 3517, 4251, 3579, 3113, 2701, 2343, 2080, 1853, 1735, 1671, 1657, 1692, 1788, 1960, 2204, 2502, 2872, 3344, 3849, 3487, 2913, 2427, 2124, 1896, 1664, 1538, 1440, 1451, 1499, 1605, 1765, 1979, 2317, 2631, 3113, 3643, 3263, 2683, 2265, 1951, 1706, 1521, 1382, 1302, 1298, 1350, 1445, 1631, 1853, 2102, 2471, 2913, 3457, 3090, 2549, 2169, 1845, 1611, 1391, 1270, 1192, 1188, 1217, 1328, 1499, 1720, 1989, 2343, 2774, 3344, 3044, 2471, 2070, 1757, 1499, 1302, 1192, 1123, 1107, 1148, 1243, 1401, 1599, 1914, 2240, 2648, 3237, 2892, 2399, 2039, 1706, 1440, 1258, 1135, 1067, 1061, 1084, 1178, 1332, 1544, 1796, 2146, 2597, 3138, 2934, 2371, 1989, 1684, 1410, 1217, 1114, 1042, 1042, 1050, 1148, 1315, 1521, 1796, 2124, 2549, 3162, 2934, 2371, 2008, 1650, 1425, 1243, 1099, 1056, 1024, 1061, 1171, 1294, 1499, 1780, 2157, 2597, 3067, 3044, 2471, 2080, 1720, 1461, 1262, 1155, 1084, 1070, 1105, 1206, 1354, 1562, 1862, 2192, 2665, 3162, 3113, 2597, 2102, 1796, 1538, 1345, 1217, 1151, 1126, 1168, 1258, 1440, 1644, 1914, 2265, 2737, 3263, 3263, 2683, 2240, 1923, 1618, 1435, 1328, 1250, 1213, 1278, 1354, 1538, 1750, 2008, 2357, 2852, 3399, 3428, 2832, 2371, 2039, 1773, 1599, 1445, 1354, 1350, 1396, 1499, 1664, 1887, 2169, 2565, 3067, 3517, 3579, 3044, 2565, 2253, 1970, 1735, 1605, 1521, 1527, 1568, 1678, 1828, 2070, 2371, 2756, 3212, 3643, 3778, 3289, 2872, 2457, 2192, 1970, 1845, 1773, 1735, 1780, 1887, 2113, 2291, 2648, 3044, 3487, 3961, 4163, 3643, 3289, 2813, 2517, 2291, 2113, 2008, 1999, 2049, 2216, 2343, 2631, 3067, 3399, 3778, 4638]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3473, 2970, 2656, 2401, 2177, 1985, 1891, 1850, 1820, 1875, 1951, 2096, 2249, 2536, 2764, 3037, 3893, 3092, 2810, 2462, 2205, 1991, 1835, 1749, 1692, 1672, 1718, 1786, 1896, 2045, 2319, 2594, 2882, 3256, 2997, 2594, 2280, 2003, 1830, 1676, 1571, 1521, 1518, 1549, 1627, 1758, 1902, 2083, 2393, 2731, 3051, 2787, 2453, 2129, 1845, 1676, 1532, 1422, 1376, 1354, 1396, 1481, 1585, 1740, 1946, 2198, 2565, 2919, 2719, 2287, 1980, 1749, 1574, 1428, 1309, 1268, 1231, 1268, 1354, 1462, 1631, 1805, 2071, 2393, 2764, 2536, 2184, 1860, 1655, 1478, 1327, 1233, 1175, 1145, 1181, 1258, 1373, 1528, 1718, 1957, 2303, 2666, 2462, 2103, 1805, 1597, 1419, 1251, 1151, 1110, 1088, 1111, 1177, 1314, 1456, 1643, 1907, 2205, 2635, 2410, 2058, 1777, 1542, 1357, 1220, 1119, 1071, 1054, 1078, 1140, 1256, 1404, 1620, 1840, 2163, 2625, 2444, 2027, 1727, 1514, 1330, 1196, 1102, 1043, 1024, 1049, 1124, 1231, 1384, 1597, 1825, 2143, 2546, 2444, 2064, 1754, 1528, 1362, 1202, 1108, 1053, 1037, 1054, 1119, 1242, 1387, 1593, 1830, 2136, 2585, 2489, 2109, 1796, 1567, 1384, 1240, 1147, 1081, 1059, 1086, 1157, 1272, 1419, 1620, 1870, 2184, 2585, 2565, 2177, 1860, 1635, 1443, 1287, 1185, 1119, 1115, 1132, 1204, 1317, 1478, 1672, 1940, 2257, 2625, 2635, 2242, 1923, 1688, 1514, 1357, 1251, 1207, 1183, 1207, 1284, 1387, 1556, 1745, 2003, 2335, 2742, 2798, 2376, 2015, 1786, 1608, 1446, 1362, 1299, 1270, 1309, 1373, 1488, 1651, 1850, 2122, 2480, 2845, 2983, 2555, 2156, 1929, 1740, 1585, 1478, 1416, 1404, 1446, 1501, 1620, 1772, 1991, 2287, 2604, 2919, 3078, 2753, 2401, 2090, 1896, 1731, 1651, 1585, 1567, 1582, 1680, 1801, 1946, 2198, 2471, 2798, 3210, 3304, 3023, 2709, 2376, 2184, 1968, 1860, 1768, 1782, 1791, 1855, 1968, 2184, 2436, 2822, 3092, 3622]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3453, 2902, 2650, 2387, 2143, 1962, 1890, 1824, 1829, 1829, 1906, 2064, 2229, 2475, 2748, 3032, 3848, 3074, 2782, 2457, 2157, 1956, 1814, 1725, 1662, 1653, 1670, 1752, 1880, 2027, 2259, 2540, 2865, 3237, 2953, 2619, 2266, 1979, 1795, 1662, 1569, 1512, 1505, 1512, 1602, 1717, 1859, 2077, 2345, 2714, 3005, 2828, 2378, 2077, 1854, 1666, 1529, 1423, 1354, 1338, 1390, 1450, 1565, 1717, 1912, 2207, 2530, 2902, 2703, 2266, 1951, 1712, 1547, 1396, 1301, 1235, 1223, 1269, 1335, 1453, 1598, 1790, 2064, 2404, 2770, 2629, 2178, 1880, 1662, 1447, 1314, 1212, 1152, 1140, 1168, 1253, 1362, 1516, 1717, 1951, 2282, 2661, 2512, 2123, 1790, 1580, 1411, 1246, 1144, 1099, 1080, 1118, 1174, 1294, 1460, 1666, 1885, 2214, 2559, 2512, 2084, 1776, 1547, 1357, 1210, 1098, 1055, 1040, 1070, 1129, 1255, 1411, 1618, 1859, 2150, 2530, 2502, 2033, 1752, 1522, 1330, 1193, 1087, 1040, 1024, 1045, 1108, 1226, 1382, 1580, 1834, 2150, 2569, 2530, 2077, 1790, 1509, 1340, 1189, 1101, 1046, 1030, 1058, 1110, 1230, 1387, 1591, 1819, 2137, 2559, 2493, 2110, 1804, 1580, 1365, 1235, 1135, 1068, 1050, 1075, 1150, 1267, 1408, 1629, 1859, 2192, 2599, 2640, 2192, 1875, 1606, 1441, 1282, 1180, 1121, 1119, 1127, 1212, 1322, 1485, 1662, 1934, 2251, 2650, 2671, 2305, 1934, 1699, 1509, 1362, 1258, 1191, 1168, 1204, 1272, 1399, 1565, 1748, 2021, 2345, 2693, 2828, 2404, 2046, 1795, 1610, 1463, 1351, 1289, 1272, 1296, 1376, 1502, 1657, 1854, 2110, 2457, 2770, 2979, 2569, 2185, 1934, 1739, 1576, 1485, 1414, 1402, 1423, 1499, 1610, 1776, 1997, 2259, 2629, 2940, 3046, 2759, 2412, 2110, 1859, 1734, 1633, 1580, 1554, 1580, 1666, 1771, 1951, 2164, 2475, 2782, 3131, 3237, 3046, 2759, 2421, 2164, 1956, 1849, 1795, 1776, 1809, 1880, 2003, 2178, 2475, 2759, 3074, 3720]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3092, 2667, 2470, 2191, 1984, 1846, 1800, 1720, 1714, 1714, 1813, 1887, 2048, 2291, 2483, 2769, 3383, 2800, 2533, 2260, 2040, 1839, 1714, 1636, 1585, 1589, 1600, 1652, 1762, 1866, 2074, 2333, 2625, 2897, 2639, 2411, 2048, 1866, 1680, 1575, 1504, 1435, 1415, 1473, 1527, 1610, 1750, 1916, 2172, 2483, 2724, 2598, 2260, 1923, 1714, 1560, 1452, 1365, 1319, 1312, 1319, 1392, 1482, 1641, 1787, 2008, 2333, 2611, 2483, 2091, 1839, 1625, 1478, 1354, 1247, 1214, 1191, 1211, 1299, 1404, 1509, 1702, 1894, 2201, 2483, 2344, 2024, 1774, 1580, 1407, 1256, 1191, 1137, 1120, 1140, 1200, 1316, 1456, 1615, 1826, 2109, 2389, 2280, 1931, 1702, 1527, 1358, 1229, 1145, 1091, 1074, 1091, 1156, 1247, 1396, 1570, 1774, 2016, 2389, 2230, 1931, 1669, 1486, 1312, 1191, 1095, 1039, 1035, 1039, 1115, 1223, 1344, 1541, 1726, 1992, 2312, 2220, 1909, 1652, 1465, 1312, 1177, 1083, 1045, 1024, 1047, 1093, 1191, 1347, 1509, 1697, 1968, 2250, 2230, 1902, 1685, 1460, 1282, 1172, 1091, 1032, 1028, 1043, 1107, 1197, 1329, 1513, 1680, 1984, 2260, 2322, 1984, 1708, 1509, 1340, 1191, 1130, 1067, 1052, 1067, 1130, 1223, 1377, 1522, 1738, 2016, 2280, 2389, 2032, 1744, 1546, 1396, 1250, 1169, 1105, 1093, 1110, 1174, 1285, 1407, 1589, 1793, 2048, 2355, 2423, 2091, 1800, 1605, 1452, 1312, 1223, 1169, 1145, 1177, 1260, 1362, 1482, 1669, 1873, 2126, 2458, 2520, 2201, 1902, 1714, 1532, 1404, 1312, 1253, 1256, 1266, 1333, 1423, 1560, 1738, 1923, 2240, 2571, 2667, 2366, 2000, 1774, 1636, 1509, 1419, 1373, 1358, 1392, 1444, 1536, 1680, 1826, 2100, 2377, 2625, 2754, 2520, 2220, 1923, 1774, 1652, 1570, 1504, 1500, 1522, 1565, 1674, 1806, 2008, 2270, 2545, 2754, 2880, 2667, 2507, 2154, 1984, 1832, 1744, 1702, 1697, 1674, 1781, 1866, 2048, 2312, 2545, 2754, 3406]
                                       }
                                   }, {
                                       "name":    "2592x1944_D75_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3314, 3004, 2842, 2670, 2433, 2270, 2122, 2046, 2050, 2089, 2203, 2351, 2544, 2707, 3026, 3189, 3750, 3134, 2790, 2601, 2330, 2142, 1989, 1876, 1817, 1805, 1834, 1938, 2090, 2251, 2525, 2750, 2945, 3372, 2937, 2677, 2413, 2158, 1960, 1777, 1680, 1627, 1616, 1647, 1729, 1874, 2070, 2295, 2555, 2860, 3140, 2912, 2552, 2211, 1990, 1813, 1617, 1508, 1420, 1432, 1476, 1571, 1711, 1889, 2160, 2384, 2714, 3031, 2772, 2390, 2092, 1852, 1652, 1492, 1367, 1293, 1290, 1339, 1427, 1596, 1787, 1987, 2270, 2579, 2923, 2660, 2297, 2023, 1767, 1572, 1374, 1263, 1189, 1185, 1213, 1319, 1478, 1673, 1898, 2175, 2484, 2861, 2639, 2243, 1945, 1694, 1471, 1292, 1189, 1122, 1106, 1147, 1239, 1387, 1565, 1837, 2095, 2392, 2794, 2527, 2189, 1923, 1651, 1418, 1251, 1133, 1067, 1061, 1084, 1176, 1322, 1516, 1733, 2018, 2357, 2725, 2564, 2168, 1880, 1632, 1390, 1211, 1113, 1042, 1042, 1050, 1146, 1307, 1496, 1735, 2000, 2319, 2747, 2561, 2166, 1896, 1599, 1404, 1236, 1098, 1056, 1024, 1061, 1169, 1286, 1474, 1719, 2028, 2357, 2668, 2639, 2243, 1954, 1660, 1436, 1253, 1152, 1083, 1070, 1104, 1202, 1342, 1531, 1790, 2053, 2407, 2734, 2678, 2337, 1964, 1723, 1504, 1330, 1211, 1148, 1124, 1165, 1251, 1421, 1602, 1830, 2107, 2453, 2797, 2772, 2390, 2071, 1827, 1571, 1411, 1315, 1243, 1207, 1270, 1340, 1508, 1692, 1903, 2171, 2529, 2878, 2866, 2486, 2164, 1916, 1702, 1557, 1421, 1338, 1335, 1378, 1472, 1617, 1805, 2030, 2328, 2676, 2935, 2937, 2622, 2300, 2081, 1863, 1669, 1560, 1487, 1495, 1531, 1628, 1754, 1951, 2183, 2458, 2755, 2985, 3028, 2769, 2516, 2226, 2034, 1862, 1764, 1705, 1673, 1712, 1801, 1989, 2120, 2386, 2655, 2922, 3161, 3221, 2980, 2799, 2481, 2279, 2115, 1977, 1894, 1889, 1931, 2068, 2159, 2375, 2688, 2885, 3080, 3554]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2738, 2477, 2303, 2146, 1993, 1851, 1783, 1755, 1730, 1777, 1836, 1947, 2054, 2256, 2387, 2527, 3032, 2529, 2400, 2185, 2015, 1860, 1742, 1677, 1632, 1616, 1655, 1710, 1796, 1907, 2110, 2292, 2456, 2648, 2501, 2266, 2064, 1866, 1739, 1616, 1529, 1487, 1486, 1513, 1581, 1690, 1803, 1935, 2158, 2375, 2542, 2375, 2180, 1959, 1745, 1614, 1495, 1399, 1359, 1339, 1378, 1455, 1544, 1672, 1834, 2017, 2270, 2476, 2347, 2064, 1847, 1672, 1530, 1405, 1297, 1260, 1225, 1260, 1340, 1437, 1583, 1722, 1925, 2151, 2382, 2221, 1992, 1753, 1595, 1448, 1313, 1227, 1172, 1143, 1178, 1251, 1357, 1494, 1652, 1838, 2091, 2324, 2174, 1933, 1712, 1548, 1396, 1243, 1148, 1109, 1088, 1110, 1174, 1303, 1431, 1590, 1802, 2019, 2312, 2139, 1900, 1691, 1500, 1339, 1214, 1118, 1071, 1054, 1078, 1138, 1249, 1384, 1572, 1747, 1989, 2312, 2169, 1876, 1648, 1475, 1314, 1191, 1101, 1043, 1024, 1049, 1123, 1225, 1366, 1552, 1735, 1974, 2251, 2166, 1905, 1671, 1487, 1344, 1196, 1107, 1053, 1037, 1054, 1118, 1235, 1368, 1547, 1738, 1966, 2280, 2196, 1938, 1704, 1520, 1363, 1232, 1145, 1080, 1059, 1085, 1154, 1263, 1396, 1569, 1769, 2001, 2272, 2244, 1986, 1753, 1577, 1415, 1275, 1180, 1117, 1114, 1130, 1199, 1304, 1448, 1611, 1823, 2053, 2292, 2282, 2027, 1798, 1617, 1475, 1338, 1241, 1201, 1178, 1201, 1273, 1366, 1514, 1668, 1867, 2103, 2365, 2384, 2117, 1862, 1693, 1553, 1415, 1342, 1286, 1259, 1295, 1353, 1454, 1592, 1749, 1953, 2202, 2420, 2491, 2235, 1962, 1802, 1659, 1533, 1443, 1389, 1379, 1417, 1464, 1565, 1687, 1856, 2070, 2274, 2443, 2519, 2356, 2136, 1918, 1778, 1650, 1589, 1534, 1520, 1532, 1615, 1712, 1822, 2009, 2192, 2391, 2615, 2620, 2517, 2344, 2125, 1999, 1837, 1756, 1682, 1697, 1702, 1752, 1837, 1999, 2174, 2433, 2568, 2843]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2724, 2426, 2298, 2134, 1964, 1831, 1782, 1732, 1738, 1736, 1796, 1919, 2037, 2206, 2375, 2523, 3001, 2516, 2379, 2181, 1974, 1830, 1724, 1655, 1604, 1598, 1612, 1680, 1782, 1892, 2060, 2248, 2443, 2634, 2469, 2286, 2053, 1845, 1708, 1603, 1527, 1479, 1474, 1479, 1558, 1653, 1764, 1930, 2118, 2361, 2507, 2407, 2119, 1915, 1753, 1605, 1492, 1400, 1338, 1324, 1372, 1425, 1525, 1651, 1804, 2025, 2242, 2463, 2335, 2046, 1822, 1639, 1506, 1375, 1289, 1228, 1217, 1261, 1322, 1428, 1553, 1708, 1919, 2160, 2387, 2295, 1987, 1771, 1602, 1419, 1301, 1206, 1149, 1138, 1165, 1246, 1347, 1483, 1651, 1833, 2074, 2320, 2214, 1950, 1699, 1532, 1388, 1238, 1142, 1098, 1080, 1117, 1171, 1284, 1435, 1611, 1782, 2027, 2252, 2221, 1922, 1690, 1505, 1339, 1204, 1097, 1055, 1040, 1070, 1127, 1248, 1390, 1570, 1764, 1978, 2236, 2215, 1881, 1670, 1483, 1314, 1188, 1086, 1040, 1024, 1045, 1107, 1220, 1364, 1536, 1743, 1980, 2269, 2236, 1916, 1702, 1470, 1323, 1184, 1100, 1046, 1030, 1058, 1109, 1224, 1368, 1545, 1728, 1967, 2259, 2199, 1939, 1711, 1532, 1345, 1227, 1133, 1068, 1050, 1074, 1147, 1258, 1386, 1577, 1759, 2008, 2284, 2304, 1999, 1766, 1551, 1413, 1270, 1175, 1119, 1117, 1125, 1206, 1309, 1454, 1602, 1818, 2048, 2311, 2310, 2079, 1807, 1627, 1471, 1343, 1248, 1186, 1164, 1198, 1262, 1377, 1522, 1671, 1882, 2111, 2327, 2407, 2140, 1889, 1701, 1555, 1431, 1332, 1276, 1261, 1283, 1356, 1467, 1597, 1753, 1943, 2183, 2362, 2488, 2246, 1986, 1807, 1658, 1525, 1450, 1388, 1378, 1396, 1462, 1556, 1691, 1861, 2047, 2294, 2459, 2495, 2361, 2145, 1935, 1746, 1653, 1573, 1530, 1508, 1530, 1602, 1686, 1826, 1980, 2195, 2379, 2557, 2573, 2534, 2383, 2162, 1982, 1826, 1746, 1706, 1691, 1718, 1773, 1867, 1994, 2206, 2383, 2555, 2911]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2472, 2251, 2157, 1975, 1831, 1732, 1703, 1640, 1636, 1634, 1715, 1767, 1885, 2056, 2167, 2327, 2675, 2316, 2187, 2022, 1876, 1729, 1635, 1575, 1534, 1540, 1548, 1590, 1678, 1752, 1905, 2081, 2258, 2387, 2233, 2121, 1872, 1748, 1606, 1524, 1467, 1407, 1390, 1443, 1488, 1556, 1668, 1791, 1975, 2178, 2297, 2230, 2024, 1785, 1630, 1509, 1421, 1345, 1305, 1299, 1305, 1371, 1448, 1583, 1694, 1857, 2083, 2240, 2163, 1902, 1726, 1561, 1442, 1335, 1238, 1208, 1186, 1205, 1287, 1382, 1471, 1630, 1773, 1993, 2163, 2069, 1859, 1678, 1527, 1381, 1246, 1186, 1135, 1118, 1138, 1195, 1303, 1427, 1559, 1724, 1929, 2105, 2028, 1788, 1621, 1484, 1339, 1222, 1143, 1090, 1074, 1090, 1153, 1239, 1374, 1523, 1685, 1860, 2116, 1994, 1793, 1595, 1449, 1297, 1186, 1094, 1039, 1035, 1039, 1114, 1217, 1327, 1499, 1646, 1844, 2060, 1988, 1775, 1581, 1430, 1297, 1173, 1082, 1045, 1024, 1047, 1092, 1186, 1330, 1471, 1621, 1826, 2012, 1994, 1768, 1609, 1425, 1268, 1167, 1090, 1032, 1028, 1043, 1106, 1192, 1313, 1473, 1605, 1838, 2018, 2062, 1833, 1626, 1467, 1322, 1185, 1128, 1067, 1052, 1067, 1128, 1216, 1356, 1479, 1653, 1860, 2028, 2105, 1865, 1652, 1497, 1371, 1240, 1165, 1103, 1092, 1108, 1170, 1273, 1381, 1536, 1695, 1879, 2078, 2116, 1902, 1692, 1543, 1418, 1295, 1215, 1164, 1141, 1172, 1250, 1343, 1446, 1600, 1755, 1931, 2143, 2171, 1976, 1767, 1630, 1484, 1376, 1295, 1242, 1246, 1254, 1315, 1394, 1509, 1651, 1785, 2007, 2210, 2254, 2086, 1832, 1669, 1567, 1464, 1389, 1349, 1336, 1367, 1412, 1489, 1606, 1714, 1915, 2095, 2223, 2283, 2177, 1990, 1778, 1673, 1580, 1516, 1461, 1459, 1477, 1511, 1600, 1700, 1849, 2030, 2196, 2283, 2323, 2251, 2186, 1945, 1831, 1720, 1654, 1624, 1621, 1599, 1687, 1749, 1885, 2073, 2216, 2316, 2691]
                                       }
                                   }, {
                                       "name":    "2592x1944_HZ_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5521, 4768, 4223, 3767, 3276, 2939, 2711, 2632, 2599, 2665, 2821, 3114, 3401, 3982, 4495, 4917, 6359, 4995, 4340, 3767, 3161, 2796, 2496, 2287, 2184, 2139, 2207, 2373, 2632, 2939, 3476, 3982, 4661, 5426, 4696, 4008, 3401, 2808, 2457, 2146, 1971, 1855, 1807, 1894, 2042, 2254, 2632, 3069, 3679, 4223, 4879, 4594, 3679, 3024, 2516, 2154, 1850, 1668, 1572, 1580, 1633, 1757, 1996, 2329, 2723, 3311, 4008, 4627, 4252, 3457, 2759, 2262, 1900, 1638, 1459, 1370, 1367, 1416, 1530, 1752, 2062, 2447, 2995, 3637, 4463, 4086, 3226, 2588, 2103, 1752, 1476, 1315, 1230, 1214, 1260, 1388, 1588, 1900, 2246, 2796, 3438, 4281, 3813, 3010, 2438, 1953, 1638, 1370, 1209, 1129, 1107, 1158, 1270, 1466, 1732, 2146, 2632, 3311, 4167, 3767, 2953, 2382, 1888, 1541, 1313, 1154, 1062, 1060, 1099, 1207, 1400, 1672, 2062, 2578, 3210, 4086, 3679, 2912, 2321, 1888, 1519, 1265, 1115, 1036, 1024, 1071, 1171, 1370, 1642, 2035, 2526, 3193, 3982, 3745, 2899, 2347, 1866, 1523, 1283, 1131, 1044, 1024, 1060, 1173, 1358, 1638, 1996, 2516, 3193, 4008, 3884, 3054, 2410, 1935, 1600, 1318, 1171, 1092, 1062, 1103, 1219, 1400, 1695, 2055, 2588, 3226, 3860, 4033, 3145, 2476, 2029, 1695, 1407, 1268, 1160, 1127, 1182, 1310, 1504, 1781, 2191, 2677, 3346, 4223, 4167, 3364, 2700, 2199, 1818, 1549, 1376, 1288, 1253, 1307, 1446, 1638, 1941, 2329, 2872, 3515, 4370, 4527, 3554, 2885, 2410, 2022, 1723, 1541, 1462, 1436, 1473, 1621, 1828, 2146, 2546, 3084, 3860, 4627, 4696, 3884, 3210, 2688, 2230, 1953, 1757, 1664, 1633, 1704, 1839, 2069, 2392, 2821, 3401, 3957, 4804, 4879, 4223, 3554, 2995, 2588, 2271, 2062, 1941, 1917, 2022, 2146, 2410, 2677, 3243, 3767, 4431, 5075, 5380, 4627, 4112, 3534, 3069, 2711, 2467, 2347, 2329, 2382, 2546, 2885, 3210, 3745, 4223, 4768, 5883]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3726, 3200, 2980, 2688, 2437, 2191, 2094, 2069, 2021, 2045, 2173, 2338, 2495, 2789, 3123, 3409, 4385, 3432, 3161, 2774, 2403, 2191, 1990, 1903, 1849, 1810, 1869, 1945, 2061, 2248, 2556, 2866, 3180, 3700, 3322, 2834, 2483, 2219, 1967, 1804, 1709, 1629, 1624, 1639, 1744, 1889, 2069, 2317, 2634, 2980, 3344, 3086, 2688, 2297, 2029, 1817, 1639, 1498, 1460, 1444, 1468, 1575, 1687, 1889, 2102, 2471, 2819, 3220, 2946, 2471, 2164, 1875, 1660, 1511, 1365, 1310, 1287, 1313, 1417, 1547, 1761, 1953, 2248, 2607, 3105, 2789, 2370, 2029, 1744, 1556, 1368, 1265, 1193, 1171, 1187, 1303, 1444, 1614, 1869, 2102, 2471, 3050, 2716, 2257, 1917, 1698, 1460, 1310, 1174, 1116, 1102, 1138, 1215, 1350, 1533, 1761, 2045, 2414, 2898, 2688, 2228, 1903, 1645, 1405, 1253, 1138, 1079, 1059, 1095, 1166, 1303, 1477, 1709, 1975, 2359, 2881, 2634, 2164, 1875, 1589, 1390, 1238, 1114, 1064, 1024, 1070, 1141, 1271, 1452, 1676, 1931, 2328, 2774, 2661, 2228, 1869, 1624, 1394, 1241, 1119, 1057, 1047, 1072, 1158, 1281, 1436, 1671, 1953, 2317, 2730, 2730, 2257, 1945, 1650, 1440, 1268, 1158, 1104, 1072, 1102, 1169, 1310, 1464, 1709, 1998, 2349, 2834, 2759, 2359, 1982, 1738, 1511, 1340, 1212, 1148, 1128, 1156, 1256, 1365, 1561, 1779, 2077, 2425, 2914, 2819, 2425, 2094, 1804, 1609, 1413, 1306, 1235, 1218, 1259, 1330, 1481, 1660, 1889, 2209, 2531, 3015, 3123, 2582, 2209, 1938, 1721, 1570, 1420, 1361, 1330, 1372, 1460, 1599, 1761, 1998, 2297, 2702, 3105, 3280, 2834, 2359, 2086, 1889, 1693, 1575, 1520, 1473, 1529, 1599, 1715, 1924, 2164, 2495, 2866, 3142, 3365, 2997, 2607, 2307, 2069, 1875, 1785, 1693, 1693, 1709, 1773, 1953, 2128, 2359, 2745, 3068, 3455, 3501, 3280, 2997, 2661, 2392, 2146, 2045, 1938, 1938, 1975, 2069, 2164, 2403, 2661, 3123, 3387, 3952]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3786, 3242, 2913, 2632, 2367, 2160, 2033, 1934, 1906, 1994, 2065, 2234, 2411, 2788, 3069, 3368, 4218, 3435, 3051, 2715, 2378, 2125, 1956, 1838, 1769, 1739, 1806, 1871, 2033, 2244, 2517, 2849, 3221, 3628, 3346, 2897, 2469, 2178, 1956, 1781, 1645, 1595, 1571, 1625, 1711, 1858, 2041, 2294, 2619, 3033, 3390, 3201, 2686, 2314, 2025, 1812, 1615, 1498, 1428, 1420, 1448, 1538, 1683, 1878, 2160, 2457, 2833, 3304, 3015, 2529, 2142, 1871, 1667, 1476, 1343, 1292, 1276, 1315, 1412, 1538, 1722, 1934, 2304, 2659, 3124, 2849, 2389, 2073, 1769, 1556, 1386, 1264, 1197, 1172, 1208, 1296, 1428, 1625, 1871, 2169, 2567, 3051, 2818, 2335, 1978, 1683, 1476, 1296, 1180, 1129, 1112, 1124, 1214, 1350, 1561, 1806, 2049, 2481, 2930, 2773, 2325, 1927, 1661, 1452, 1261, 1144, 1084, 1064, 1089, 1180, 1296, 1498, 1739, 2033, 2411, 2930, 2773, 2274, 1927, 1625, 1412, 1249, 1119, 1053, 1024, 1073, 1144, 1280, 1468, 1739, 2049, 2400, 2865, 2803, 2294, 1913, 1651, 1404, 1222, 1131, 1060, 1047, 1073, 1157, 1299, 1476, 1733, 2057, 2400, 2913, 2849, 2346, 1971, 1672, 1448, 1270, 1162, 1095, 1071, 1102, 1188, 1312, 1507, 1757, 2065, 2411, 2930, 2963, 2446, 2041, 1769, 1520, 1332, 1228, 1139, 1141, 1178, 1252, 1404, 1575, 1825, 2133, 2517, 3015, 3051, 2592, 2133, 1819, 1615, 1440, 1292, 1234, 1214, 1258, 1325, 1485, 1672, 1927, 2206, 2632, 3033, 3182, 2686, 2244, 1941, 1722, 1566, 1420, 1357, 1332, 1367, 1452, 1610, 1806, 2033, 2367, 2758, 3162, 3390, 2881, 2446, 2099, 1885, 1699, 1561, 1494, 1489, 1502, 1610, 1739, 1949, 2215, 2517, 2946, 3368, 3481, 3015, 2686, 2294, 2041, 1871, 1728, 1677, 1661, 1672, 1775, 1920, 2099, 2423, 2788, 3069, 3505, 3815, 3390, 3087, 2606, 2304, 2125, 1994, 1913, 1949, 1913, 2009, 2187, 2423, 2773, 3087, 3412, 4022]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3128, 2839, 2636, 2365, 2145, 2005, 1921, 1882, 1790, 1808, 1901, 2027, 2222, 2493, 2599, 2883, 3929, 3025, 2599, 2335, 2096, 1941, 1826, 1740, 1707, 1661, 1676, 1790, 1882, 1983, 2277, 2527, 2839, 3182, 2976, 2460, 2145, 1962, 1826, 1676, 1590, 1499, 1463, 1563, 1603, 1723, 1844, 2072, 2306, 2636, 2929, 2713, 2365, 2049, 1826, 1692, 1511, 1418, 1376, 1356, 1397, 1487, 1590, 1707, 1921, 2170, 2493, 2883, 2527, 2196, 1983, 1723, 1563, 1418, 1298, 1254, 1254, 1280, 1356, 1511, 1632, 1790, 2027, 2335, 2839, 2493, 2072, 1808, 1646, 1452, 1326, 1197, 1152, 1152, 1159, 1237, 1376, 1549, 1790, 2005, 2249, 2563, 2460, 2072, 1756, 1590, 1386, 1246, 1167, 1110, 1072, 1097, 1189, 1336, 1524, 1692, 1921, 2222, 2527, 2396, 2049, 1790, 1576, 1366, 1205, 1117, 1047, 1047, 1065, 1124, 1271, 1452, 1661, 1844, 2145, 2563, 2335, 2027, 1756, 1537, 1346, 1205, 1097, 1041, 1024, 1030, 1131, 1246, 1429, 1646, 1790, 2120, 2460, 2427, 1941, 1773, 1524, 1346, 1189, 1117, 1030, 1024, 1053, 1145, 1263, 1418, 1646, 1844, 2145, 2460, 2493, 2072, 1826, 1563, 1376, 1221, 1104, 1053, 1059, 1072, 1174, 1271, 1440, 1617, 1882, 2170, 2460, 2563, 2096, 1826, 1617, 1440, 1280, 1189, 1110, 1117, 1145, 1237, 1336, 1511, 1756, 1921, 2222, 2636, 2636, 2222, 1921, 1692, 1511, 1376, 1237, 1182, 1174, 1221, 1326, 1407, 1590, 1790, 2049, 2396, 2674, 2713, 2249, 1983, 1756, 1603, 1487, 1356, 1298, 1289, 1317, 1397, 1563, 1692, 1844, 2120, 2427, 2839, 2795, 2460, 2120, 1882, 1740, 1603, 1463, 1429, 1429, 1429, 1537, 1661, 1808, 1983, 2222, 2563, 2883, 2976, 2636, 2277, 2049, 1882, 1723, 1632, 1632, 1576, 1632, 1646, 1790, 1962, 2170, 2427, 2674, 3128, 3076, 2713, 2527, 2170, 2072, 1962, 1790, 1808, 1773, 1826, 1844, 2072, 2120, 2599, 2754, 2976, 3550]
                                       }
                                   }, {
                                       "name":    "2592x1944_HZ_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4172, 3820, 3530, 3259, 2917, 2672, 2501, 2446, 2422, 2475, 2597, 2823, 3022, 3434, 3744, 3931, 4759, 3914, 3579, 3239, 2817, 2557, 2328, 2162, 2079, 2042, 2100, 2239, 2448, 2681, 3081, 3412, 3827, 4227, 3774, 3385, 2993, 2558, 2295, 2043, 1898, 1799, 1756, 1835, 1964, 2141, 2450, 2783, 3223, 3555, 3911, 3760, 3171, 2716, 2334, 2047, 1789, 1631, 1545, 1555, 1604, 1715, 1925, 2205, 2516, 2959, 3437, 3785, 3544, 3027, 2518, 2130, 1831, 1603, 1441, 1359, 1357, 1403, 1509, 1710, 1980, 2295, 2721, 3175, 3709, 3448, 2862, 2388, 2001, 1703, 1456, 1306, 1226, 1211, 1255, 1377, 1563, 1841, 2130, 2570, 3038, 3603, 3254, 2697, 2269, 1873, 1602, 1357, 1205, 1128, 1106, 1157, 1265, 1450, 1691, 2049, 2440, 2951, 3538, 3231, 2659, 2227, 1818, 1514, 1304, 1152, 1062, 1060, 1099, 1204, 1388, 1638, 1978, 2400, 2877, 3487, 3164, 2627, 2175, 1820, 1494, 1258, 1114, 1036, 1024, 1071, 1169, 1360, 1610, 1955, 2357, 2866, 3408, 3213, 2613, 2196, 1798, 1497, 1275, 1129, 1044, 1024, 1060, 1171, 1348, 1605, 1917, 2346, 2862, 3425, 3311, 2735, 2245, 1857, 1566, 1307, 1168, 1091, 1062, 1102, 1215, 1386, 1656, 1966, 2401, 2879, 3292, 3406, 2794, 2291, 1934, 1650, 1390, 1261, 1157, 1125, 1179, 1302, 1482, 1730, 2081, 2466, 2962, 3557, 3478, 2950, 2467, 2074, 1755, 1519, 1361, 1279, 1246, 1298, 1428, 1603, 1868, 2190, 2615, 3075, 3636, 3709, 3070, 2599, 2241, 1928, 1672, 1511, 1441, 1417, 1451, 1587, 1769, 2040, 2361, 2767, 3318, 3785, 3774, 3287, 2834, 2455, 2093, 1867, 1701, 1621, 1594, 1658, 1776, 1973, 2237, 2570, 2993, 3345, 3855, 3829, 3489, 3067, 2677, 2377, 2129, 1959, 1858, 1839, 1932, 2035, 2252, 2454, 2885, 3239, 3650, 3972, 4073, 3714, 3443, 3069, 2743, 2476, 2287, 2194, 2182, 2225, 2357, 2626, 2861, 3241, 3530, 3820, 4425]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2915, 2649, 2557, 2380, 2212, 2029, 1961, 1948, 1909, 1927, 2030, 2155, 2260, 2462, 2669, 2805, 3377, 2776, 2671, 2437, 2181, 2033, 1880, 1816, 1775, 1742, 1793, 1854, 1943, 2083, 2309, 2511, 2685, 2971, 2745, 2456, 2232, 2052, 1860, 1732, 1656, 1588, 1585, 1597, 1689, 1809, 1951, 2136, 2357, 2572, 2761, 2604, 2370, 2101, 1907, 1742, 1594, 1471, 1439, 1425, 1447, 1543, 1638, 1807, 1971, 2248, 2476, 2707, 2524, 2215, 2005, 1784, 1610, 1483, 1351, 1301, 1279, 1304, 1401, 1517, 1703, 1854, 2078, 2327, 2649, 2421, 2147, 1901, 1676, 1520, 1352, 1258, 1190, 1169, 1184, 1295, 1425, 1574, 1789, 1964, 2232, 2628, 2377, 2063, 1811, 1640, 1435, 1300, 1171, 1115, 1101, 1137, 1211, 1338, 1503, 1698, 1923, 2195, 2523, 2363, 2044, 1803, 1595, 1385, 1246, 1136, 1079, 1059, 1095, 1164, 1294, 1453, 1654, 1866, 2155, 2518, 2322, 1992, 1779, 1544, 1371, 1232, 1113, 1064, 1024, 1070, 1139, 1264, 1430, 1624, 1829, 2131, 2435, 2341, 2044, 1772, 1575, 1374, 1234, 1118, 1057, 1047, 1072, 1156, 1273, 1414, 1619, 1847, 2120, 2397, 2388, 2063, 1835, 1596, 1416, 1259, 1155, 1103, 1072, 1101, 1166, 1300, 1438, 1650, 1882, 2140, 2472, 2398, 2138, 1860, 1670, 1478, 1326, 1206, 1146, 1126, 1153, 1249, 1350, 1525, 1708, 1943, 2193, 2520, 2425, 2177, 1945, 1721, 1563, 1391, 1294, 1228, 1212, 1251, 1317, 1455, 1610, 1797, 2044, 2265, 2578, 2633, 2284, 2027, 1827, 1655, 1530, 1397, 1345, 1316, 1355, 1435, 1557, 1691, 1879, 2101, 2381, 2619, 2713, 2456, 2130, 1937, 1791, 1631, 1533, 1486, 1444, 1495, 1555, 1651, 1822, 2004, 2242, 2481, 2610, 2727, 2544, 2302, 2100, 1928, 1778, 1709, 1633, 1635, 1647, 1699, 1847, 1979, 2144, 2413, 2599, 2793, 2758, 2709, 2570, 2358, 2174, 1990, 1918, 1832, 1835, 1865, 1939, 2005, 2183, 2358, 2669, 2788, 3074]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2957, 2680, 2504, 2334, 2153, 2002, 1907, 1829, 1807, 1882, 1935, 2066, 2190, 2461, 2626, 2774, 3260, 2778, 2586, 2389, 2160, 1976, 1850, 1757, 1702, 1677, 1736, 1787, 1918, 2079, 2276, 2497, 2717, 2919, 2763, 2506, 2221, 2017, 1850, 1711, 1597, 1556, 1536, 1584, 1658, 1781, 1926, 2116, 2345, 2614, 2796, 2692, 2368, 2115, 1903, 1737, 1572, 1471, 1408, 1402, 1427, 1508, 1635, 1797, 2022, 2236, 2487, 2771, 2578, 2263, 1986, 1781, 1616, 1450, 1330, 1283, 1269, 1306, 1396, 1508, 1667, 1837, 2126, 2370, 2663, 2469, 2163, 1939, 1698, 1520, 1370, 1257, 1194, 1170, 1204, 1288, 1410, 1585, 1791, 2023, 2312, 2629, 2459, 2129, 1864, 1626, 1450, 1286, 1177, 1128, 1111, 1123, 1210, 1338, 1530, 1739, 1927, 2252, 2548, 2431, 2127, 1824, 1609, 1429, 1254, 1142, 1084, 1064, 1089, 1178, 1288, 1473, 1681, 1918, 2199, 2557, 2434, 2085, 1825, 1577, 1392, 1242, 1118, 1053, 1024, 1073, 1142, 1273, 1445, 1682, 1934, 2192, 2508, 2455, 2100, 1811, 1600, 1384, 1216, 1129, 1060, 1047, 1073, 1155, 1290, 1452, 1676, 1939, 2190, 2544, 2484, 2138, 1858, 1616, 1423, 1261, 1159, 1094, 1071, 1101, 1185, 1302, 1479, 1694, 1941, 2193, 2548, 2559, 2211, 1911, 1698, 1487, 1318, 1222, 1137, 1139, 1175, 1245, 1387, 1538, 1749, 1991, 2270, 2600, 2606, 2315, 1979, 1734, 1568, 1416, 1281, 1227, 1208, 1250, 1312, 1458, 1621, 1831, 2041, 2348, 2592, 2678, 2368, 2056, 1829, 1656, 1526, 1397, 1341, 1318, 1350, 1427, 1567, 1732, 1910, 2160, 2426, 2663, 2796, 2493, 2202, 1949, 1787, 1637, 1520, 1462, 1459, 1470, 1565, 1673, 1844, 2048, 2261, 2545, 2779, 2812, 2558, 2366, 2089, 1904, 1774, 1658, 1618, 1606, 1614, 1700, 1818, 1954, 2198, 2448, 2600, 2829, 2978, 2791, 2640, 2313, 2100, 1972, 1873, 1810, 1845, 1810, 1886, 2025, 2200, 2449, 2640, 2807, 3123]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2497, 2379, 2287, 2116, 1966, 1868, 1809, 1783, 1704, 1717, 1792, 1887, 2031, 2221, 2258, 2412, 3058, 2480, 2238, 2082, 1923, 1817, 1734, 1669, 1645, 1606, 1617, 1714, 1784, 1854, 2075, 2237, 2423, 2594, 2486, 2160, 1952, 1831, 1735, 1616, 1546, 1467, 1435, 1527, 1558, 1659, 1751, 1925, 2086, 2299, 2451, 2318, 2109, 1891, 1728, 1629, 1475, 1395, 1359, 1341, 1379, 1460, 1549, 1642, 1812, 1994, 2212, 2449, 2197, 1989, 1850, 1649, 1520, 1395, 1287, 1247, 1247, 1272, 1342, 1483, 1584, 1708, 1887, 2103, 2441, 2187, 1899, 1708, 1587, 1423, 1312, 1192, 1149, 1150, 1156, 1231, 1360, 1514, 1717, 1880, 2046, 2243, 2172, 1907, 1669, 1541, 1365, 1238, 1164, 1109, 1072, 1096, 1186, 1325, 1495, 1634, 1814, 2033, 2226, 2128, 1893, 1702, 1531, 1348, 1199, 1116, 1047, 1047, 1065, 1123, 1263, 1429, 1609, 1750, 1974, 2262, 2081, 1876, 1674, 1496, 1329, 1200, 1096, 1041, 1024, 1030, 1130, 1240, 1408, 1597, 1704, 1955, 2182, 2153, 1801, 1687, 1484, 1329, 1184, 1116, 1030, 1024, 1053, 1143, 1256, 1397, 1596, 1750, 1974, 2179, 2199, 1907, 1730, 1517, 1355, 1214, 1102, 1053, 1059, 1071, 1171, 1262, 1416, 1566, 1780, 1990, 2172, 2243, 1919, 1724, 1561, 1412, 1268, 1184, 1108, 1115, 1143, 1231, 1322, 1478, 1687, 1807, 2024, 2300, 2282, 2010, 1796, 1621, 1472, 1356, 1228, 1177, 1170, 1215, 1313, 1385, 1545, 1708, 1906, 2153, 2312, 2318, 2015, 1835, 1667, 1548, 1453, 1337, 1285, 1277, 1303, 1375, 1524, 1629, 1744, 1951, 2159, 2415, 2350, 2160, 1932, 1762, 1659, 1550, 1429, 1402, 1403, 1402, 1498, 1602, 1719, 1849, 2016, 2242, 2416, 2444, 2266, 2036, 1884, 1766, 1643, 1572, 1577, 1528, 1577, 1584, 1702, 1835, 1985, 2157, 2296, 2555, 2460, 2285, 2202, 1958, 1905, 1831, 1695, 1717, 1689, 1733, 1742, 1926, 1945, 2307, 2379, 2482, 2792]
                                       }
                                   }, {
                                       "name":    "2592x1944_TL84_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4509, 3746, 3454, 3092, 2659, 2384, 2253, 2144, 2118, 2197, 2292, 2532, 2859, 3324, 3719, 4188, 5217, 4092, 3476, 3056, 2569, 2332, 2085, 1933, 1846, 1827, 1872, 2006, 2197, 2439, 2813, 3283, 3719, 4471, 3799, 3223, 2686, 2292, 2037, 1821, 1677, 1621, 1606, 1626, 1743, 1919, 2179, 2496, 3004, 3522, 4030, 3694, 2938, 2485, 2061, 1802, 1591, 1497, 1410, 1425, 1448, 1554, 1720, 1940, 2282, 2699, 3243, 3772, 3409, 2741, 2253, 1912, 1646, 1472, 1335, 1278, 1268, 1309, 1402, 1559, 1802, 2085, 2450, 3039, 3668, 3223, 2594, 2118, 1766, 1519, 1335, 1236, 1171, 1176, 1208, 1293, 1433, 1661, 1933, 2342, 2874, 3499, 3184, 2473, 1999, 1677, 1440, 1256, 1158, 1107, 1094, 1121, 1208, 1356, 1545, 1839, 2234, 2727, 3366, 3004, 2439, 1969, 1611, 1381, 1222, 1124, 1065, 1072, 1069, 1150, 1290, 1472, 1754, 2161, 2645, 3243, 3056, 2363, 1947, 1601, 1359, 1202, 1105, 1048, 1028, 1065, 1131, 1272, 1452, 1737, 2085, 2606, 3223, 3004, 2373, 1947, 1601, 1356, 1197, 1094, 1044, 1024, 1059, 1141, 1268, 1460, 1749, 2085, 2619, 3243, 3092, 2462, 1991, 1672, 1395, 1211, 1124, 1072, 1050, 1089, 1181, 1300, 1510, 1790, 2135, 2699, 3366, 3243, 2556, 2069, 1726, 1477, 1287, 1181, 1119, 1103, 1131, 1222, 1356, 1559, 1859, 2243, 2769, 3387, 3303, 2713, 2179, 1821, 1554, 1366, 1265, 1194, 1181, 1233, 1309, 1456, 1693, 1991, 2363, 2906, 3476, 3569, 2906, 2373, 1969, 1698, 1497, 1381, 1303, 1306, 1339, 1425, 1591, 1821, 2127, 2569, 3147, 3772, 3772, 3165, 2606, 2161, 1878, 1666, 1541, 1460, 1460, 1510, 1611, 1778, 2021, 2342, 2813, 3345, 4000, 4000, 3431, 2890, 2462, 2152, 1905, 1760, 1672, 1677, 1720, 1821, 1999, 2262, 2645, 3165, 3618, 4124, 4290, 3799, 3387, 2844, 2532, 2188, 2053, 1933, 1926, 1954, 2101, 2301, 2606, 3022, 3476, 3911, 4837]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3516, 2913, 2706, 2456, 2224, 2018, 1905, 1847, 1836, 1847, 1973, 2087, 2282, 2581, 2793, 3105, 3999, 3105, 2832, 2476, 2208, 2018, 1831, 1737, 1675, 1648, 1680, 1778, 1876, 2073, 2316, 2648, 2927, 3343, 2955, 2636, 2265, 1985, 1798, 1662, 1564, 1488, 1502, 1525, 1592, 1718, 1881, 2087, 2408, 2743, 3089, 2832, 2437, 2101, 1842, 1666, 1502, 1412, 1365, 1347, 1374, 1456, 1572, 1722, 1929, 2192, 2581, 2984, 2743, 2240, 1973, 1727, 1532, 1402, 1293, 1245, 1235, 1258, 1338, 1442, 1609, 1788, 2080, 2437, 2872, 2559, 2161, 1831, 1630, 1442, 1298, 1211, 1160, 1138, 1158, 1238, 1344, 1510, 1708, 1947, 2273, 2706, 2446, 2087, 1762, 1556, 1359, 1248, 1143, 1094, 1078, 1102, 1171, 1295, 1435, 1626, 1870, 2216, 2614, 2446, 2045, 1742, 1510, 1326, 1201, 1104, 1054, 1043, 1065, 1128, 1243, 1371, 1564, 1820, 2153, 2592, 2446, 2005, 1694, 1480, 1318, 1176, 1098, 1036, 1029, 1041, 1110, 1218, 1353, 1544, 1798, 2116, 2559, 2427, 2025, 1708, 1488, 1332, 1178, 1088, 1050, 1024, 1047, 1110, 1215, 1353, 1564, 1804, 2131, 2614, 2527, 2052, 1772, 1525, 1335, 1206, 1134, 1069, 1047, 1061, 1141, 1240, 1396, 1588, 1842, 2176, 2592, 2559, 2161, 1820, 1588, 1409, 1255, 1162, 1112, 1094, 1112, 1196, 1295, 1428, 1657, 1899, 2248, 2683, 2648, 2248, 1923, 1648, 1477, 1335, 1235, 1173, 1167, 1199, 1268, 1371, 1517, 1718, 1998, 2352, 2806, 2806, 2380, 2018, 1757, 1572, 1432, 1335, 1287, 1255, 1306, 1347, 1463, 1630, 1831, 2116, 2517, 2845, 2998, 2570, 2169, 1911, 1703, 1572, 1445, 1402, 1399, 1409, 1484, 1601, 1772, 1985, 2299, 2625, 2955, 3153, 2743, 2398, 2073, 1887, 1727, 1618, 1568, 1536, 1552, 1644, 1778, 1947, 2176, 2507, 2819, 3153, 3220, 3043, 2743, 2417, 2116, 1947, 1836, 1742, 1727, 1783, 1847, 1973, 2176, 2446, 2793, 3074, 3824]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3445, 2989, 2722, 2400, 2154, 1947, 1893, 1787, 1798, 1847, 1899, 2045, 2225, 2519, 2797, 3079, 3987, 3127, 2836, 2509, 2177, 1947, 1798, 1712, 1625, 1638, 1656, 1731, 1870, 2011, 2283, 2572, 2889, 3314, 3064, 2639, 2283, 1979, 1772, 1629, 1531, 1461, 1465, 1486, 1559, 1693, 1875, 2087, 2381, 2722, 3095, 2876, 2438, 2087, 1847, 1661, 1486, 1394, 1342, 1325, 1376, 1427, 1555, 1741, 1941, 2225, 2561, 2876, 2759, 2309, 1947, 1707, 1527, 1388, 1283, 1221, 1214, 1246, 1319, 1444, 1591, 1808, 2080, 2419, 2823, 2616, 2208, 1852, 1629, 1444, 1296, 1197, 1150, 1126, 1167, 1231, 1363, 1505, 1717, 1966, 2309, 2734, 2530, 2109, 1772, 1559, 1372, 1228, 1150, 1088, 1082, 1102, 1167, 1283, 1458, 1661, 1893, 2208, 2698, 2530, 2095, 1756, 1520, 1336, 1199, 1100, 1050, 1026, 1056, 1126, 1251, 1394, 1599, 1858, 2169, 2628, 2540, 2066, 1736, 1505, 1330, 1174, 1088, 1034, 1024, 1045, 1114, 1216, 1372, 1579, 1825, 2161, 2662, 2530, 2073, 1772, 1486, 1319, 1188, 1092, 1038, 1034, 1047, 1118, 1224, 1376, 1591, 1847, 2169, 2616, 2605, 2146, 1808, 1551, 1351, 1214, 1124, 1061, 1040, 1065, 1141, 1251, 1407, 1621, 1858, 2216, 2616, 2616, 2233, 1864, 1604, 1411, 1277, 1165, 1106, 1102, 1116, 1202, 1299, 1468, 1652, 1947, 2283, 2698, 2722, 2292, 1947, 1684, 1479, 1339, 1236, 1181, 1156, 1195, 1254, 1382, 1551, 1761, 2011, 2391, 2797, 2889, 2448, 2045, 1782, 1579, 1437, 1322, 1283, 1267, 1283, 1366, 1490, 1647, 1852, 2146, 2509, 2862, 3079, 2651, 2225, 1935, 1707, 1555, 1461, 1379, 1382, 1411, 1486, 1604, 1772, 2011, 2309, 2662, 2989, 3111, 2810, 2458, 2131, 1858, 1698, 1608, 1551, 1520, 1563, 1652, 1772, 1941, 2216, 2519, 2903, 3159, 3332, 3095, 2771, 2391, 2131, 1966, 1808, 1736, 1746, 1787, 1887, 2039, 2216, 2488, 2784, 3079, 3696]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3096, 2723, 2492, 2227, 2085, 1909, 1804, 1739, 1709, 1729, 1861, 1921, 2056, 2352, 2602, 2912, 3502, 2855, 2535, 2279, 2042, 1861, 1719, 1651, 1624, 1598, 1598, 1680, 1782, 1909, 2115, 2391, 2649, 2971, 2723, 2430, 2042, 1861, 1709, 1580, 1531, 1477, 1448, 1492, 1547, 1651, 1771, 1960, 2211, 2492, 2801, 2626, 2245, 1960, 1719, 1589, 1455, 1386, 1318, 1330, 1348, 1441, 1507, 1661, 1815, 2056, 2391, 2673, 2450, 2115, 1849, 1642, 1492, 1354, 1272, 1251, 1225, 1245, 1342, 1441, 1564, 1719, 1947, 2315, 2557, 2352, 2056, 1771, 1598, 1413, 1289, 1200, 1153, 1148, 1162, 1240, 1342, 1470, 1670, 1861, 2146, 2391, 2352, 1934, 1719, 1531, 1361, 1230, 1162, 1097, 1088, 1113, 1180, 1283, 1427, 1580, 1782, 2085, 2371, 2262, 1909, 1680, 1507, 1336, 1219, 1109, 1077, 1057, 1069, 1130, 1235, 1393, 1580, 1750, 2042, 2391, 2178, 1921, 1689, 1470, 1318, 1190, 1105, 1057, 1024, 1057, 1109, 1219, 1380, 1531, 1739, 2014, 2334, 2262, 1921, 1699, 1485, 1312, 1190, 1105, 1069, 1050, 1050, 1122, 1230, 1354, 1539, 1739, 2028, 2391, 2279, 1947, 1719, 1531, 1367, 1195, 1135, 1061, 1061, 1088, 1162, 1251, 1400, 1539, 1771, 2028, 2352, 2352, 2070, 1760, 1547, 1393, 1261, 1185, 1113, 1113, 1122, 1185, 1312, 1441, 1598, 1804, 2115, 2410, 2492, 2100, 1782, 1615, 1455, 1330, 1235, 1180, 1171, 1204, 1283, 1361, 1507, 1680, 1921, 2194, 2492, 2579, 2227, 1909, 1709, 1564, 1393, 1354, 1267, 1289, 1312, 1361, 1448, 1598, 1760, 2000, 2315, 2602, 2698, 2371, 2056, 1837, 1633, 1531, 1434, 1400, 1386, 1406, 1470, 1547, 1709, 1872, 2162, 2471, 2673, 2855, 2557, 2245, 1973, 1804, 1661, 1598, 1515, 1523, 1547, 1606, 1699, 1861, 2042, 2297, 2579, 2855, 3064, 2698, 2535, 2131, 1986, 1849, 1760, 1719, 1680, 1709, 1782, 1921, 2131, 2391, 2557, 2912, 3305]
                                       }
                                   }, {
                                       "name":    "2592x1944_TL84_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3464, 3057, 2928, 2709, 2398, 2195, 2100, 2015, 1995, 2061, 2134, 2322, 2566, 2898, 3136, 3387, 3959, 3257, 2914, 2665, 2320, 2155, 1964, 1843, 1772, 1757, 1796, 1909, 2063, 2248, 2525, 2848, 3101, 3532, 3102, 2764, 2400, 2115, 1922, 1748, 1627, 1581, 1568, 1585, 1688, 1836, 2048, 2290, 2664, 3001, 3275, 3070, 2572, 2260, 1935, 1728, 1549, 1470, 1391, 1407, 1427, 1523, 1669, 1853, 2129, 2441, 2819, 3130, 2886, 2437, 2082, 1817, 1597, 1446, 1322, 1270, 1261, 1300, 1386, 1528, 1740, 1972, 2252, 2683, 3088, 2765, 2334, 1978, 1696, 1486, 1321, 1230, 1168, 1173, 1204, 1285, 1415, 1618, 1847, 2174, 2568, 2984, 2751, 2245, 1883, 1621, 1416, 1248, 1155, 1106, 1093, 1120, 1204, 1344, 1515, 1769, 2090, 2459, 2897, 2617, 2223, 1861, 1563, 1362, 1216, 1123, 1065, 1072, 1069, 1148, 1282, 1448, 1695, 2031, 2398, 2809, 2662, 2161, 1843, 1555, 1342, 1197, 1104, 1048, 1028, 1065, 1130, 1265, 1430, 1681, 1966, 2367, 2797, 2617, 2167, 1842, 1554, 1338, 1192, 1093, 1044, 1024, 1059, 1139, 1260, 1437, 1690, 1964, 2376, 2809, 2678, 2236, 1876, 1616, 1373, 1204, 1122, 1071, 1050, 1088, 1178, 1290, 1482, 1724, 2003, 2435, 2897, 2781, 2302, 1936, 1660, 1447, 1275, 1176, 1117, 1102, 1129, 1216, 1341, 1523, 1780, 2087, 2480, 2895, 2803, 2414, 2018, 1736, 1512, 1346, 1255, 1189, 1176, 1226, 1297, 1431, 1640, 1888, 2177, 2573, 2938, 2974, 2546, 2165, 1854, 1634, 1462, 1360, 1290, 1293, 1324, 1402, 1549, 1746, 1993, 2331, 2741, 3130, 3082, 2718, 2334, 2002, 1781, 1607, 1501, 1430, 1432, 1477, 1566, 1708, 1908, 2158, 2506, 2860, 3253, 3190, 2879, 2531, 2230, 2000, 1804, 1687, 1614, 1620, 1657, 1742, 1888, 2095, 2384, 2753, 3023, 3280, 3310, 3096, 2875, 2507, 2291, 2026, 1925, 1828, 1824, 1847, 1967, 2123, 2354, 2652, 2945, 3180, 3693]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2768, 2435, 2342, 2191, 2033, 1880, 1795, 1752, 1745, 1752, 1855, 1939, 2081, 2292, 2410, 2578, 3107, 2538, 2417, 2196, 2017, 1884, 1739, 1666, 1616, 1594, 1621, 1703, 1779, 1931, 2108, 2335, 2491, 2711, 2470, 2299, 2052, 1851, 1710, 1603, 1522, 1457, 1471, 1491, 1548, 1654, 1784, 1938, 2170, 2384, 2570, 2410, 2167, 1935, 1742, 1605, 1467, 1390, 1349, 1332, 1357, 1431, 1532, 1656, 1819, 2012, 2283, 2526, 2366, 2025, 1841, 1652, 1492, 1380, 1282, 1238, 1229, 1250, 1325, 1418, 1563, 1707, 1933, 2187, 2467, 2239, 1973, 1728, 1573, 1414, 1286, 1206, 1157, 1136, 1155, 1232, 1330, 1477, 1643, 1829, 2066, 2356, 2161, 1920, 1674, 1510, 1339, 1240, 1141, 1093, 1078, 1101, 1168, 1285, 1411, 1574, 1769, 2028, 2296, 2168, 1889, 1660, 1471, 1310, 1196, 1103, 1054, 1043, 1065, 1126, 1236, 1353, 1520, 1729, 1981, 2285, 2170, 1857, 1619, 1444, 1303, 1172, 1097, 1036, 1029, 1041, 1109, 1212, 1336, 1503, 1711, 1951, 2261, 2153, 1872, 1630, 1450, 1316, 1173, 1087, 1050, 1024, 1047, 1109, 1209, 1336, 1520, 1715, 1962, 2303, 2226, 1890, 1683, 1482, 1317, 1199, 1132, 1069, 1047, 1061, 1139, 1232, 1374, 1539, 1744, 1995, 2278, 2239, 1973, 1718, 1535, 1383, 1245, 1158, 1110, 1093, 1110, 1191, 1283, 1401, 1597, 1787, 2045, 2338, 2292, 2032, 1798, 1582, 1441, 1317, 1226, 1168, 1163, 1193, 1258, 1351, 1478, 1644, 1862, 2117, 2415, 2390, 2121, 1865, 1668, 1520, 1402, 1317, 1274, 1245, 1292, 1328, 1431, 1573, 1733, 1948, 2231, 2420, 2502, 2247, 1972, 1787, 1626, 1521, 1413, 1376, 1375, 1383, 1449, 1548, 1687, 1851, 2080, 2291, 2470, 2573, 2349, 2133, 1904, 1771, 1647, 1559, 1519, 1491, 1504, 1582, 1692, 1822, 1990, 2221, 2407, 2573, 2561, 2532, 2371, 2159, 1942, 1819, 1735, 1659, 1648, 1695, 1745, 1841, 1992, 2182, 2410, 2555, 2984]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2719, 2491, 2354, 2145, 1974, 1819, 1785, 1699, 1711, 1752, 1790, 1903, 2033, 2242, 2413, 2558, 3098, 2554, 2420, 2223, 1991, 1822, 1710, 1644, 1571, 1585, 1599, 1661, 1773, 1878, 2080, 2274, 2461, 2690, 2552, 2302, 2067, 1845, 1687, 1573, 1492, 1431, 1437, 1455, 1518, 1631, 1779, 1938, 2148, 2368, 2575, 2443, 2168, 1923, 1747, 1601, 1452, 1373, 1327, 1311, 1359, 1404, 1516, 1673, 1829, 2040, 2267, 2443, 2378, 2082, 1819, 1634, 1487, 1367, 1272, 1215, 1208, 1239, 1307, 1420, 1546, 1724, 1933, 2172, 2428, 2285, 2012, 1746, 1572, 1416, 1284, 1192, 1148, 1124, 1164, 1225, 1348, 1473, 1651, 1846, 2096, 2378, 2228, 1938, 1683, 1513, 1352, 1221, 1147, 1087, 1082, 1101, 1164, 1274, 1433, 1606, 1789, 2022, 2363, 2236, 1932, 1672, 1480, 1319, 1194, 1099, 1050, 1026, 1056, 1124, 1244, 1374, 1552, 1763, 1994, 2314, 2246, 1909, 1656, 1467, 1314, 1170, 1087, 1034, 1024, 1045, 1113, 1210, 1354, 1535, 1735, 1989, 2344, 2236, 1913, 1687, 1449, 1303, 1183, 1091, 1038, 1034, 1047, 1117, 1218, 1357, 1545, 1753, 1994, 2305, 2288, 1969, 1715, 1506, 1332, 1207, 1122, 1061, 1040, 1065, 1139, 1243, 1385, 1570, 1759, 2028, 2297, 2285, 2033, 1757, 1549, 1385, 1266, 1161, 1104, 1101, 1114, 1197, 1287, 1438, 1593, 1829, 2075, 2349, 2350, 2068, 1819, 1614, 1443, 1321, 1227, 1176, 1152, 1189, 1244, 1361, 1509, 1682, 1874, 2149, 2408, 2453, 2176, 1888, 1690, 1526, 1407, 1305, 1270, 1256, 1270, 1346, 1456, 1588, 1751, 1973, 2225, 2433, 2563, 2311, 2019, 1808, 1630, 1506, 1427, 1355, 1359, 1385, 1450, 1551, 1687, 1873, 2088, 2320, 2496, 2543, 2400, 2182, 1953, 1745, 1621, 1550, 1504, 1477, 1514, 1590, 1687, 1817, 2024, 2231, 2472, 2578, 2640, 2570, 2393, 2138, 1954, 1835, 1710, 1654, 1665, 1699, 1780, 1898, 2026, 2217, 2403, 2558, 2894]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2474, 2293, 2174, 2004, 1916, 1786, 1707, 1656, 1632, 1648, 1757, 1796, 1891, 2106, 2260, 2434, 2759, 2356, 2188, 2037, 1878, 1748, 1640, 1589, 1570, 1548, 1546, 1615, 1695, 1790, 1939, 2128, 2276, 2441, 2296, 2137, 1867, 1744, 1631, 1529, 1492, 1446, 1421, 1460, 1507, 1593, 1686, 1829, 2007, 2186, 2355, 2252, 2012, 1816, 1634, 1536, 1423, 1365, 1304, 1316, 1332, 1417, 1472, 1601, 1719, 1897, 2130, 2288, 2137, 1922, 1734, 1576, 1455, 1335, 1262, 1244, 1219, 1238, 1329, 1417, 1521, 1645, 1819, 2087, 2221, 2075, 1885, 1676, 1544, 1387, 1277, 1195, 1150, 1146, 1159, 1234, 1328, 1440, 1609, 1754, 1960, 2106, 2086, 1791, 1636, 1487, 1341, 1223, 1159, 1096, 1088, 1112, 1177, 1274, 1403, 1532, 1692, 1918, 2101, 2020, 1774, 1605, 1468, 1319, 1213, 1108, 1077, 1057, 1069, 1128, 1228, 1373, 1535, 1667, 1887, 2124, 1954, 1786, 1614, 1435, 1303, 1185, 1104, 1057, 1024, 1057, 1108, 1213, 1362, 1491, 1659, 1865, 2080, 2020, 1784, 1622, 1448, 1297, 1185, 1104, 1069, 1050, 1050, 1121, 1224, 1336, 1497, 1657, 1875, 2124, 2028, 1802, 1636, 1487, 1347, 1189, 1133, 1061, 1061, 1087, 1159, 1243, 1378, 1495, 1682, 1870, 2086, 2075, 1897, 1666, 1497, 1368, 1250, 1180, 1111, 1112, 1120, 1180, 1299, 1413, 1544, 1704, 1934, 2121, 2170, 1910, 1676, 1552, 1421, 1312, 1226, 1175, 1167, 1198, 1272, 1342, 1469, 1610, 1796, 1987, 2170, 2216, 1997, 1773, 1626, 1513, 1366, 1335, 1255, 1277, 1298, 1342, 1417, 1544, 1670, 1850, 2068, 2233, 2278, 2090, 1879, 1723, 1564, 1484, 1402, 1375, 1363, 1380, 1436, 1499, 1631, 1753, 1967, 2169, 2259, 2356, 2205, 2010, 1820, 1699, 1588, 1541, 1471, 1480, 1500, 1548, 1622, 1748, 1878, 2052, 2222, 2356, 2452, 2274, 2208, 1926, 1833, 1734, 1668, 1639, 1606, 1630, 1688, 1796, 1954, 2138, 2225, 2434, 2621]
                                       }
                                   }, {
                                       "name":    "2592x1944_GRAY_0",
                                       "resolution":    "2592x1944",
                                       "illumination":    "GRAY",
                                       "vignetting":    0,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       }
                                   }],
                               "tableAll_len":    15
                           }
                       },
                       "colorAsGrey":    {
                           "param":    {
                               "enable":    0
                           }
                       },
                       "lumaDetect":    {
                           "luma_detect_en":    1,
                           "fixed_times":    0,
                           "mutation_threshold":    0.0002,
                           "mutation_threshold_level2":    1000
                       },
                       "aldch":    {
                           "param":    {
                               "ldch_en":    0,
                               "meshfile":    "LDCH_mesh_2688_1520_os04a10_4IR",
                               "correct_level":    255,
                               "correct_level_max":    255,
                               "light_center":    [1351.12, 739.486],
                               "coefficient":    [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
                           }
                       },
                       "ccm_calib":    {
                           "control":    {
                               "enable":    1,
                               "mode":    "CALIB_CCM_MODE_AUTO",
                               "wbgain_tolerance":    0.1,
                               "gain_tolerance":    0.2
                           },
                           "lumaCCM":    {
                               "rgb2y_para":    [38, 75, 15],
                               "low_bound_pos_bit":    8,
                               "y_alpha_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
                               "gain_alphaScale_curve":    {
                                   "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                   "scale":    [1, 1, 1, 1, 1, 1, 1, 1, 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.0135, 2.3206],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 85, 80, 50]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.3395, 1.9941],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 85, 80, 50]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.4813, 1.5425],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 85, 80, 50]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.6835, 1.3466],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 85, 80, 50]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [1.7868, 1.2535],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 85, 80, 50]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.8561, 2.7511],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 85, 80, 50]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.1898, 1.9775],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 85, 80, 50]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8438, -0.6796, -0.1642, -0.4828, 1.7183, -0.2355, -0.1863, -1.5011, 2.6875],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4286, -0.339, -0.0896, -0.2929, 1.4366, -0.1437, -0.0746, -0.9451, 2.0196],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.3711, -1.2513, -0.1197, -0.4873, 1.7115, -0.2241, -0.1316, -0.8806, 2.0122],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.8608, -0.789, -0.0718, -0.2543, 1.4043, -0.15, 0.0077, -0.5128, 1.5051],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [2.185, -1.0531, -0.132, -0.3247, 1.7444, -0.4197, -0.038, -0.7544, 1.7925],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.7362, -0.6181, -0.1181, -0.1208, 1.4529, -0.332, 0.0902, -0.3953, 1.3051],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [2.3713, -1.25, -0.1213, -0.3177, 1.8371, -0.5193, -0.0437, -0.6252, 1.6689],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.8894, -0.7611, -0.1282, -0.1003, 1.5241, -0.4238, 0.1013, -0.2969, 1.1956],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [2.4396, -1.3122, -0.1273, -0.2815, 1.8147, -0.5331, -0.0442, -0.5506, 1.5948],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.9507, -0.8132, -0.1375, -0.0627, 1.5014, -0.4387, 0.1117, -0.2478, 1.136],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7667, -0.4456, -0.3212, -0.5912, 1.7683, -0.1771, -0.3805, -2.0711, 3.4516],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.3433, -0.1571, -0.1862, -0.4014, 1.4826, -0.0812, -0.2465, -1.358, 2.6045],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0584, -0.8194, -0.239, -0.4791, 1.8313, -0.3521, -0.1633, -0.8901, 2.0534],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6054, -0.4179, -0.1875, -0.2723, 1.5446, -0.2723, -0.0397, -0.4683, 1.508],
                                       "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":    [317, 278, 244, 213, 165, 137, 130, 135, 145, 153, 156, 151, 139, 120, 97, 87]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [338, 308, 283, 263, 237, 226, 227, 233, 239, 243, 243, 238, 229, 218, 209, 208]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [413, 396, 381, 368, 349, 336, 326, 319, 311, 302, 289, 274, 255, 233, 209, 187]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [597, 575, 556, 539, 511, 490, 473, 459, 444, 428, 408, 386, 360, 330, 298, 266]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [886, 859, 834, 811, 772, 738, 708, 681, 654, 626, 595, 561, 523, 481, 435, 387]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                                               "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.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "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
                                           }, {
                                               "iso":    204800,
                                               "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.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.55,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "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
                                           }, {
                                               "iso":    204800,
                                               "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.18,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.055,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.17,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.045,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.16,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.04,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.16,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.035,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.15,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.65,
                                               "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
                                           }, {
                                               "iso":    204800,
                                               "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.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.15,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0322,
                                               "hi_clipwgt":    0.0322,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.65,
                                               "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
                                           }, {
                                               "iso":    204800,
                                               "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":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.55,
                                               "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":    35,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    20.2,
                                               "hf_color_sat":    1.3,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    5,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    5,
                                               "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.45,
                                               "hf_denoise_strength":    30.2,
                                               "hf_color_sat":    1.2,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    5,
                                               "lf_color_sat":    3,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "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.4,
                                               "hf_denoise_strength":    40.2,
                                               "hf_color_sat":    1.1,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    3,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    7,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    3,
                                               "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":    50.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "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":    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":    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":    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":    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":    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
                                   }, {
                                       "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":    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":    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":    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":    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":    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":    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":    [-6.81686e-13, 6.53318e-09, -2.28104e-05, 0.0289568, 18.9747],
                                               "ynr_ci_l":    0.261599,
                                               "ynr_ci_h":    0.186856
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-7.07479e-13, 5.63809e-09, -1.65192e-05, 0.021284, 21.6594],
                                               "ynr_ci_l":    0.419369,
                                               "ynr_ci_h":    0.245991
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.27391e-12, 1.18365e-08, -3.99629e-05, 0.0472077, 43.4875],
                                               "ynr_ci_l":    0.248233,
                                               "ynr_ci_h":    0.168267
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.92492e-12, 1.74682e-08, -5.67683e-05, 0.0615301, 68.1671],
                                               "ynr_ci_l":    0.247048,
                                               "ynr_ci_h":    0.159569
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-3.87019e-12, 3.4817e-08, -0.000110051, 0.117687, 94.7774],
                                               "ynr_ci_l":    0.244495,
                                               "ynr_ci_h":    0.158683
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 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":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 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.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.4,
                                               "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":    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.75,
                                               "low_bf_1":    0.65,
                                               "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.45,
                                               "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":    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.8,
                                               "low_bf_1":    0.75,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.45,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.35,
                                               "low_dist_adj":    7.5,
                                               "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":    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.95,
                                               "low_bf_1":    0.85,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    7,
                                               "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":    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.8,
                                               "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":    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.9,
                                               "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":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.95,
                                               "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":    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,
                                               "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":    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]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    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
                                   }, {
                                       "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.5,
                                               "low_bf_1":    0.6,
                                               "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":    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.5,
                                               "low_bf_1":    0.6,
                                               "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":    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.5,
                                               "low_bf_1":    0.6,
                                               "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":    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.5,
                                               "low_bf_1":    0.6,
                                               "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":    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.5,
                                               "low_bf_1":    0.6,
                                               "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":    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.5,
                                               "low_bf_1":    0.6,
                                               "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":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "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":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "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":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "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":    0.5,
                                               "low_bf_1":    0.6,
                                               "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":    0.5,
                                               "low_bf_1":    0.6,
                                               "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":    0.5,
                                               "low_bf_1":    0.6,
                                               "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":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "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.6,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "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.65,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "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.7,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "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":    7,
                                               "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":    1,
                                               "sharp_ratio":    7,
                                               "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.2,
                                               "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":    [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.2,
                                               "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":    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":    6,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "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, 12, 16, 19, 16, 12, 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":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "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, 12, 16, 19, 16, 12, 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":    6,
                                               "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, 12, 16, 19, 16, 12, 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":    7,
                                               "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, 12, 16, 19, 16, 12, 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":    1,
                                               "sharp_ratio":    7,
                                               "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, 12, 16, 19, 16, 12, 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.2,
                                               "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, 12, 16, 19, 16, 12, 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.2,
                                               "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, 12, 16, 19, 16, 12, 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, 12, 16, 19, 16, 12, 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, 12, 16, 19, 16, 12, 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, 12, 16, 19, 16, 12, 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, 12, 16, 19, 16, 12, 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, 12, 16, 19, 16, 12, 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, 12, 16, 19, 16, 12, 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
       }
   }
}