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":    1600,
           "height":    1200
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 12, 1024, 0, 1, 1024, 12288],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    12
           },
           "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, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 6, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 6, 8, 6, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.03,
                                       "GainValue":    1,
                                       "IspDGainValue":    1
                                   },
                                   "HdrAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    [0.01, 0.02, 0.03],
                                       "GainValue":    [1, 1, 1],
                                       "IspDGainValue":    [1, 1, 1]
                                   }
                               },
                               "AecSpeed":    {
                                   "DampOver":    0.35,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.35,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    4,
                                   "WhiteDelay":    4
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    0,
                                   "FpsValue":    15
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.02859, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.9,
                                       "v_size":    0.9
                                   },
                                   "YuvWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   }
                               }
                           },
                           "LinearAeCtrl":    {
                               "RawStatsEn":    1,
                               "ToleranceIn":    10,
                               "ToleranceOut":    10,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.03,
                                   "InitGainValue":    2,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.03, 0.03, 0.06, 0.06, 0.1],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 2, 2, 12, 12],
                                   "GainDot_len":    6,
                                   "IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "DySetpoint":    {
                                   "ExpLevel":    [0, 0.06, 0.24, 0.48, 0.72, 0.96],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [65, 65, 65, 65, 65, 65],
                                   "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.096, 0.204, 0.42, 0.6, 0.78, 0.96],
                                       "ExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
                                       "LowLightPdfTh_len":    6,
                                       "TargetLLLuma":    [35, 35, 30, 25, 20, 15],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "OverExpCtrl":    {
                                   "Enable":    0,
                                   "StrBias":    0,
                                   "MaxWeight":    8,
                                   "HighLightTh":    150,
                                   "LowLightTh":    30,
                                   "OverExpSetPoint":    {
                                       "OEpdf":    [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
                                       "OEpdf_len":    6,
                                       "LowLightWeight":    [1, 1, 1, 1, 1, 1],
                                       "LowLightWeight_len":    6,
                                       "HighLightWeight":    [4, 3, 3, 3, 2, 2],
                                       "HighLightWeight_len":    6
                                   }
                               }
                           },
                           "HdrAeCtrl":    {
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "LumaDistTh":    10,
                               "InitExp":    {
                                   "InitTimeValue":    [0.0005, 0.003, 0.003],
                                   "InitGainValue":    [1, 1, 1],
                                   "InitIspDGainValue":    [1, 1, 1],
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "Frm0TimeDot":    [0, 0.003, 0.003, 0.003, 0.003, 0.003],
                                   "Frm0TimeDot_len":    6,
                                   "Frm0GainDot":    [1, 1, 4, 8, 12, 12],
                                   "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, 12, 12],
                                   "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, 12, 12],
                                   "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.0036, 0.0108, 0.018, 0.036, 0.072],
                                       "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.018, 0.036, 0.072, 0.18, 0.252, 0.36],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.0018, 0.0054, 0.009, 0.0144, 0.0216],
                                       "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":    [0.952577, 1, 1, 2.16577],
                                   "scene":    "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
                                   "cct":    {
                                       "CCT":    5000,
                                       "CCRI":    0
                                   }
                               }
                           },
                           "autoPara":    {
                               "hdrPara":    {
                                   "frameChooseMode":    "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
                                   "frameChoose":    1
                               },
                               "lscBypassEnable":    0,
                               "uvDetectionEnable":    1,
                               "xyDetectionEnable":    1,
                               "yuvDetectionEnable":    1,
                               "lsUsedForYuvDet":    ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
                               "lsUsedForYuvDet_len":    7,
                               "blkStatisticsEnable":    1,
                               "downScaleMode":    "CALIB_AWB_DS_4X4",
                               "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":    [6],
                                   "minG_len":    1,
                                   "maxB":    [230],
                                   "maxB_len":    1,
                                   "minB":    [3],
                                   "minB_len":    1,
                                   "maxY":    [230],
                                   "maxY_len":    1,
                                   "minY":    [6],
                                   "minY_len":    1
                               },
                               "rgb2TcsPara":    {
                                   "pseudoLuminanceWeight":    [0.333289, 0.333442, 0.333269],
                                   "rotationMat":    [-0.654519, 0.756046, -0.132824, 0.756046, 0.654519, 0.299781, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0449219, 0.138672, 0.015625, 28.3125, -0.0898438, 0.0136719, 0.0644531, 133.5, 0.0371094, -0.0644531, 0.0585938, 114.688, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-575, -354, 4, -80]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-51, -33, -119, -141]
                                   }, {
                                       "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]
                                   }, {
                                       "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.05, 0.3, 0.8, 1, 1, 1, 0.5, 0]
                                               }],
                                           "ratioSet_len":    3
                                       }],
                                   "wpDiffWeightLvSet_len":    2
                               },
                               "wpDiffBlkWeiEnable":    1,
                               "wpDiffBlkWeight":    [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
                               "lightSources":    [{
                                       "name":    "A",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.952577, 1, 1, 2.16577],
                                       "uvRegion":    {
                                           "u":    [122, 64, 61, 123],
                                           "v":    [131, 153, 122, 128]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.13981, -0.784259, 0.024498, -0.0429719],
                                           "big":    [-1.14278, -0.784259, 0.0630522, -0.0868809]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 2.5, 3, 3.5, 4],
                                           "lineVector":    [10, 138.875, 114.375, 184.562, 91, 116.875],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.39783, 1, 1, 1.93826],
                                       "defaultDayGainHigh":    [1.62472, 1, 1, 1.58484],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.39783, 1, 1, 1.93826],
                                       "uvRegion":    {
                                           "u":    [63, 69, 124, 123],
                                           "v":    [114, 91.5, 125, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.784259, -0.34598, -0.0686747, -0.120973],
                                           "big":    [-0.783264, -0.346844, -0.0681392, -0.140071]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 2.5, 3, 3.5, 4],
                                           "lineVector":    [10, 136.125, 115.812, 189.75, 116.562, 107.812],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.39783, 1, 1, 1.93826],
                                       "defaultDayGainHigh":    [1.62472, 1, 1, 1.58484],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.62472, 1, 1, 1.58484],
                                       "uvRegion":    {
                                           "u":    [68.5, 97, 126.5, 124],
                                           "v":    [92.5, 54.5, 123, 125]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.345728, -0.0657279, -0.0284248, -0.115529],
                                           "big":    [-0.346844, -0.0657279, -0.0105756, -0.140964]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 2.5, 3, 3.5, 4],
                                           "lineVector":    [10, 134.875, 115.812, 190.875, 130.188, 109.688],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.39783, 1, 1, 1.93826],
                                       "defaultDayGainHigh":    [1.62472, 1, 1, 1.58484],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.56193, 1, 1, 1.34489],
                                       "uvRegion":    {
                                           "u":    [84, 109, 127.5, 124.5],
                                           "v":    [71.5, 48, 121, 124]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.0674563, 0.0785931, 0.0308344, -0.127666],
                                           "big":    [-0.0665921, 0.0800694, 0.0791165, -0.161223]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 2.5, 3, 3.5, 4],
                                           "lineVector":    [10, 134, 115.25, 191, 135.312, 116.375],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.39783, 1, 1, 1.93826],
                                       "defaultDayGainHigh":    [1.62472, 1, 1, 1.58484],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.67113, 1, 1, 1.24081],
                                       "uvRegion":    {
                                           "u":    [129, 127, 102.5, 116],
                                           "v":    [120, 123, 53.5, 46]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0792052, 0.392045, 0.0148594, -0.0365462],
                                           "big":    [0.0800694, 0.392045, 0.0355645, -0.0579652]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 2.5, 3, 3.5, 4],
                                           "lineVector":    [10, 133.625, 114.875, 190.812, 142, 118.25],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.39783, 1, 1, 1.93826],
                                       "defaultDayGainHigh":    [1.62472, 1, 1, 1.58484],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.799155, 1, 1, 2.32969],
                                       "uvRegion":    {
                                           "u":    [122, 67, 63, 122],
                                           "v":    [133, 167, 145, 131]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.44352, -1.14278, 0.0287818, -0.0536814],
                                           "big":    [-1.53093, -1.1413, 0.0437751, -0.0761714]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 2.5, 3, 3.5, 4],
                                           "lineVector":    [10, 140.5, 114.062, 180.062, 78.8125, 120.625],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.39783, 1, 1, 1.93826],
                                       "defaultDayGainHigh":    [1.62472, 1, 1, 1.58484],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.25615, 1, 1, 1.97977],
                                       "uvRegion":    {
                                           "u":    [123, 61, 66, 123],
                                           "v":    [128, 125, 100, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.7824, -0.347708, -0.00727354, -0.0681392],
                                           "big":    [-0.782778, -0.346844, 0.00968318, -0.0686747]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [1, 2, 2.5, 3, 3.5, 4],
                                           "lineVector":    [10, 136.688, 115.25, 189, 110.375, 110.438],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.39783, 1, 1, 1.93826],
                                       "defaultDayGainHigh":    [1.62472, 1, 1, 1.58484],
                                       "xyType2Enable":    1
                                   }],
                               "lightSources_len":    7
                           },
                           "autoExtPara":    {
                               "lightSourceForFirstFrame":    "D50",
                               "tolerance":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "toleranceValue":    [0, 0, 0, 0],
                                   "toleranceValue_len":    4
                               },
                               "runInterval":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "intervalValue":    [0, 0, 0, 0],
                                   "intervalValue_len":    4
                               },
                               "dampFactor":    {
                                   "dFStep":    0.1,
                                   "dFMin":    0.4,
                                   "dFMax":    0.7,
                                   "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":    [50],
                                       "low_len":    1,
                                       "high":    [100],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [0.952577, 1, 1, 2.16577],
                               "lumaValueMatrix":    [0, 4, 16, 32, 64, 128, 256, 512, 1024, 2048, 8192, 32768, 131072, 524288, 2.09715e+06, 8.38861e+06],
                               "defaultNightGainWeight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "probCalcDis":    {
                                   "proDis_THH":    4.6124,
                                   "proDis_THL":    0.0269
                               },
                               "probCalcLv":    {
                                   "outdoorLumaValThLow":    30000,
                                   "outdoorLumaValThHigh":    45745
                               },
                               "probCalcWp":    {
                                   "wpNumPercTh":    0.001,
                                   "wpNumPercTh2":    0.2
                               },
                               "converged":    {
                                   "varThforUnDamp":    0.005,
                                   "varThforDamp":    0.005
                               },
                               "xyRegionStableSelection":    {
                                   "enable":    1,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "forBigType":    [100],
                                       "forBigType_len":    1,
                                       "forExtraType":    [100],
                                       "forExtraType_len":    1
                                   },
                                   "xyTypeListSize":    50,
                                   "varianceLumaTh":    0.06
                               },
                               "weightForNightGainCalc":    [25, 25, 25, 25],
                               "weightForNightGainCalc_len":    4,
                               "singleColorProces":    {
                                   "enable":    1,
                                   "colorBlock":    [{
                                           "index":    15,
                                           "meanC":    19.2589,
                                           "meanH":    22.2012
                                       }, {
                                           "index":    13,
                                           "meanC":    19.0076,
                                           "meanH":    -74.3067
                                       }, {
                                           "index":    5,
                                           "meanC":    9.13006,
                                           "meanH":    -63.9966
                                       }, {
                                           "index":    10,
                                           "meanC":    9.59915,
                                           "meanH":    -41.5483
                                       }, {
                                           "index":    14,
                                           "meanC":    15.6336,
                                           "meanH":    149.284
                                       }, {
                                           "index":    16,
                                           "meanC":    21.2687,
                                           "meanH":    90.4318
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    0.952577,
                                           "BGain":    2.16577
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.62472,
                                           "BGain":    1.58484
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.25615,
                                           "BGain":    1.97977
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8395, -0.5434, -2.741],
                               "lineRgProjCCT":    [1, -0.0003, 0.4559],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [2.2099, 1, 1, 1.6302],
                                   "laCalcFactor":    40
                               },
                               "remosaicCfg":    {
                                   "enable":    0,
                                   "applyInvWbGainEnable":    1,
                                   "sensorWbGain":    [1, 1, 1, 1]
                               },
                               "wbGainOffset":    {
                                   "enable":    0,
                                   "offset":    [0, 0, 0, 0]
                               }
                           }
                       },
                       "agamma_calib":    {
                           "GammaTuningPara":    {
                               "Gamma_en":    1,
                               "Gamma_out_segnum":    "GAMMATYPE_LOG",
                               "Gamma_out_offset":    0,
                               "Gamma_curve":    [0, 4, 8, 12, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 159, 191, 223, 254, 317, 379, 440, 500, 617, 731, 841, 947, 1149, 1325, 1467, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 4095]
                           }
                       },
                       "ablc_calib":    {
                           "BlcTuningPara":    {
                               "enable":    1,
                               "BLC_Data":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "R_Channel":    [256, 256.938, 258.125, 259.5, 260.812, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [256, 257.188, 258.125, 259.688, 260.812, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [256, 257.375, 258.438, 260.5, 262.5, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [256, 257.375, 258.438, 260.312, 263.062, 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.25, 1.2, 1.15, 1.1, 1, 1, 1, 1, 1],
                                       "enhance_value_len":    9,
                                       "enhance_chroma":    [1.3, 1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1],
                                       "enhance_chroma_len":    9
                                   }
                               },
                               "hist_setting":    {
                                   "en":    0,
                                   "hist_para_en":    1,
                                   "HistData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "hist_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_gratio_len":    9,
                                       "hist_th_off":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "hist_th_off_len":    9,
                                       "hist_k":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_k_len":    9,
                                       "hist_min":    [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
                                       "hist_min_len":    9,
                                       "hist_scale":    [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
                                       "hist_scale_len":    9,
                                       "cfg_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "cfg_gratio_len":    9
                                   }
                               }
                           }
                       },
                       "adpcc_calib":    {
                           "DpccTuningPara":    {
                               "Enable":    1,
                               "Fast_Mode":    {
                                   "Fast_mode_en":    0,
                                   "Single_enable":    0,
                                   "Double_enable":    0,
                                   "Triple_enable":    0,
                                   "Fast_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                       "ISO_len":    13,
                                       "Single_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Single_level_len":    13,
                                       "Double_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Double_level_len":    13,
                                       "Triple_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Triple_level_len":    13
                                   }
                               },
                               "Expert_Mode":    {
                                   "stage1_Enable":    1,
                                   "grayscale_mode":    0,
                                   "dpcc_out_sel":    1,
                                   "stage1_g_3x3":    0,
                                   "stage1_rb_3x3":    0,
                                   "stage1_inc_rb_center":    1,
                                   "stage1_inc_g_center":    1,
                                   "rk_out_sel":    1,
                                   "SetEnable":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "fix_set":    [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set2":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set3":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   },
                                   "set1":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_pg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "g_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "rb_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_ro_lim":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "sw_dis_scale_max":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_line_thr":    [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_line_thr":    [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_mad_fac":    [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_mad_fac":    [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_pg_fac":    [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_pg_fac":    [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       }
                                   },
                                   "set3":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_thr":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_mad_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_line_mad_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "PG":    {
                                           "PG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_pg_fac":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_pg_fac":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_thr":    [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "rb_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rg_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1],
                                           "g_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1]
                                       }
                                   }
                               },
                               "Dpcc_pdaf":    {
                                   "en":    0,
                                   "point_en":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "offsetx":    0,
                                   "offsety":    0,
                                   "wrapx":    0,
                                   "wrapy":    0,
                                   "wrapx_num":    0,
                                   "wrapy_num":    0,
                                   "point_x":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "point_y":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "forward_med":    0
                               },
                               "Sensor_dpcc":    {
                                   "sensor_dpcc_auto_en":    0,
                                   "max_level":    20,
                                   "SensorDpcc_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "ISO_len":    13,
                                       "level_single":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_single_len":    13,
                                       "level_multiple":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_multiple_len":    13
                                   }
                               }
                           }
                       },
                       "amerge_calib":    {
                           "MergeTuningPara":    {
                               "OECurve":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "Smooth_len":    13,
                                   "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                   "Offset_len":    13
                               },
                               "MDCurve":    {
                                   "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "MoveCoef_len":    13,
                                   "LM_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "LM_smooth_len":    13,
                                   "LM_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "LM_offset_len":    13,
                                   "MS_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "MS_smooth_len":    13,
                                   "MS_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "MS_offset_len":    13
                               },
                               "ByPassThr":    0,
                               "OECurve_damp":    0.3,
                               "MDCurveLM_damp":    0.3,
                               "MDCurveMS_damp":    0.3
                           }
                       },
                       "adrc_calib":    {
                           "DrcTuningPara":    {
                               "Enable":    0,
                               "DrcGain":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "DrcGain":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "DrcGain_len":    13,
                                   "Alpha":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                   "Alpha_len":    13,
                                   "Clip":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "Clip_len":    13
                               },
                               "HiLight":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Strength":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Strength_len":    13
                               },
                               "LocalTMOSetting":    {
                                   "LocalTMOData":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "LocalWeit":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalWeit_len":    13,
                                       "GlobalContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "GlobalContrast_len":    13,
                                       "LoLitContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "LoLitContrast_len":    13
                                   },
                                   "curPixWeit":    0.376471,
                                   "preFrameWeit":    1,
                                   "Range_force_sgm":    0,
                                   "Range_sgm_cur":    0.125015,
                                   "Range_sgm_pre":    0.125015,
                                   "Space_sgm_cur":    4068,
                                   "Space_sgm_pre":    3968
                               },
                               "CompressSetting":    {
                                   "Mode":    "COMPRESS_AUTO",
                                   "Manual_curve":    [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
                               },
                               "Scale_y":    [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
                               "ByPassThr":    0,
                               "Edge_Weit":    0.0627451,
                               "OutPutLongFrame":    0,
                               "IIR_frame":    16,
                               "Tolerance":    0,
                               "damp":    0.9
                           }
                       },
                       "cpsl":    {
                           "param":    {
                               "enable":    0,
                               "mode":    "RK_AIQ_OP_MODE_AUTO",
                               "force_gray":    1,
                               "light_src":    "LED",
                               "auto_adjust_sens":    50,
                               "auto_on2off_th":    3000,
                               "auto_off2on_th":    100,
                               "auto_sw_interval":    0,
                               "manual_on":    0,
                               "manual_strength":    100
                           }
                       },
                       "orb":    {
                           "param":    {
                               "orb_en":    0
                           }
                       },
                       "debayer":    {
                           "param":    {
                               "debayer_en":    1,
                               "debayer_filter1":    [2, -6, 0, 6, -2],
                               "debayer_filter2":    [2, -4, 4, -4, 2],
                               "debayer_gain_offset":    4,
                               "debayer_offset":    1,
                               "debayer_clip_en":    1,
                               "debayer_filter_g_en":    1,
                               "debayer_filter_c_en":    1,
                               "debayer_thed0":    3,
                               "debayer_thed1":    6,
                               "debayer_dist_scale":    8,
                               "debayer_cnr_strength":    5,
                               "debayer_shift_num":    2,
                               "array":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "sharp_strength":    [4, 4, 4, 4, 4, 4, 4, 4, 4],
                                   "debayer_hf_offset":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                               }
                           }
                       },
                       "cproc":    {
                           "param":    {
                               "enable":    1,
                               "brightness":    128,
                               "contrast":    128,
                               "saturation":    128,
                               "hue":    128
                           }
                       },
                       "ie":    {
                           "param":    {
                               "enable":    0,
                               "mode":    0
                           }
                       },
                       "lsc_v2":    {
                           "common":    {
                               "enable":    1,
                               "resolutionAll":    [{
                                       "name":    "1600x1200",
                                       "lsc_sect_size_x":    [100, 100, 100, 100, 100, 100, 100, 100],
                                       "lsc_sect_size_y":    [75, 75, 75, 75, 75, 75, 75, 75]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [0.9171, 2.2041],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.3669, 2.0352],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.6575, 1.5733],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [1.5005, 1.4065],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [1.5981, 1.2981],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.773, 2.339],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.2202, 2.0167],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    2,
                                       "name":    "GRAY",
                                       "wbGain":    [1, 1],
                                       "tableUsed":    [{
                                               "name":    "GRAY_100"
                                           }],
                                       "tableUsed_len":    1,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "1600x1200_A_70",
                                       "resolution":    "1600x1200",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3438, 2895, 2657, 2485, 2259, 2149, 2103, 2077, 2029, 2040, 2102, 2154, 2273, 2332, 2475, 2760, 3133, 3110, 2725, 2432, 2257, 2163, 1995, 1899, 1837, 1835, 1821, 1885, 2005, 2091, 2229, 2344, 2542, 2856, 2905, 2557, 2292, 2153, 1976, 1823, 1727, 1665, 1621, 1654, 1711, 1820, 1944, 2103, 2219, 2446, 2716, 2772, 2418, 2178, 2025, 1849, 1693, 1568, 1476, 1431, 1480, 1529, 1662, 1803, 1995, 2140, 2305, 2577, 2634, 2318, 2103, 1897, 1739, 1546, 1421, 1337, 1288, 1315, 1385, 1517, 1686, 1868, 2064, 2219, 2450, 2542, 2241, 2032, 1822, 1649, 1434, 1301, 1208, 1172, 1188, 1262, 1396, 1586, 1792, 2001, 2196, 2371, 2472, 2203, 1957, 1749, 1535, 1358, 1218, 1114, 1086, 1100, 1161, 1296, 1493, 1712, 1923, 2135, 2315, 2442, 2183, 1956, 1711, 1504, 1295, 1165, 1081, 1028, 1048, 1119, 1248, 1466, 1665, 1923, 2129, 2279, 2468, 2198, 1975, 1721, 1503, 1296, 1149, 1064, 1024, 1046, 1110, 1253, 1437, 1657, 1889, 2134, 2302, 2482, 2208, 1991, 1751, 1518, 1309, 1168, 1081, 1034, 1069, 1142, 1277, 1464, 1693, 1941, 2164, 2346, 2556, 2242, 2023, 1815, 1585, 1383, 1237, 1145, 1111, 1134, 1210, 1325, 1511, 1726, 1968, 2190, 2368, 2597, 2304, 2091, 1901, 1656, 1478, 1335, 1230, 1189, 1212, 1292, 1433, 1597, 1850, 2036, 2231, 2494, 2711, 2379, 2209, 1987, 1792, 1597, 1447, 1340, 1314, 1342, 1422, 1540, 1726, 1924, 2139, 2348, 2780, 2837, 2473, 2291, 2060, 1923, 1711, 1618, 1507, 1468, 1491, 1566, 1706, 1861, 2065, 2238, 2494, 3021, 3110, 2595, 2372, 2235, 2053, 1890, 1786, 1697, 1652, 1673, 1756, 1870, 2026, 2192, 2403, 2845, 3598, 3643, 2937, 2488, 2329, 2188, 2059, 1964, 1877, 1846, 1895, 1945, 2031, 2187, 2385, 2783, 3352, 4269, 4474, 3488, 2946, 2544, 2377, 2275, 2183, 2121, 2073, 2084, 2156, 2295, 2515, 2835, 3325, 4142, 5529]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2692, 2287, 2061, 1925, 1830, 1800, 1750, 1714, 1732, 1714, 1755, 1819, 1858, 1900, 2084, 2274, 2654, 2427, 2150, 1958, 1804, 1713, 1636, 1598, 1561, 1549, 1587, 1605, 1668, 1753, 1823, 1904, 2123, 2358, 2292, 2030, 1802, 1711, 1621, 1535, 1476, 1439, 1446, 1472, 1490, 1564, 1657, 1755, 1856, 2005, 2212, 2130, 1894, 1730, 1650, 1535, 1442, 1355, 1333, 1310, 1346, 1363, 1453, 1568, 1706, 1781, 1928, 2102, 2060, 1824, 1693, 1565, 1465, 1360, 1264, 1225, 1216, 1225, 1264, 1349, 1471, 1590, 1749, 1848, 2036, 2013, 1778, 1654, 1518, 1385, 1267, 1186, 1139, 1121, 1137, 1178, 1267, 1407, 1571, 1699, 1830, 1965, 1975, 1763, 1637, 1496, 1345, 1222, 1123, 1088, 1063, 1069, 1134, 1219, 1363, 1494, 1647, 1828, 1922, 1924, 1734, 1595, 1451, 1326, 1187, 1100, 1048, 1029, 1034, 1081, 1193, 1337, 1484, 1647, 1791, 1927, 1945, 1765, 1609, 1467, 1318, 1195, 1102, 1034, 1024, 1029, 1087, 1179, 1338, 1480, 1647, 1801, 1913, 1941, 1768, 1604, 1477, 1337, 1209, 1121, 1063, 1038, 1049, 1107, 1210, 1341, 1496, 1671, 1822, 1951, 1988, 1791, 1664, 1518, 1371, 1255, 1166, 1107, 1087, 1112, 1154, 1254, 1381, 1552, 1693, 1866, 1969, 2010, 1843, 1720, 1602, 1443, 1321, 1239, 1174, 1156, 1172, 1218, 1318, 1457, 1601, 1738, 1910, 2078, 2140, 1904, 1791, 1661, 1544, 1422, 1310, 1274, 1254, 1266, 1331, 1406, 1525, 1691, 1806, 1944, 2270, 2246, 1995, 1839, 1729, 1641, 1521, 1440, 1389, 1369, 1384, 1440, 1503, 1643, 1765, 1861, 2091, 2514, 2482, 2109, 1901, 1798, 1730, 1659, 1570, 1537, 1523, 1528, 1582, 1659, 1737, 1858, 1999, 2381, 2958, 2896, 2384, 2041, 1919, 1824, 1743, 1721, 1661, 1658, 1667, 1721, 1766, 1871, 2034, 2342, 2827, 3650, 3730, 2824, 2388, 2090, 1975, 1862, 1844, 1832, 1796, 1823, 1872, 1932, 2079, 2380, 2785, 3475, 4713]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2926, 2398, 2187, 2022, 1906, 1864, 1829, 1786, 1758, 1775, 1769, 1825, 1935, 1962, 2111, 2342, 2727, 2620, 2249, 2028, 1905, 1805, 1726, 1683, 1624, 1597, 1601, 1641, 1692, 1797, 1872, 1997, 2162, 2415, 2400, 2112, 1932, 1806, 1713, 1616, 1533, 1487, 1466, 1479, 1520, 1596, 1684, 1767, 1889, 2054, 2245, 2243, 2025, 1854, 1732, 1616, 1511, 1406, 1371, 1336, 1360, 1399, 1492, 1596, 1706, 1839, 1961, 2170, 2156, 1935, 1769, 1654, 1529, 1394, 1304, 1251, 1220, 1240, 1297, 1372, 1523, 1643, 1788, 1913, 2056, 2107, 1865, 1748, 1615, 1462, 1327, 1220, 1165, 1144, 1149, 1188, 1298, 1445, 1583, 1730, 1864, 1988, 2018, 1831, 1678, 1545, 1408, 1267, 1163, 1091, 1065, 1071, 1132, 1233, 1375, 1540, 1687, 1835, 1941, 2017, 1824, 1676, 1518, 1372, 1241, 1128, 1066, 1031, 1038, 1102, 1200, 1347, 1502, 1677, 1829, 1942, 2003, 1809, 1656, 1495, 1348, 1225, 1123, 1052, 1024, 1038, 1093, 1199, 1340, 1514, 1648, 1827, 1964, 1973, 1798, 1662, 1511, 1359, 1230, 1116, 1064, 1034, 1047, 1106, 1211, 1356, 1510, 1690, 1840, 1978, 2026, 1814, 1700, 1539, 1390, 1258, 1157, 1097, 1071, 1096, 1144, 1270, 1383, 1532, 1722, 1849, 2004, 2094, 1836, 1710, 1565, 1425, 1307, 1220, 1153, 1133, 1151, 1206, 1298, 1448, 1604, 1725, 1892, 2082, 2136, 1902, 1734, 1627, 1509, 1385, 1286, 1228, 1225, 1240, 1289, 1391, 1512, 1661, 1778, 1942, 2272, 2269, 1931, 1824, 1689, 1562, 1481, 1396, 1319, 1316, 1335, 1406, 1501, 1631, 1728, 1856, 2091, 2552, 2495, 2076, 1866, 1766, 1653, 1570, 1501, 1466, 1450, 1465, 1531, 1606, 1698, 1820, 2009, 2349, 2953, 2931, 2324, 1976, 1859, 1767, 1677, 1610, 1588, 1565, 1596, 1644, 1706, 1803, 1988, 2249, 2766, 3617, 3601, 2771, 2350, 2037, 1886, 1819, 1770, 1743, 1712, 1756, 1802, 1880, 2031, 2285, 2725, 3424, 4846]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2804, 2296, 2080, 1964, 1798, 1722, 1718, 1700, 1671, 1640, 1717, 1757, 1799, 1904, 2003, 2246, 2590, 2412, 2081, 1885, 1756, 1655, 1647, 1576, 1542, 1499, 1544, 1595, 1644, 1684, 1770, 1839, 2012, 2308, 2319, 1997, 1809, 1686, 1597, 1527, 1463, 1420, 1404, 1428, 1479, 1510, 1606, 1689, 1797, 1940, 2180, 2108, 1897, 1722, 1657, 1523, 1438, 1341, 1334, 1295, 1335, 1374, 1423, 1518, 1625, 1692, 1870, 2075, 2081, 1781, 1701, 1584, 1472, 1351, 1271, 1248, 1207, 1221, 1273, 1358, 1455, 1584, 1685, 1816, 2041, 1993, 1802, 1624, 1497, 1398, 1291, 1195, 1154, 1117, 1136, 1182, 1258, 1390, 1537, 1655, 1792, 1960, 1909, 1756, 1612, 1477, 1355, 1219, 1149, 1083, 1061, 1078, 1127, 1241, 1351, 1501, 1633, 1787, 1936, 1924, 1724, 1571, 1438, 1330, 1207, 1117, 1048, 1024, 1047, 1108, 1191, 1320, 1455, 1614, 1772, 1924, 1919, 1708, 1596, 1429, 1299, 1174, 1115, 1042, 1024, 1035, 1102, 1196, 1326, 1472, 1606, 1758, 1918, 1936, 1748, 1594, 1430, 1299, 1194, 1105, 1057, 1030, 1044, 1123, 1185, 1324, 1453, 1618, 1755, 1914, 1970, 1703, 1595, 1451, 1339, 1211, 1131, 1089, 1081, 1090, 1141, 1232, 1365, 1499, 1662, 1785, 1920, 1952, 1743, 1615, 1494, 1355, 1271, 1204, 1136, 1125, 1174, 1215, 1302, 1403, 1543, 1655, 1828, 2080, 2047, 1771, 1669, 1547, 1427, 1336, 1274, 1209, 1225, 1236, 1285, 1369, 1479, 1618, 1713, 1846, 2200, 2144, 1871, 1693, 1599, 1502, 1416, 1360, 1309, 1315, 1328, 1370, 1465, 1561, 1692, 1789, 2007, 2487, 2394, 1954, 1774, 1658, 1591, 1505, 1462, 1432, 1432, 1450, 1503, 1542, 1665, 1731, 1915, 2265, 2955, 2705, 2153, 1825, 1702, 1653, 1603, 1548, 1525, 1522, 1537, 1609, 1657, 1736, 1850, 2170, 2599, 3524, 3405, 2609, 2203, 1884, 1801, 1753, 1682, 1684, 1659, 1703, 1719, 1833, 1952, 2222, 2533, 3270, 4543]
                                       }
                                   }, {
                                       "name":    "1600x1200_A_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4473, 3529, 3108, 2818, 2493, 2331, 2256, 2214, 2156, 2173, 2255, 2337, 2510, 2630, 2876, 3349, 4037, 3890, 3231, 2768, 2494, 2341, 2120, 1995, 1917, 1912, 1900, 1980, 2131, 2257, 2460, 2659, 2994, 3541, 3536, 2962, 2555, 2337, 2098, 1904, 1786, 1712, 1662, 1700, 1768, 1901, 2061, 2278, 2467, 2821, 3284, 3305, 2748, 2388, 2164, 1935, 1746, 1601, 1499, 1450, 1503, 1560, 1712, 1884, 2129, 2343, 2608, 3050, 3086, 2596, 2278, 2001, 1801, 1578, 1438, 1347, 1296, 1325, 1401, 1547, 1743, 1969, 2232, 2476, 2851, 2941, 2482, 2180, 1906, 1694, 1453, 1309, 1212, 1174, 1191, 1269, 1414, 1626, 1872, 2144, 2429, 2725, 2835, 2423, 2083, 1817, 1567, 1371, 1222, 1115, 1086, 1101, 1164, 1306, 1522, 1777, 2045, 2343, 2638, 2787, 2392, 2076, 1771, 1531, 1304, 1167, 1081, 1028, 1048, 1120, 1255, 1491, 1722, 2039, 2328, 2584, 2815, 2406, 2096, 1781, 1529, 1304, 1151, 1064, 1024, 1046, 1111, 1260, 1459, 1711, 1999, 2331, 2609, 2836, 2421, 2116, 1815, 1546, 1318, 1170, 1081, 1034, 1069, 1144, 1285, 1489, 1752, 2059, 2369, 2667, 2940, 2469, 2158, 1890, 1620, 1397, 1241, 1146, 1112, 1135, 1214, 1336, 1541, 1792, 2096, 2408, 2705, 3011, 2558, 2247, 1993, 1701, 1500, 1344, 1234, 1192, 1216, 1300, 1452, 1638, 1936, 2184, 2470, 2880, 3185, 2670, 2401, 2102, 1858, 1632, 1465, 1351, 1323, 1353, 1439, 1571, 1786, 2031, 2319, 2632, 3273, 3389, 2815, 2522, 2203, 2017, 1765, 1654, 1532, 1489, 1515, 1599, 1760, 1948, 2209, 2459, 2842, 3630, 3810, 3009, 2652, 2432, 2185, 1978, 1849, 1746, 1695, 1720, 1817, 1956, 2154, 2382, 2689, 3325, 4461, 4623, 3506, 2837, 2580, 2370, 2192, 2067, 1962, 1924, 1981, 2047, 2161, 2368, 2646, 3203, 4045, 5483, 5952, 4324, 3477, 2890, 2634, 2477, 2348, 2264, 2206, 2223, 2317, 2500, 2798, 3247, 3961, 5199, 7459]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3407, 2715, 2348, 2130, 1983, 1926, 1853, 1804, 1822, 1804, 1859, 1948, 2016, 2099, 2377, 2698, 3353, 2952, 2485, 2181, 1954, 1820, 1715, 1661, 1614, 1599, 1643, 1669, 1751, 1867, 1977, 2114, 2450, 2857, 2717, 2296, 1963, 1823, 1697, 1587, 1514, 1469, 1475, 1504, 1529, 1619, 1738, 1874, 2029, 2264, 2610, 2467, 2100, 1858, 1737, 1588, 1475, 1375, 1349, 1324, 1362, 1384, 1487, 1625, 1801, 1919, 2142, 2431, 2351, 1996, 1801, 1629, 1503, 1380, 1274, 1232, 1222, 1232, 1275, 1369, 1509, 1658, 1866, 2025, 2320, 2273, 1928, 1746, 1570, 1411, 1279, 1191, 1141, 1123, 1139, 1183, 1279, 1435, 1628, 1798, 1990, 2212, 2213, 1901, 1720, 1540, 1365, 1229, 1125, 1089, 1063, 1069, 1136, 1226, 1384, 1538, 1731, 1978, 2147, 2143, 1862, 1669, 1489, 1343, 1192, 1101, 1048, 1029, 1034, 1082, 1198, 1355, 1525, 1727, 1929, 2146, 2166, 1897, 1683, 1505, 1334, 1200, 1103, 1034, 1024, 1029, 1088, 1184, 1355, 1519, 1726, 1939, 2127, 2164, 1902, 1679, 1517, 1355, 1215, 1122, 1063, 1038, 1049, 1108, 1216, 1359, 1538, 1754, 1966, 2176, 2229, 1934, 1751, 1565, 1393, 1264, 1169, 1108, 1087, 1113, 1157, 1263, 1403, 1602, 1784, 2023, 2206, 2269, 2006, 1822, 1663, 1473, 1335, 1245, 1177, 1158, 1175, 1224, 1332, 1488, 1661, 1842, 2086, 2355, 2453, 2093, 1915, 1737, 1589, 1446, 1323, 1282, 1261, 1274, 1344, 1429, 1568, 1770, 1932, 2141, 2620, 2618, 2225, 1987, 1827, 1706, 1560, 1465, 1408, 1385, 1402, 1466, 1541, 1708, 1868, 2013, 2343, 2968, 2971, 2395, 2083, 1924, 1820, 1724, 1615, 1574, 1557, 1565, 1628, 1723, 1828, 1994, 2201, 2739, 3607, 3597, 2789, 2284, 2091, 1949, 1836, 1798, 1724, 1718, 1731, 1798, 1862, 2003, 2228, 2657, 3363, 4633, 4889, 3434, 2765, 2332, 2156, 1998, 1960, 1937, 1894, 1927, 1992, 2079, 2279, 2688, 3271, 4306, 6294]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3741, 2864, 2509, 2249, 2073, 2000, 1943, 1885, 1851, 1873, 1875, 1954, 2108, 2175, 2412, 2789, 3457, 3217, 2613, 2268, 2074, 1927, 1817, 1756, 1683, 1652, 1658, 1709, 1778, 1918, 2035, 2229, 2501, 2935, 2862, 2399, 2120, 1933, 1801, 1676, 1575, 1521, 1497, 1512, 1561, 1654, 1768, 1888, 2069, 2326, 2654, 2615, 2262, 2005, 1830, 1678, 1549, 1429, 1389, 1351, 1377, 1422, 1529, 1656, 1800, 1987, 2182, 2519, 2474, 2131, 1890, 1729, 1573, 1417, 1316, 1259, 1226, 1247, 1309, 1393, 1566, 1717, 1912, 2104, 2346, 2392, 2032, 1854, 1677, 1493, 1341, 1226, 1168, 1146, 1152, 1193, 1311, 1475, 1641, 1833, 2031, 2241, 2267, 1982, 1766, 1594, 1432, 1276, 1166, 1092, 1065, 1071, 1134, 1241, 1397, 1589, 1777, 1986, 2171, 2258, 1968, 1760, 1562, 1391, 1248, 1130, 1066, 1031, 1038, 1103, 1206, 1365, 1544, 1761, 1974, 2165, 2238, 1948, 1736, 1535, 1366, 1231, 1124, 1052, 1024, 1038, 1094, 1204, 1357, 1556, 1727, 1970, 2190, 2204, 1937, 1744, 1554, 1378, 1237, 1117, 1064, 1034, 1047, 1107, 1217, 1375, 1553, 1776, 1987, 2210, 2277, 1961, 1792, 1588, 1413, 1267, 1160, 1098, 1071, 1097, 1146, 1279, 1405, 1580, 1816, 2003, 2250, 2375, 1997, 1810, 1622, 1454, 1320, 1226, 1156, 1135, 1154, 1211, 1311, 1478, 1665, 1827, 2064, 2360, 2449, 2091, 1849, 1699, 1551, 1407, 1297, 1235, 1231, 1247, 1301, 1413, 1554, 1737, 1900, 2139, 2622, 2648, 2145, 1969, 1781, 1618, 1517, 1419, 1334, 1330, 1351, 1429, 1539, 1694, 1826, 2007, 2343, 3018, 2988, 2354, 2041, 1887, 1733, 1626, 1541, 1498, 1479, 1497, 1573, 1665, 1784, 1950, 2213, 2699, 3600, 3645, 2711, 2203, 2019, 1883, 1761, 1675, 1644, 1617, 1653, 1712, 1794, 1924, 2173, 2541, 3284, 4588, 4705, 3363, 2717, 2268, 2050, 1948, 1876, 1837, 1799, 1852, 1913, 2018, 2222, 2572, 3195, 4238, 6484]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3567, 2727, 2372, 2178, 1945, 1835, 1817, 1788, 1753, 1721, 1815, 1875, 1946, 2104, 2274, 2661, 3261, 2931, 2396, 2091, 1897, 1754, 1727, 1637, 1593, 1544, 1596, 1658, 1724, 1787, 1913, 2033, 2306, 2788, 2753, 2254, 1972, 1794, 1670, 1578, 1500, 1449, 1430, 1457, 1517, 1559, 1680, 1797, 1957, 2182, 2568, 2438, 2104, 1849, 1745, 1575, 1471, 1360, 1350, 1308, 1351, 1395, 1455, 1570, 1708, 1813, 2070, 2395, 2378, 1943, 1811, 1651, 1511, 1371, 1282, 1255, 1212, 1228, 1284, 1378, 1492, 1651, 1792, 1986, 2327, 2248, 1956, 1712, 1547, 1425, 1304, 1200, 1157, 1119, 1138, 1187, 1269, 1416, 1591, 1747, 1944, 2206, 2131, 1893, 1692, 1520, 1375, 1226, 1152, 1084, 1061, 1079, 1129, 1249, 1371, 1546, 1716, 1930, 2164, 2143, 1850, 1641, 1475, 1347, 1213, 1118, 1048, 1024, 1047, 1109, 1196, 1337, 1493, 1690, 1906, 2143, 2134, 1829, 1669, 1464, 1314, 1179, 1116, 1042, 1024, 1035, 1103, 1201, 1342, 1511, 1680, 1888, 2133, 2158, 1878, 1668, 1466, 1314, 1199, 1106, 1057, 1030, 1044, 1125, 1190, 1341, 1491, 1695, 1886, 2130, 2207, 1830, 1672, 1491, 1358, 1218, 1133, 1090, 1081, 1091, 1143, 1240, 1386, 1544, 1748, 1927, 2144, 2196, 1885, 1701, 1543, 1379, 1283, 1209, 1138, 1127, 1177, 1221, 1315, 1430, 1597, 1747, 1988, 2358, 2334, 1932, 1773, 1609, 1462, 1355, 1285, 1215, 1231, 1243, 1296, 1390, 1518, 1689, 1824, 2023, 2531, 2485, 2071, 1815, 1679, 1552, 1447, 1381, 1323, 1329, 1343, 1391, 1500, 1617, 1784, 1928, 2239, 2933, 2853, 2199, 1930, 1761, 1664, 1554, 1498, 1462, 1460, 1481, 1543, 1595, 1747, 1846, 2100, 2593, 3602, 3334, 2489, 2016, 1832, 1751, 1678, 1606, 1575, 1570, 1588, 1673, 1739, 1847, 2009, 2443, 3068, 4459, 4425, 3146, 2529, 2080, 1948, 1871, 1776, 1770, 1740, 1792, 1818, 1964, 2128, 2495, 2950, 4032, 6051]
                                       }
                                   }, {
                                       "name":    "1600x1200_CWF_70",
                                       "resolution":    "1600x1200",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2816, 2305, 2117, 1975, 1820, 1765, 1710, 1660, 1647, 1664, 1669, 1743, 1806, 1874, 2029, 2194, 2486, 2464, 2164, 1943, 1809, 1715, 1628, 1568, 1527, 1511, 1524, 1573, 1623, 1699, 1751, 1860, 2039, 2320, 2316, 2037, 1825, 1719, 1616, 1527, 1455, 1403, 1404, 1411, 1456, 1527, 1574, 1669, 1795, 1932, 2149, 2200, 1906, 1743, 1635, 1526, 1438, 1346, 1289, 1288, 1286, 1352, 1423, 1516, 1610, 1708, 1857, 2039, 2092, 1840, 1682, 1551, 1459, 1344, 1261, 1203, 1197, 1191, 1244, 1339, 1436, 1548, 1677, 1789, 1941, 2003, 1788, 1650, 1500, 1374, 1282, 1190, 1134, 1135, 1125, 1160, 1245, 1362, 1497, 1627, 1733, 1881, 1970, 1767, 1609, 1465, 1334, 1230, 1136, 1079, 1063, 1064, 1098, 1200, 1325, 1447, 1585, 1710, 1864, 1980, 1728, 1609, 1456, 1309, 1199, 1124, 1054, 1024, 1036, 1084, 1165, 1283, 1408, 1560, 1707, 1847, 1933, 1727, 1610, 1445, 1319, 1195, 1122, 1058, 1025, 1043, 1084, 1171, 1276, 1422, 1564, 1718, 1841, 1936, 1718, 1609, 1460, 1325, 1194, 1123, 1072, 1041, 1059, 1106, 1185, 1301, 1447, 1586, 1693, 1850, 1994, 1792, 1647, 1522, 1388, 1254, 1178, 1110, 1085, 1123, 1155, 1227, 1344, 1477, 1614, 1728, 1875, 2026, 1857, 1683, 1584, 1427, 1330, 1239, 1157, 1151, 1170, 1213, 1294, 1399, 1531, 1659, 1762, 1945, 2158, 1904, 1760, 1606, 1508, 1386, 1301, 1248, 1221, 1231, 1296, 1366, 1475, 1603, 1735, 1858, 2190, 2214, 1961, 1811, 1690, 1590, 1472, 1414, 1329, 1309, 1331, 1375, 1475, 1555, 1677, 1798, 2031, 2448, 2520, 2115, 1882, 1775, 1684, 1595, 1519, 1464, 1446, 1479, 1516, 1589, 1640, 1755, 1954, 2288, 2935, 2941, 2353, 1993, 1878, 1779, 1701, 1617, 1568, 1564, 1556, 1608, 1675, 1784, 1919, 2220, 2733, 3527, 3705, 2797, 2361, 2032, 1907, 1815, 1756, 1747, 1694, 1747, 1759, 1850, 2021, 2277, 2665, 3352, 4525]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2513, 2141, 1952, 1805, 1700, 1658, 1591, 1586, 1596, 1588, 1625, 1641, 1706, 1789, 1926, 2122, 2466, 2242, 1987, 1797, 1672, 1593, 1514, 1501, 1450, 1450, 1473, 1511, 1548, 1623, 1709, 1777, 1993, 2213, 2119, 1880, 1679, 1599, 1523, 1452, 1398, 1373, 1363, 1377, 1402, 1448, 1537, 1618, 1720, 1874, 2056, 1994, 1754, 1634, 1538, 1430, 1358, 1293, 1261, 1262, 1274, 1309, 1374, 1478, 1583, 1666, 1791, 1925, 1931, 1713, 1560, 1483, 1382, 1294, 1227, 1190, 1172, 1181, 1214, 1289, 1397, 1505, 1607, 1759, 1902, 1873, 1651, 1544, 1438, 1323, 1215, 1154, 1126, 1093, 1122, 1143, 1228, 1341, 1473, 1585, 1720, 1832, 1807, 1643, 1522, 1391, 1298, 1178, 1111, 1074, 1062, 1064, 1101, 1174, 1305, 1428, 1572, 1697, 1782, 1816, 1633, 1531, 1377, 1278, 1169, 1076, 1044, 1027, 1029, 1068, 1160, 1275, 1407, 1565, 1682, 1796, 1814, 1643, 1513, 1379, 1263, 1153, 1084, 1026, 1024, 1031, 1082, 1167, 1292, 1395, 1562, 1700, 1792, 1816, 1645, 1503, 1399, 1283, 1180, 1110, 1050, 1033, 1057, 1103, 1190, 1299, 1422, 1563, 1711, 1808, 1867, 1672, 1593, 1438, 1323, 1212, 1146, 1101, 1083, 1105, 1134, 1215, 1340, 1469, 1596, 1724, 1865, 1917, 1722, 1607, 1505, 1365, 1282, 1189, 1159, 1127, 1159, 1191, 1266, 1376, 1506, 1632, 1764, 1933, 1989, 1760, 1662, 1567, 1459, 1354, 1287, 1244, 1230, 1236, 1290, 1343, 1460, 1589, 1693, 1789, 2101, 2079, 1842, 1725, 1624, 1525, 1445, 1380, 1339, 1329, 1329, 1370, 1456, 1557, 1656, 1727, 1959, 2356, 2338, 1938, 1782, 1732, 1628, 1563, 1488, 1466, 1435, 1458, 1480, 1560, 1652, 1716, 1873, 2207, 2836, 2725, 2184, 1909, 1774, 1717, 1638, 1603, 1577, 1536, 1581, 1608, 1658, 1745, 1910, 2149, 2637, 3394, 3398, 2597, 2209, 1930, 1812, 1768, 1719, 1737, 1665, 1720, 1752, 1802, 1932, 2194, 2571, 3205, 4483]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2698, 2234, 2025, 1914, 1799, 1711, 1694, 1655, 1621, 1638, 1682, 1729, 1779, 1840, 1956, 2149, 2479, 2340, 2087, 1873, 1765, 1703, 1617, 1560, 1541, 1520, 1533, 1541, 1607, 1689, 1741, 1808, 1999, 2249, 2226, 1949, 1784, 1701, 1592, 1531, 1456, 1419, 1410, 1405, 1450, 1505, 1583, 1672, 1764, 1894, 2102, 2080, 1865, 1726, 1618, 1532, 1435, 1352, 1327, 1283, 1309, 1334, 1401, 1498, 1607, 1686, 1800, 1974, 2001, 1818, 1633, 1558, 1450, 1331, 1265, 1207, 1183, 1211, 1250, 1323, 1447, 1524, 1651, 1754, 1888, 1958, 1760, 1624, 1511, 1365, 1279, 1184, 1140, 1115, 1130, 1165, 1247, 1360, 1482, 1609, 1724, 1866, 1900, 1702, 1581, 1469, 1347, 1220, 1158, 1086, 1053, 1060, 1101, 1209, 1312, 1434, 1567, 1691, 1833, 1864, 1677, 1554, 1436, 1306, 1195, 1099, 1055, 1031, 1040, 1071, 1165, 1275, 1400, 1543, 1684, 1784, 1866, 1664, 1547, 1413, 1282, 1174, 1093, 1049, 1024, 1032, 1088, 1162, 1280, 1414, 1544, 1679, 1808, 1850, 1674, 1535, 1423, 1302, 1180, 1102, 1061, 1030, 1046, 1078, 1165, 1283, 1432, 1568, 1683, 1841, 1857, 1690, 1560, 1451, 1320, 1208, 1123, 1074, 1071, 1079, 1120, 1208, 1316, 1434, 1591, 1725, 1863, 1916, 1712, 1589, 1478, 1346, 1252, 1162, 1125, 1125, 1137, 1173, 1253, 1373, 1502, 1609, 1746, 1954, 1980, 1749, 1616, 1517, 1422, 1327, 1238, 1219, 1183, 1213, 1247, 1325, 1437, 1568, 1648, 1787, 2104, 2082, 1809, 1695, 1583, 1483, 1384, 1323, 1289, 1277, 1297, 1343, 1410, 1523, 1636, 1725, 1928, 2312, 2294, 1932, 1753, 1652, 1544, 1473, 1438, 1395, 1400, 1403, 1448, 1525, 1588, 1698, 1846, 2165, 2774, 2724, 2165, 1843, 1705, 1640, 1569, 1533, 1517, 1482, 1514, 1546, 1605, 1692, 1854, 2065, 2578, 3369, 3368, 2591, 2177, 1866, 1744, 1714, 1646, 1647, 1617, 1681, 1648, 1757, 1898, 2137, 2564, 3167, 4406]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2535, 2096, 1909, 1800, 1659, 1609, 1604, 1559, 1557, 1556, 1581, 1621, 1658, 1748, 1822, 2053, 2410, 2193, 1942, 1735, 1642, 1585, 1500, 1455, 1424, 1424, 1442, 1469, 1497, 1580, 1639, 1692, 1879, 2188, 2081, 1832, 1665, 1537, 1513, 1450, 1366, 1321, 1313, 1351, 1372, 1421, 1497, 1591, 1654, 1786, 2046, 1967, 1737, 1593, 1548, 1448, 1351, 1289, 1261, 1247, 1274, 1298, 1334, 1430, 1532, 1593, 1713, 1906, 1934, 1668, 1552, 1472, 1369, 1286, 1211, 1186, 1164, 1182, 1213, 1277, 1365, 1456, 1555, 1674, 1876, 1833, 1637, 1530, 1430, 1318, 1228, 1167, 1129, 1104, 1127, 1143, 1243, 1297, 1412, 1527, 1621, 1804, 1771, 1595, 1493, 1388, 1285, 1192, 1117, 1080, 1045, 1060, 1116, 1176, 1270, 1376, 1501, 1620, 1739, 1713, 1601, 1475, 1367, 1261, 1165, 1097, 1067, 1037, 1059, 1085, 1155, 1245, 1373, 1464, 1635, 1736, 1764, 1596, 1466, 1354, 1249, 1168, 1091, 1060, 1024, 1039, 1086, 1169, 1255, 1352, 1481, 1618, 1755, 1773, 1575, 1469, 1362, 1248, 1140, 1098, 1065, 1043, 1054, 1092, 1159, 1265, 1368, 1487, 1639, 1761, 1813, 1612, 1478, 1374, 1267, 1165, 1138, 1086, 1086, 1090, 1132, 1197, 1314, 1390, 1527, 1627, 1778, 1809, 1611, 1492, 1396, 1312, 1195, 1143, 1156, 1114, 1148, 1190, 1230, 1331, 1437, 1535, 1662, 1900, 1852, 1654, 1541, 1452, 1379, 1266, 1215, 1199, 1183, 1212, 1245, 1315, 1406, 1495, 1609, 1689, 2051, 1987, 1700, 1569, 1497, 1419, 1359, 1295, 1254, 1262, 1279, 1324, 1390, 1459, 1546, 1646, 1823, 2230, 2177, 1785, 1636, 1550, 1491, 1418, 1380, 1365, 1362, 1375, 1412, 1452, 1559, 1605, 1730, 2054, 2694, 2556, 2010, 1686, 1616, 1567, 1480, 1463, 1448, 1433, 1474, 1508, 1547, 1623, 1721, 1970, 2437, 3295, 3333, 2423, 1999, 1768, 1682, 1627, 1576, 1568, 1595, 1592, 1649, 1686, 1778, 2053, 2491, 3013, 4339]
                                       }
                                   }, {
                                       "name":    "1600x1200_CWF_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3584, 2740, 2419, 2192, 1971, 1885, 1808, 1743, 1726, 1748, 1761, 1859, 1954, 2067, 2307, 2591, 3113, 3003, 2503, 2162, 1960, 1823, 1706, 1628, 1577, 1558, 1574, 1634, 1700, 1804, 1891, 2060, 2341, 2805, 2749, 2304, 1991, 1832, 1692, 1578, 1491, 1431, 1430, 1439, 1492, 1578, 1644, 1774, 1955, 2172, 2526, 2558, 2114, 1874, 1720, 1579, 1471, 1366, 1302, 1300, 1299, 1372, 1455, 1567, 1691, 1833, 2054, 2348, 2392, 2015, 1788, 1614, 1496, 1364, 1271, 1209, 1202, 1197, 1254, 1358, 1471, 1610, 1783, 1953, 2199, 2261, 1940, 1741, 1550, 1399, 1294, 1195, 1136, 1137, 1127, 1164, 1255, 1386, 1547, 1715, 1874, 2106, 2207, 1906, 1688, 1507, 1353, 1238, 1138, 1080, 1063, 1064, 1100, 1207, 1344, 1487, 1661, 1838, 2074, 2212, 1855, 1685, 1494, 1325, 1205, 1126, 1054, 1024, 1036, 1085, 1169, 1297, 1442, 1629, 1830, 2047, 2152, 1852, 1684, 1481, 1335, 1200, 1123, 1058, 1025, 1043, 1085, 1175, 1290, 1456, 1633, 1841, 2037, 2158, 1843, 1685, 1498, 1342, 1199, 1125, 1072, 1041, 1059, 1107, 1190, 1317, 1484, 1658, 1813, 2051, 2237, 1936, 1731, 1569, 1411, 1263, 1181, 1111, 1085, 1124, 1158, 1235, 1364, 1520, 1694, 1860, 2088, 2290, 2022, 1779, 1643, 1456, 1344, 1245, 1160, 1153, 1173, 1219, 1307, 1426, 1584, 1752, 1908, 2187, 2477, 2093, 1879, 1675, 1550, 1408, 1313, 1255, 1227, 1238, 1308, 1387, 1514, 1672, 1850, 2037, 2517, 2577, 2183, 1954, 1782, 1649, 1507, 1438, 1345, 1323, 1347, 1396, 1511, 1610, 1767, 1939, 2269, 2882, 3022, 2403, 2060, 1897, 1768, 1653, 1560, 1496, 1475, 1512, 1557, 1646, 1719, 1874, 2147, 2621, 3576, 3658, 2748, 2224, 2042, 1897, 1788, 1682, 1622, 1615, 1609, 1672, 1759, 1902, 2091, 2505, 3242, 4464, 4854, 3398, 2730, 2261, 2075, 1943, 1860, 1841, 1779, 1841, 1864, 1983, 2210, 2562, 3118, 4141, 6026]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3151, 2520, 2209, 1983, 1828, 1760, 1672, 1659, 1668, 1662, 1710, 1741, 1835, 1963, 2175, 2495, 3084, 2698, 2274, 1982, 1797, 1682, 1577, 1553, 1492, 1491, 1518, 1565, 1616, 1716, 1841, 1957, 2281, 2658, 2486, 2106, 1815, 1693, 1587, 1495, 1429, 1398, 1386, 1403, 1434, 1491, 1603, 1715, 1864, 2098, 2402, 2290, 1926, 1745, 1609, 1473, 1384, 1310, 1273, 1273, 1287, 1326, 1402, 1526, 1661, 1783, 1972, 2200, 2186, 1861, 1647, 1538, 1413, 1310, 1236, 1196, 1176, 1186, 1222, 1305, 1429, 1562, 1701, 1917, 2149, 2096, 1775, 1620, 1481, 1345, 1224, 1158, 1128, 1094, 1124, 1147, 1238, 1364, 1520, 1667, 1858, 2045, 2003, 1759, 1589, 1426, 1315, 1184, 1113, 1075, 1062, 1064, 1103, 1180, 1322, 1466, 1646, 1823, 1972, 2009, 1742, 1596, 1408, 1292, 1174, 1077, 1044, 1027, 1029, 1069, 1164, 1289, 1441, 1635, 1800, 1983, 2004, 1753, 1575, 1410, 1276, 1157, 1085, 1026, 1024, 1031, 1083, 1171, 1307, 1427, 1630, 1820, 1977, 2009, 1757, 1565, 1432, 1298, 1185, 1111, 1050, 1033, 1057, 1104, 1195, 1314, 1457, 1633, 1835, 1998, 2078, 1793, 1670, 1477, 1342, 1219, 1149, 1102, 1083, 1106, 1136, 1222, 1360, 1511, 1674, 1855, 2075, 2152, 1860, 1692, 1555, 1390, 1294, 1194, 1162, 1129, 1162, 1196, 1277, 1401, 1556, 1721, 1911, 2172, 2260, 1918, 1765, 1632, 1496, 1374, 1299, 1251, 1236, 1243, 1302, 1363, 1498, 1656, 1801, 1953, 2403, 2400, 2035, 1853, 1707, 1577, 1478, 1402, 1355, 1343, 1345, 1391, 1490, 1613, 1743, 1855, 2180, 2762, 2779, 2179, 1939, 1847, 1705, 1618, 1527, 1498, 1463, 1490, 1518, 1614, 1732, 1828, 2049, 2519, 3444, 3362, 2529, 2120, 1918, 1825, 1717, 1667, 1632, 1585, 1636, 1672, 1740, 1858, 2080, 2417, 3117, 4281, 4416, 3130, 2537, 2136, 1962, 1888, 1818, 1830, 1746, 1811, 1856, 1928, 2104, 2460, 2999, 3945, 5966]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3416, 2645, 2301, 2116, 1946, 1822, 1789, 1737, 1697, 1718, 1776, 1843, 1922, 2026, 2213, 2530, 3103, 2833, 2403, 2076, 1907, 1809, 1694, 1619, 1592, 1567, 1583, 1598, 1682, 1793, 1879, 1995, 2289, 2707, 2629, 2193, 1942, 1811, 1665, 1583, 1492, 1448, 1437, 1433, 1486, 1554, 1654, 1777, 1918, 2124, 2464, 2402, 2064, 1854, 1700, 1585, 1468, 1372, 1342, 1295, 1323, 1353, 1431, 1548, 1688, 1807, 1984, 2264, 2276, 1988, 1732, 1622, 1487, 1350, 1276, 1213, 1188, 1217, 1260, 1341, 1483, 1584, 1752, 1911, 2131, 2204, 1906, 1712, 1562, 1389, 1291, 1189, 1142, 1117, 1132, 1169, 1258, 1384, 1530, 1694, 1863, 2088, 2119, 1829, 1656, 1511, 1367, 1227, 1161, 1087, 1053, 1060, 1103, 1216, 1330, 1473, 1640, 1815, 2036, 2068, 1795, 1622, 1472, 1322, 1200, 1100, 1055, 1031, 1040, 1072, 1170, 1289, 1433, 1610, 1803, 1969, 2068, 1778, 1613, 1446, 1296, 1178, 1094, 1049, 1024, 1032, 1089, 1166, 1294, 1448, 1610, 1795, 1997, 2051, 1791, 1601, 1458, 1318, 1185, 1103, 1061, 1030, 1046, 1079, 1170, 1297, 1468, 1638, 1802, 2039, 2066, 1814, 1633, 1491, 1338, 1215, 1125, 1075, 1071, 1080, 1122, 1215, 1334, 1473, 1668, 1856, 2073, 2151, 1849, 1672, 1525, 1369, 1263, 1166, 1127, 1127, 1139, 1177, 1264, 1398, 1552, 1694, 1889, 2199, 2248, 1905, 1712, 1576, 1456, 1346, 1247, 1225, 1188, 1219, 1257, 1343, 1473, 1633, 1749, 1951, 2407, 2404, 1995, 1817, 1660, 1531, 1412, 1341, 1302, 1289, 1311, 1363, 1441, 1575, 1721, 1852, 2142, 2705, 2720, 2172, 1904, 1754, 1611, 1519, 1473, 1422, 1426, 1431, 1483, 1576, 1660, 1808, 2017, 2466, 3361, 3360, 2504, 2038, 1836, 1736, 1639, 1589, 1566, 1526, 1563, 1604, 1680, 1796, 2013, 2314, 3040, 4246, 4373, 3123, 2496, 2058, 1881, 1826, 1734, 1728, 1692, 1767, 1737, 1876, 2064, 2390, 2989, 3894, 5855]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3183, 2460, 2154, 1976, 1779, 1704, 1686, 1629, 1625, 1625, 1660, 1717, 1778, 1913, 2043, 2402, 3004, 2630, 2215, 1905, 1761, 1673, 1561, 1503, 1464, 1462, 1483, 1518, 1558, 1667, 1757, 1851, 2133, 2623, 2435, 2045, 1798, 1621, 1575, 1493, 1395, 1343, 1333, 1375, 1401, 1461, 1557, 1683, 1785, 1987, 2389, 2255, 1906, 1696, 1621, 1492, 1377, 1305, 1273, 1258, 1287, 1315, 1359, 1472, 1602, 1696, 1876, 2175, 2190, 1806, 1637, 1525, 1399, 1302, 1219, 1191, 1168, 1187, 1221, 1292, 1394, 1508, 1641, 1813, 2116, 2046, 1759, 1604, 1472, 1339, 1238, 1171, 1131, 1105, 1129, 1147, 1253, 1317, 1453, 1601, 1739, 2009, 1958, 1702, 1557, 1422, 1301, 1198, 1119, 1081, 1045, 1060, 1118, 1182, 1285, 1409, 1566, 1731, 1918, 1881, 1705, 1533, 1397, 1274, 1170, 1098, 1067, 1037, 1059, 1086, 1159, 1257, 1404, 1521, 1745, 1909, 1942, 1698, 1522, 1382, 1261, 1172, 1092, 1060, 1024, 1039, 1087, 1173, 1268, 1380, 1539, 1724, 1931, 1955, 1674, 1526, 1392, 1261, 1144, 1099, 1065, 1043, 1054, 1093, 1163, 1279, 1398, 1547, 1750, 1940, 2011, 1722, 1540, 1407, 1282, 1170, 1140, 1087, 1086, 1091, 1134, 1204, 1332, 1424, 1595, 1740, 1967, 2016, 1728, 1560, 1435, 1333, 1203, 1147, 1159, 1116, 1151, 1195, 1240, 1353, 1480, 1610, 1788, 2130, 2084, 1789, 1625, 1503, 1410, 1281, 1223, 1205, 1188, 1218, 1255, 1333, 1439, 1551, 1704, 1832, 2339, 2281, 1860, 1668, 1562, 1460, 1386, 1312, 1266, 1273, 1292, 1342, 1419, 1505, 1618, 1759, 2012, 2598, 2564, 1986, 1763, 1636, 1551, 1458, 1410, 1390, 1385, 1401, 1444, 1496, 1627, 1699, 1877, 2326, 3254, 3130, 2303, 1844, 1730, 1652, 1539, 1511, 1490, 1472, 1519, 1561, 1614, 1717, 1855, 2196, 2857, 4145, 4322, 2897, 2268, 1937, 1807, 1724, 1655, 1639, 1667, 1666, 1738, 1793, 1921, 2287, 2896, 3687, 5760]
                                       }
                                   }, {
                                       "name":    "1600x1200_D50_70",
                                       "resolution":    "1600x1200",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2948, 2431, 2153, 2059, 1901, 1785, 1732, 1738, 1682, 1681, 1727, 1754, 1843, 1902, 2029, 2270, 2577, 2578, 2242, 1989, 1868, 1763, 1667, 1609, 1551, 1547, 1559, 1585, 1636, 1741, 1799, 1894, 2094, 2381, 2370, 2083, 1877, 1753, 1656, 1551, 1485, 1433, 1411, 1433, 1478, 1543, 1629, 1713, 1804, 1953, 2135, 2297, 1946, 1826, 1687, 1564, 1455, 1382, 1319, 1293, 1308, 1359, 1453, 1535, 1664, 1725, 1877, 2080, 2161, 1881, 1724, 1615, 1465, 1367, 1296, 1227, 1202, 1216, 1265, 1356, 1446, 1556, 1682, 1804, 1956, 2080, 1832, 1682, 1564, 1421, 1294, 1206, 1148, 1136, 1143, 1178, 1271, 1386, 1508, 1650, 1764, 1918, 2049, 1808, 1662, 1495, 1360, 1254, 1142, 1088, 1063, 1077, 1118, 1212, 1318, 1462, 1589, 1722, 1865, 2052, 1788, 1625, 1472, 1346, 1204, 1118, 1055, 1045, 1046, 1089, 1173, 1281, 1423, 1561, 1705, 1849, 1988, 1792, 1638, 1483, 1333, 1196, 1108, 1053, 1024, 1044, 1081, 1172, 1289, 1435, 1559, 1684, 1866, 2022, 1805, 1646, 1466, 1355, 1227, 1133, 1064, 1038, 1064, 1100, 1196, 1293, 1439, 1585, 1726, 1879, 2056, 1863, 1695, 1568, 1403, 1250, 1183, 1118, 1093, 1104, 1140, 1235, 1340, 1485, 1657, 1737, 1875, 2071, 1864, 1725, 1585, 1451, 1329, 1229, 1163, 1138, 1152, 1204, 1289, 1399, 1531, 1646, 1797, 1922, 2172, 1928, 1794, 1672, 1534, 1413, 1314, 1250, 1238, 1241, 1300, 1362, 1471, 1587, 1707, 1812, 1968, 2298, 1997, 1851, 1744, 1607, 1511, 1418, 1350, 1329, 1332, 1379, 1460, 1564, 1692, 1786, 1906, 2095, 2413, 2112, 1947, 1835, 1689, 1612, 1516, 1453, 1431, 1450, 1485, 1585, 1655, 1722, 1856, 1975, 2200, 2702, 2213, 2018, 1870, 1788, 1701, 1628, 1571, 1558, 1582, 1594, 1654, 1760, 1824, 1927, 2114, 2368, 3221, 2549, 2206, 2014, 1913, 1844, 1763, 1717, 1700, 1713, 1756, 1811, 1838, 1955, 2079, 2299, 2682]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2659, 2242, 2014, 1854, 1740, 1690, 1638, 1638, 1615, 1625, 1654, 1659, 1750, 1813, 1975, 2163, 2484, 2387, 2062, 1843, 1708, 1629, 1571, 1537, 1501, 1492, 1500, 1534, 1599, 1649, 1712, 1821, 1997, 2236, 2201, 1935, 1730, 1643, 1562, 1477, 1425, 1384, 1379, 1397, 1429, 1479, 1567, 1648, 1737, 1913, 2119, 2080, 1819, 1670, 1584, 1478, 1371, 1328, 1292, 1270, 1296, 1324, 1386, 1499, 1607, 1693, 1824, 1971, 1985, 1767, 1645, 1507, 1396, 1314, 1244, 1208, 1189, 1201, 1238, 1307, 1417, 1532, 1634, 1759, 1897, 1916, 1725, 1592, 1469, 1365, 1246, 1167, 1136, 1093, 1132, 1156, 1230, 1346, 1493, 1613, 1733, 1862, 1881, 1685, 1567, 1441, 1307, 1183, 1117, 1077, 1068, 1078, 1114, 1199, 1305, 1445, 1574, 1712, 1825, 1878, 1692, 1550, 1406, 1290, 1185, 1105, 1050, 1042, 1041, 1065, 1143, 1272, 1417, 1573, 1700, 1795, 1855, 1677, 1554, 1417, 1295, 1173, 1096, 1047, 1024, 1030, 1070, 1145, 1284, 1412, 1569, 1695, 1797, 1875, 1695, 1555, 1426, 1309, 1177, 1119, 1065, 1038, 1045, 1104, 1187, 1308, 1438, 1593, 1725, 1823, 1903, 1734, 1587, 1483, 1333, 1233, 1141, 1097, 1090, 1095, 1143, 1203, 1348, 1461, 1606, 1730, 1841, 1974, 1753, 1646, 1520, 1399, 1287, 1203, 1153, 1135, 1154, 1187, 1266, 1399, 1505, 1630, 1788, 1871, 2044, 1846, 1694, 1593, 1488, 1377, 1282, 1240, 1217, 1226, 1284, 1358, 1463, 1583, 1689, 1829, 1935, 2115, 1895, 1740, 1652, 1563, 1456, 1377, 1341, 1326, 1342, 1368, 1443, 1538, 1651, 1735, 1879, 2045, 2265, 1994, 1838, 1746, 1656, 1579, 1504, 1469, 1442, 1455, 1487, 1546, 1635, 1731, 1788, 1950, 2116, 2484, 2101, 1932, 1795, 1738, 1649, 1614, 1579, 1555, 1580, 1624, 1666, 1737, 1810, 1889, 2054, 2328, 3005, 2381, 2068, 1906, 1830, 1772, 1732, 1724, 1691, 1701, 1726, 1745, 1824, 1897, 2032, 2260, 2728]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2886, 2332, 2122, 1945, 1829, 1794, 1728, 1687, 1681, 1691, 1702, 1762, 1802, 1875, 1994, 2178, 2512, 2481, 2174, 1949, 1818, 1743, 1657, 1610, 1571, 1542, 1544, 1580, 1637, 1717, 1769, 1856, 2044, 2246, 2293, 2002, 1846, 1746, 1649, 1567, 1487, 1445, 1420, 1449, 1462, 1518, 1599, 1708, 1769, 1903, 2111, 2113, 1913, 1759, 1668, 1549, 1471, 1373, 1340, 1315, 1337, 1354, 1430, 1523, 1627, 1724, 1821, 2005, 2049, 1835, 1685, 1595, 1472, 1361, 1282, 1230, 1215, 1230, 1257, 1328, 1440, 1558, 1667, 1767, 1916, 1998, 1794, 1677, 1525, 1401, 1287, 1198, 1156, 1115, 1145, 1172, 1260, 1382, 1495, 1617, 1713, 1840, 1911, 1744, 1601, 1486, 1359, 1235, 1148, 1092, 1060, 1074, 1110, 1198, 1320, 1461, 1582, 1694, 1807, 1902, 1705, 1591, 1484, 1321, 1210, 1108, 1057, 1024, 1038, 1081, 1165, 1278, 1414, 1551, 1714, 1788, 1886, 1694, 1583, 1457, 1296, 1200, 1090, 1057, 1026, 1038, 1068, 1146, 1275, 1427, 1542, 1695, 1764, 1886, 1681, 1576, 1440, 1305, 1202, 1100, 1051, 1035, 1033, 1081, 1161, 1301, 1430, 1562, 1688, 1791, 1904, 1717, 1607, 1463, 1330, 1228, 1128, 1077, 1055, 1087, 1107, 1208, 1317, 1435, 1591, 1701, 1801, 1948, 1732, 1605, 1507, 1356, 1269, 1177, 1135, 1124, 1139, 1168, 1244, 1381, 1497, 1593, 1727, 1839, 2022, 1799, 1664, 1547, 1433, 1331, 1248, 1207, 1190, 1205, 1249, 1324, 1417, 1548, 1637, 1789, 1901, 2089, 1824, 1700, 1614, 1478, 1410, 1330, 1287, 1285, 1286, 1339, 1410, 1506, 1599, 1725, 1820, 1973, 2204, 1937, 1768, 1662, 1573, 1503, 1433, 1388, 1395, 1398, 1447, 1499, 1597, 1673, 1765, 1900, 2067, 2456, 2017, 1835, 1746, 1653, 1579, 1544, 1513, 1496, 1521, 1530, 1617, 1694, 1751, 1827, 1993, 2244, 2880, 2329, 2021, 1828, 1747, 1693, 1660, 1640, 1612, 1648, 1647, 1722, 1795, 1830, 1946, 2200, 2617]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2561, 2184, 1999, 1866, 1727, 1684, 1661, 1608, 1609, 1603, 1635, 1680, 1706, 1800, 1894, 2086, 2430, 2351, 2015, 1805, 1709, 1636, 1580, 1519, 1474, 1481, 1473, 1528, 1574, 1610, 1670, 1732, 1928, 2182, 2138, 1911, 1721, 1643, 1549, 1489, 1426, 1366, 1371, 1378, 1421, 1471, 1552, 1585, 1672, 1820, 1996, 2046, 1815, 1645, 1581, 1476, 1390, 1326, 1281, 1274, 1286, 1322, 1361, 1473, 1537, 1625, 1720, 1908, 1961, 1710, 1602, 1494, 1402, 1321, 1257, 1217, 1176, 1213, 1234, 1305, 1410, 1495, 1573, 1679, 1880, 1859, 1687, 1562, 1464, 1350, 1252, 1168, 1131, 1114, 1137, 1153, 1212, 1335, 1446, 1545, 1624, 1809, 1816, 1622, 1525, 1428, 1290, 1194, 1131, 1073, 1069, 1065, 1111, 1167, 1279, 1394, 1517, 1610, 1769, 1807, 1620, 1493, 1399, 1278, 1161, 1085, 1050, 1034, 1030, 1065, 1134, 1240, 1370, 1485, 1616, 1756, 1784, 1610, 1491, 1367, 1252, 1158, 1092, 1040, 1027, 1039, 1054, 1134, 1229, 1366, 1509, 1615, 1762, 1770, 1634, 1498, 1353, 1249, 1158, 1092, 1054, 1024, 1052, 1081, 1147, 1248, 1370, 1494, 1645, 1746, 1824, 1620, 1500, 1381, 1268, 1169, 1124, 1073, 1085, 1094, 1099, 1171, 1287, 1385, 1511, 1632, 1745, 1824, 1629, 1516, 1420, 1307, 1199, 1147, 1132, 1107, 1120, 1169, 1228, 1328, 1440, 1530, 1648, 1807, 1933, 1662, 1542, 1463, 1372, 1276, 1212, 1170, 1167, 1204, 1245, 1287, 1374, 1486, 1561, 1678, 1841, 1951, 1730, 1591, 1504, 1428, 1350, 1292, 1257, 1230, 1268, 1306, 1355, 1435, 1555, 1627, 1732, 1929, 2065, 1784, 1664, 1541, 1473, 1420, 1357, 1349, 1329, 1339, 1384, 1447, 1515, 1576, 1660, 1784, 2012, 2308, 1900, 1696, 1588, 1542, 1473, 1448, 1445, 1432, 1441, 1475, 1509, 1580, 1632, 1732, 1889, 2146, 2765, 2120, 1884, 1706, 1675, 1619, 1565, 1550, 1533, 1575, 1589, 1615, 1684, 1750, 1869, 2093, 2514]
                                       }
                                   }, {
                                       "name":    "1600x1200_D50_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3772, 2908, 2465, 2294, 2067, 1908, 1833, 1831, 1765, 1767, 1827, 1872, 1999, 2102, 2307, 2692, 3243, 3159, 2605, 2219, 2030, 1878, 1750, 1673, 1603, 1597, 1612, 1647, 1715, 1853, 1948, 2102, 2412, 2889, 2821, 2363, 2054, 1872, 1737, 1605, 1523, 1463, 1438, 1463, 1516, 1596, 1706, 1825, 1966, 2198, 2508, 2685, 2164, 1972, 1779, 1621, 1489, 1404, 1334, 1306, 1322, 1380, 1487, 1588, 1753, 1852, 2079, 2402, 2480, 2065, 1837, 1685, 1503, 1388, 1308, 1234, 1207, 1222, 1276, 1376, 1482, 1619, 1788, 1971, 2218, 2358, 1992, 1778, 1621, 1450, 1307, 1212, 1151, 1138, 1145, 1183, 1283, 1412, 1559, 1741, 1911, 2153, 2306, 1955, 1748, 1539, 1381, 1263, 1144, 1089, 1063, 1078, 1120, 1219, 1336, 1503, 1666, 1852, 2076, 2302, 1926, 1703, 1512, 1364, 1210, 1119, 1055, 1045, 1046, 1090, 1178, 1295, 1458, 1630, 1827, 2049, 2220, 1928, 1716, 1523, 1350, 1201, 1109, 1053, 1024, 1044, 1082, 1176, 1303, 1470, 1627, 1801, 2068, 2265, 1945, 1726, 1505, 1374, 1233, 1135, 1064, 1038, 1064, 1101, 1201, 1308, 1476, 1657, 1852, 2087, 2314, 2020, 1786, 1619, 1426, 1258, 1186, 1119, 1094, 1105, 1142, 1243, 1360, 1528, 1743, 1870, 2088, 2346, 2030, 1827, 1644, 1482, 1343, 1235, 1166, 1140, 1155, 1209, 1302, 1426, 1584, 1737, 1950, 2158, 2495, 2122, 1919, 1749, 1578, 1437, 1327, 1258, 1244, 1248, 1312, 1383, 1510, 1654, 1818, 1981, 2233, 2686, 2227, 2002, 1844, 1668, 1549, 1442, 1367, 1343, 1348, 1401, 1495, 1620, 1784, 1925, 2114, 2422, 2879, 2399, 2139, 1967, 1774, 1672, 1557, 1484, 1459, 1481, 1523, 1642, 1736, 1835, 2028, 2226, 2595, 3330, 2567, 2255, 2032, 1907, 1788, 1694, 1625, 1609, 1637, 1657, 1735, 1875, 1978, 2143, 2438, 2871, 4163, 3066, 2532, 2239, 2082, 1977, 1868, 1807, 1786, 1803, 1860, 1938, 1992, 2167, 2371, 2732, 3392]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3359, 2655, 2287, 2043, 1876, 1798, 1725, 1718, 1690, 1703, 1744, 1762, 1888, 1993, 2238, 2549, 3110, 2897, 2371, 2039, 1840, 1723, 1642, 1593, 1548, 1537, 1547, 1590, 1673, 1747, 1844, 2011, 2286, 2689, 2596, 2175, 1876, 1744, 1631, 1523, 1458, 1410, 1403, 1424, 1463, 1525, 1636, 1750, 1885, 2148, 2486, 2402, 2007, 1788, 1662, 1526, 1398, 1347, 1306, 1282, 1310, 1342, 1415, 1549, 1688, 1815, 2013, 2260, 2255, 1926, 1745, 1565, 1428, 1332, 1254, 1214, 1194, 1207, 1247, 1324, 1451, 1593, 1733, 1917, 2142, 2151, 1864, 1675, 1515, 1389, 1256, 1171, 1138, 1094, 1134, 1160, 1240, 1369, 1542, 1699, 1874, 2083, 2096, 1809, 1641, 1480, 1325, 1189, 1119, 1078, 1068, 1079, 1116, 1206, 1322, 1485, 1649, 1840, 2026, 2085, 1812, 1618, 1440, 1305, 1190, 1106, 1050, 1042, 1041, 1066, 1147, 1286, 1452, 1644, 1822, 1982, 2055, 1793, 1621, 1451, 1310, 1177, 1097, 1047, 1024, 1030, 1071, 1149, 1298, 1445, 1638, 1814, 1983, 2082, 1816, 1624, 1461, 1325, 1182, 1120, 1065, 1038, 1045, 1105, 1192, 1324, 1474, 1666, 1851, 2017, 2123, 1867, 1663, 1526, 1352, 1241, 1143, 1098, 1090, 1096, 1145, 1210, 1368, 1502, 1685, 1862, 2046, 2224, 1897, 1737, 1572, 1426, 1299, 1208, 1156, 1137, 1157, 1192, 1277, 1426, 1555, 1719, 1940, 2094, 2330, 2022, 1802, 1661, 1528, 1399, 1293, 1247, 1223, 1233, 1295, 1378, 1501, 1650, 1796, 2002, 2191, 2448, 2101, 1870, 1739, 1619, 1490, 1399, 1357, 1340, 1358, 1389, 1476, 1592, 1738, 1864, 2081, 2356, 2681, 2250, 2007, 1863, 1737, 1635, 1544, 1501, 1471, 1486, 1526, 1599, 1713, 1846, 1946, 2194, 2482, 3031, 2421, 2149, 1943, 1849, 1730, 1679, 1634, 1606, 1635, 1690, 1749, 1848, 1961, 2096, 2361, 2816, 3854, 2841, 2357, 2107, 1983, 1893, 1833, 1815, 1776, 1789, 1826, 1862, 1976, 2096, 2310, 2679, 3458]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3684, 2776, 2425, 2155, 1982, 1919, 1828, 1774, 1764, 1778, 1798, 1881, 1950, 2069, 2262, 2570, 3150, 3026, 2516, 2170, 1971, 1855, 1739, 1674, 1625, 1591, 1596, 1641, 1716, 1825, 1912, 2055, 2347, 2704, 2719, 2260, 2016, 1864, 1729, 1622, 1526, 1476, 1447, 1480, 1499, 1568, 1672, 1819, 1923, 2135, 2476, 2445, 2123, 1893, 1757, 1604, 1506, 1394, 1356, 1329, 1353, 1374, 1462, 1575, 1710, 1851, 2009, 2304, 2337, 2009, 1792, 1663, 1511, 1382, 1293, 1237, 1221, 1237, 1267, 1347, 1476, 1622, 1771, 1926, 2166, 2254, 1947, 1772, 1577, 1428, 1299, 1203, 1159, 1117, 1147, 1176, 1271, 1408, 1544, 1704, 1850, 2055, 2133, 1878, 1679, 1529, 1380, 1243, 1151, 1093, 1060, 1075, 1112, 1205, 1338, 1502, 1657, 1819, 2003, 2115, 1827, 1664, 1524, 1338, 1216, 1109, 1057, 1024, 1038, 1082, 1170, 1292, 1448, 1619, 1838, 1974, 2093, 1813, 1654, 1494, 1311, 1205, 1091, 1057, 1026, 1038, 1069, 1150, 1289, 1462, 1608, 1814, 1942, 2095, 1799, 1647, 1477, 1321, 1208, 1101, 1051, 1035, 1033, 1082, 1165, 1316, 1466, 1631, 1807, 1977, 2124, 1846, 1686, 1504, 1349, 1236, 1130, 1078, 1055, 1088, 1109, 1215, 1335, 1474, 1668, 1828, 1995, 2191, 1872, 1690, 1557, 1380, 1281, 1182, 1137, 1126, 1141, 1172, 1254, 1407, 1546, 1676, 1867, 2053, 2302, 1966, 1767, 1609, 1468, 1350, 1258, 1213, 1195, 1211, 1259, 1342, 1451, 1611, 1736, 1953, 2147, 2413, 2013, 1823, 1696, 1526, 1440, 1349, 1300, 1297, 1299, 1358, 1441, 1556, 1679, 1852, 2008, 2262, 2600, 2178, 1922, 1766, 1643, 1552, 1467, 1414, 1421, 1425, 1482, 1547, 1670, 1778, 1919, 2131, 2417, 2992, 2312, 2029, 1885, 1751, 1651, 1601, 1561, 1541, 1570, 1586, 1694, 1799, 1891, 2019, 2281, 2701, 3675, 2771, 2296, 2011, 1884, 1801, 1750, 1720, 1687, 1730, 1736, 1835, 1941, 2013, 2201, 2599, 3299]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3220, 2577, 2269, 2057, 1861, 1791, 1751, 1684, 1683, 1679, 1722, 1786, 1836, 1977, 2134, 2446, 3032, 2847, 2310, 1991, 1841, 1732, 1652, 1573, 1519, 1525, 1518, 1583, 1645, 1702, 1794, 1901, 2197, 2616, 2512, 2145, 1865, 1744, 1616, 1536, 1459, 1391, 1395, 1404, 1454, 1516, 1620, 1676, 1806, 2030, 2322, 2357, 2002, 1758, 1658, 1523, 1419, 1344, 1294, 1286, 1299, 1340, 1388, 1520, 1608, 1734, 1885, 2177, 2224, 1857, 1696, 1550, 1435, 1339, 1267, 1223, 1181, 1219, 1243, 1322, 1443, 1551, 1662, 1820, 2120, 2078, 1818, 1641, 1510, 1373, 1263, 1172, 1133, 1115, 1139, 1157, 1221, 1357, 1490, 1621, 1743, 2016, 2014, 1734, 1593, 1466, 1307, 1200, 1133, 1074, 1069, 1065, 1113, 1172, 1295, 1429, 1584, 1720, 1956, 1997, 1727, 1553, 1432, 1292, 1165, 1086, 1050, 1034, 1030, 1066, 1137, 1252, 1401, 1545, 1723, 1934, 1967, 1714, 1550, 1396, 1264, 1162, 1093, 1040, 1027, 1039, 1054, 1137, 1240, 1395, 1570, 1720, 1939, 1951, 1744, 1559, 1382, 1262, 1162, 1093, 1054, 1024, 1052, 1082, 1151, 1261, 1400, 1555, 1757, 1922, 2024, 1731, 1565, 1415, 1283, 1174, 1126, 1074, 1085, 1095, 1101, 1177, 1303, 1419, 1577, 1745, 1925, 2034, 1749, 1588, 1461, 1327, 1207, 1151, 1134, 1108, 1122, 1173, 1238, 1350, 1483, 1604, 1772, 2013, 2188, 1799, 1626, 1515, 1402, 1291, 1220, 1175, 1171, 1210, 1255, 1303, 1404, 1541, 1648, 1819, 2071, 2233, 1897, 1694, 1571, 1470, 1376, 1308, 1269, 1240, 1280, 1323, 1381, 1478, 1628, 1737, 1900, 2205, 2414, 1984, 1797, 1625, 1530, 1460, 1385, 1373, 1350, 1362, 1414, 1490, 1578, 1666, 1792, 1985, 2343, 2788, 2161, 1856, 1696, 1623, 1531, 1495, 1487, 1471, 1482, 1525, 1571, 1667, 1749, 1901, 2147, 2566, 3511, 2492, 2122, 1861, 1798, 1715, 1642, 1619, 1597, 1647, 1669, 1710, 1809, 1915, 2103, 2456, 3152]
                                       }
                                   }, {
                                       "name":    "1600x1200_D65_70",
                                       "resolution":    "1600x1200",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3153, 2601, 2300, 2222, 2090, 1973, 1859, 1808, 1835, 1839, 1859, 1930, 1996, 2103, 2220, 2464, 2767, 2752, 2319, 2169, 1992, 1859, 1772, 1722, 1655, 1623, 1653, 1705, 1788, 1848, 1948, 2095, 2261, 2522, 2591, 2254, 2015, 1866, 1787, 1669, 1576, 1499, 1513, 1513, 1531, 1652, 1732, 1849, 1967, 2112, 2383, 2426, 2139, 1942, 1807, 1659, 1517, 1438, 1405, 1359, 1361, 1426, 1532, 1632, 1768, 1874, 2029, 2257, 2358, 2048, 1861, 1704, 1573, 1421, 1317, 1251, 1240, 1258, 1313, 1430, 1529, 1696, 1857, 1991, 2190, 2249, 1967, 1812, 1669, 1508, 1357, 1241, 1174, 1127, 1142, 1206, 1308, 1449, 1631, 1772, 1941, 2094, 2191, 1940, 1784, 1592, 1444, 1284, 1177, 1094, 1060, 1074, 1135, 1235, 1429, 1580, 1720, 1895, 2073, 2210, 1910, 1727, 1567, 1398, 1243, 1127, 1056, 1035, 1032, 1088, 1203, 1372, 1532, 1707, 1890, 2069, 2158, 1948, 1768, 1555, 1397, 1247, 1129, 1044, 1024, 1034, 1090, 1204, 1356, 1540, 1721, 1884, 2032, 2159, 1949, 1760, 1565, 1420, 1261, 1141, 1070, 1028, 1064, 1129, 1246, 1394, 1548, 1740, 1907, 2047, 2290, 1981, 1802, 1655, 1469, 1303, 1191, 1138, 1099, 1134, 1163, 1288, 1407, 1615, 1779, 1923, 2113, 2245, 2043, 1884, 1701, 1533, 1385, 1274, 1197, 1159, 1183, 1249, 1346, 1490, 1644, 1817, 1965, 2216, 2383, 2115, 1973, 1791, 1616, 1476, 1373, 1306, 1261, 1292, 1344, 1465, 1605, 1731, 1889, 2019, 2412, 2459, 2192, 2008, 1869, 1702, 1593, 1501, 1402, 1394, 1418, 1462, 1555, 1704, 1823, 1951, 2228, 2702, 2821, 2325, 2102, 1948, 1840, 1741, 1634, 1562, 1524, 1543, 1611, 1692, 1804, 1921, 2155, 2505, 3189, 3152, 2577, 2229, 2067, 1937, 1856, 1755, 1681, 1674, 1722, 1769, 1836, 1950, 2088, 2412, 2951, 3929, 4117, 3122, 2622, 2322, 2105, 2023, 1950, 1922, 1883, 1862, 1898, 1988, 2243, 2430, 2881, 3614, 4640]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2666, 2217, 2002, 1844, 1744, 1689, 1670, 1625, 1632, 1633, 1675, 1699, 1759, 1875, 1970, 2166, 2507, 2328, 2060, 1853, 1724, 1639, 1563, 1539, 1514, 1511, 1523, 1545, 1602, 1659, 1729, 1864, 2024, 2289, 2228, 1924, 1722, 1656, 1561, 1481, 1425, 1393, 1384, 1415, 1428, 1512, 1595, 1683, 1769, 1931, 2157, 2109, 1810, 1675, 1587, 1470, 1381, 1320, 1298, 1287, 1300, 1337, 1419, 1512, 1622, 1722, 1851, 2002, 2005, 1771, 1642, 1515, 1416, 1316, 1257, 1198, 1192, 1205, 1239, 1322, 1426, 1560, 1674, 1794, 1951, 1968, 1757, 1585, 1469, 1363, 1239, 1159, 1132, 1114, 1111, 1153, 1248, 1377, 1520, 1627, 1755, 1908, 1907, 1692, 1572, 1441, 1304, 1198, 1120, 1073, 1066, 1067, 1113, 1197, 1330, 1485, 1600, 1770, 1859, 1887, 1707, 1552, 1433, 1301, 1176, 1093, 1046, 1034, 1024, 1080, 1182, 1305, 1436, 1596, 1771, 1842, 1871, 1714, 1585, 1425, 1287, 1183, 1103, 1046, 1030, 1039, 1079, 1177, 1311, 1441, 1588, 1739, 1857, 1923, 1729, 1589, 1434, 1320, 1191, 1120, 1054, 1042, 1059, 1110, 1203, 1311, 1470, 1623, 1740, 1853, 1932, 1759, 1626, 1483, 1361, 1238, 1160, 1105, 1095, 1114, 1137, 1230, 1368, 1504, 1649, 1781, 1889, 2007, 1783, 1655, 1542, 1428, 1311, 1212, 1171, 1142, 1169, 1214, 1288, 1412, 1562, 1697, 1836, 2007, 2090, 1855, 1724, 1617, 1501, 1394, 1295, 1254, 1236, 1245, 1295, 1377, 1495, 1623, 1726, 1900, 2169, 2188, 1906, 1794, 1677, 1578, 1491, 1392, 1357, 1353, 1367, 1407, 1502, 1604, 1687, 1785, 2023, 2470, 2493, 2037, 1851, 1762, 1670, 1593, 1540, 1502, 1469, 1492, 1533, 1606, 1689, 1788, 1939, 2281, 2837, 2833, 2307, 1964, 1844, 1763, 1700, 1658, 1598, 1615, 1632, 1673, 1704, 1805, 1961, 2201, 2692, 3476, 3536, 2727, 2287, 2026, 1900, 1812, 1772, 1737, 1738, 1756, 1804, 1856, 2006, 2230, 2643, 3304, 4397]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2834, 2272, 2069, 1959, 1838, 1779, 1744, 1710, 1674, 1699, 1728, 1747, 1846, 1892, 2008, 2205, 2495, 2435, 2157, 1939, 1828, 1714, 1679, 1623, 1593, 1586, 1563, 1596, 1673, 1747, 1800, 1895, 2045, 2309, 2273, 2040, 1856, 1737, 1652, 1590, 1510, 1451, 1432, 1435, 1483, 1566, 1623, 1723, 1790, 1949, 2144, 2156, 1917, 1779, 1667, 1574, 1454, 1370, 1346, 1324, 1321, 1361, 1449, 1539, 1652, 1747, 1867, 2056, 2068, 1860, 1707, 1607, 1467, 1367, 1273, 1214, 1219, 1224, 1264, 1334, 1459, 1565, 1680, 1819, 1979, 2012, 1814, 1651, 1552, 1411, 1302, 1196, 1152, 1117, 1145, 1170, 1268, 1397, 1546, 1656, 1764, 1920, 1963, 1751, 1626, 1506, 1353, 1233, 1146, 1100, 1074, 1058, 1117, 1210, 1344, 1485, 1609, 1735, 1876, 1917, 1714, 1609, 1478, 1338, 1196, 1115, 1065, 1024, 1040, 1076, 1173, 1303, 1467, 1575, 1737, 1853, 1911, 1709, 1605, 1451, 1305, 1179, 1103, 1043, 1026, 1035, 1071, 1167, 1303, 1455, 1578, 1723, 1859, 1914, 1715, 1594, 1455, 1318, 1212, 1107, 1051, 1028, 1054, 1092, 1187, 1301, 1452, 1623, 1753, 1865, 1923, 1739, 1601, 1486, 1341, 1231, 1143, 1109, 1065, 1074, 1127, 1225, 1343, 1483, 1633, 1762, 1870, 1988, 1772, 1650, 1511, 1377, 1280, 1193, 1147, 1129, 1150, 1192, 1269, 1399, 1554, 1636, 1815, 1960, 2086, 1823, 1679, 1560, 1456, 1342, 1259, 1219, 1181, 1213, 1279, 1352, 1470, 1574, 1705, 1842, 2173, 2132, 1871, 1711, 1612, 1525, 1425, 1352, 1305, 1304, 1314, 1375, 1446, 1565, 1668, 1763, 1940, 2420, 2421, 1985, 1793, 1692, 1605, 1511, 1475, 1424, 1412, 1435, 1479, 1547, 1636, 1740, 1914, 2220, 2807, 2768, 2243, 1877, 1772, 1675, 1644, 1589, 1561, 1530, 1563, 1591, 1638, 1724, 1896, 2144, 2627, 3353, 3521, 2631, 2239, 1944, 1800, 1755, 1709, 1696, 1669, 1710, 1738, 1805, 1959, 2168, 2603, 3257, 4464]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2607, 2229, 2018, 1906, 1758, 1745, 1710, 1664, 1672, 1674, 1683, 1713, 1774, 1864, 1975, 2152, 2564, 2323, 2060, 1857, 1755, 1666, 1603, 1567, 1530, 1526, 1512, 1580, 1616, 1680, 1729, 1800, 1969, 2273, 2160, 1954, 1766, 1673, 1609, 1511, 1458, 1422, 1394, 1417, 1459, 1498, 1584, 1676, 1757, 1881, 2095, 2052, 1834, 1712, 1603, 1510, 1425, 1340, 1305, 1288, 1313, 1347, 1406, 1507, 1573, 1692, 1808, 1995, 1996, 1761, 1649, 1550, 1444, 1349, 1276, 1222, 1205, 1221, 1250, 1334, 1443, 1528, 1629, 1748, 1943, 1907, 1718, 1612, 1488, 1366, 1268, 1177, 1144, 1118, 1148, 1158, 1256, 1376, 1490, 1597, 1735, 1852, 1889, 1687, 1568, 1454, 1325, 1216, 1141, 1079, 1084, 1083, 1132, 1204, 1330, 1433, 1577, 1688, 1846, 1866, 1682, 1538, 1414, 1285, 1185, 1122, 1055, 1040, 1047, 1085, 1185, 1301, 1417, 1571, 1682, 1817, 1840, 1652, 1522, 1411, 1297, 1169, 1100, 1051, 1024, 1043, 1084, 1174, 1275, 1419, 1560, 1691, 1828, 1861, 1658, 1519, 1393, 1279, 1170, 1110, 1053, 1054, 1067, 1110, 1184, 1279, 1414, 1570, 1675, 1861, 1829, 1658, 1554, 1414, 1319, 1187, 1134, 1095, 1093, 1107, 1146, 1212, 1327, 1458, 1589, 1710, 1882, 1872, 1685, 1599, 1454, 1337, 1246, 1180, 1137, 1111, 1153, 1191, 1260, 1359, 1478, 1602, 1740, 1950, 2016, 1715, 1601, 1506, 1387, 1305, 1241, 1203, 1198, 1212, 1264, 1334, 1437, 1562, 1687, 1784, 2154, 2026, 1764, 1626, 1540, 1471, 1390, 1321, 1280, 1279, 1320, 1339, 1412, 1534, 1597, 1692, 1929, 2371, 2239, 1865, 1703, 1604, 1529, 1495, 1441, 1380, 1382, 1390, 1438, 1499, 1586, 1685, 1819, 2144, 2757, 2629, 2106, 1769, 1637, 1602, 1571, 1523, 1477, 1484, 1502, 1553, 1575, 1659, 1783, 2047, 2481, 3227, 3284, 2567, 2107, 1852, 1734, 1668, 1628, 1596, 1628, 1640, 1687, 1707, 1872, 2137, 2460, 3030, 4318]
                                       }
                                   }, {
                                       "name":    "1600x1200_D65_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4065, 3136, 2653, 2495, 2292, 2126, 1978, 1910, 1938, 1946, 1978, 2076, 2181, 2348, 2551, 2953, 3514, 3399, 2705, 2442, 2178, 1989, 1868, 1799, 1717, 1680, 1715, 1780, 1887, 1976, 2125, 2350, 2629, 3083, 3117, 2579, 2220, 2003, 1885, 1735, 1622, 1533, 1547, 1548, 1573, 1716, 1823, 1983, 2162, 2399, 2839, 2853, 2403, 2109, 1915, 1725, 1556, 1463, 1424, 1375, 1378, 1451, 1572, 1696, 1871, 2029, 2267, 2633, 2733, 2268, 1996, 1785, 1620, 1445, 1330, 1259, 1246, 1266, 1326, 1455, 1572, 1776, 1992, 2199, 2517, 2571, 2154, 1927, 1736, 1543, 1373, 1248, 1177, 1129, 1144, 1211, 1321, 1480, 1695, 1881, 2123, 2375, 2483, 2111, 1887, 1645, 1470, 1294, 1180, 1095, 1060, 1075, 1137, 1243, 1454, 1632, 1814, 2058, 2336, 2498, 2069, 1818, 1615, 1419, 1250, 1129, 1056, 1035, 1032, 1089, 1209, 1391, 1577, 1795, 2046, 2323, 2431, 2112, 1862, 1601, 1417, 1254, 1130, 1044, 1024, 1034, 1091, 1209, 1374, 1584, 1809, 2037, 2275, 2435, 2115, 1855, 1613, 1442, 1269, 1143, 1070, 1028, 1064, 1131, 1253, 1415, 1594, 1832, 2066, 2296, 2607, 2160, 1907, 1715, 1497, 1313, 1194, 1139, 1100, 1135, 1166, 1298, 1431, 1671, 1881, 2091, 2386, 2566, 2245, 2010, 1772, 1570, 1402, 1282, 1200, 1161, 1186, 1256, 1361, 1523, 1709, 1933, 2152, 2529, 2765, 2349, 2126, 1882, 1667, 1504, 1388, 1315, 1268, 1301, 1358, 1492, 1655, 1815, 2029, 2233, 2802, 2896, 2468, 2187, 1986, 1773, 1638, 1530, 1421, 1412, 1438, 1489, 1597, 1775, 1934, 2120, 2513, 3213, 3424, 2668, 2325, 2098, 1944, 1814, 1685, 1601, 1559, 1581, 1660, 1760, 1904, 2067, 2390, 2896, 3915, 3948, 3039, 2517, 2267, 2080, 1963, 1836, 1746, 1736, 1791, 1851, 1941, 2095, 2292, 2743, 3524, 5016, 5443, 3834, 3064, 2617, 2310, 2185, 2082, 2039, 1992, 1971, 2022, 2144, 2474, 2750, 3394, 4493, 6189]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3370, 2622, 2272, 2030, 1881, 1796, 1762, 1703, 1709, 1712, 1767, 1808, 1898, 2069, 2231, 2554, 3143, 2816, 2369, 2051, 1859, 1735, 1632, 1596, 1563, 1557, 1572, 1602, 1677, 1758, 1864, 2064, 2322, 2762, 2632, 2162, 1867, 1759, 1630, 1527, 1458, 1420, 1409, 1443, 1462, 1562, 1668, 1790, 1924, 2170, 2537, 2440, 1996, 1794, 1665, 1517, 1409, 1338, 1312, 1299, 1314, 1356, 1450, 1563, 1705, 1849, 2046, 2300, 2280, 1931, 1742, 1574, 1450, 1334, 1267, 1204, 1197, 1211, 1248, 1340, 1461, 1624, 1779, 1959, 2212, 2216, 1902, 1667, 1515, 1387, 1249, 1163, 1134, 1116, 1113, 1157, 1259, 1402, 1572, 1715, 1900, 2141, 2128, 1817, 1646, 1480, 1321, 1205, 1122, 1074, 1066, 1067, 1115, 1203, 1349, 1528, 1678, 1909, 2068, 2097, 1830, 1620, 1469, 1317, 1181, 1094, 1046, 1034, 1024, 1081, 1187, 1321, 1472, 1670, 1905, 2041, 2075, 1836, 1656, 1459, 1301, 1188, 1104, 1046, 1030, 1039, 1080, 1182, 1326, 1477, 1660, 1866, 2057, 2142, 1856, 1662, 1470, 1337, 1196, 1121, 1054, 1042, 1059, 1111, 1209, 1327, 1509, 1700, 1869, 2054, 2159, 1896, 1708, 1526, 1382, 1246, 1163, 1106, 1096, 1115, 1139, 1238, 1389, 1549, 1734, 1922, 2106, 2265, 1934, 1747, 1596, 1457, 1325, 1218, 1174, 1144, 1172, 1220, 1300, 1440, 1618, 1796, 1997, 2266, 2389, 2033, 1837, 1688, 1542, 1417, 1307, 1262, 1242, 1252, 1307, 1399, 1535, 1694, 1839, 2088, 2491, 2543, 2115, 1934, 1768, 1636, 1528, 1415, 1374, 1369, 1384, 1430, 1540, 1665, 1779, 1924, 2259, 2911, 2986, 2304, 2023, 1882, 1753, 1651, 1583, 1537, 1500, 1526, 1575, 1665, 1774, 1912, 2129, 2612, 3445, 3510, 2689, 2188, 2001, 1878, 1787, 1728, 1655, 1671, 1692, 1745, 1792, 1927, 2141, 2482, 3188, 4393, 4613, 3305, 2636, 2254, 2066, 1939, 1878, 1830, 1829, 1852, 1915, 1990, 2192, 2504, 3091, 4078, 5842]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3610, 2695, 2358, 2172, 1993, 1901, 1846, 1800, 1756, 1787, 1828, 1864, 2002, 2090, 2280, 2606, 3125, 2963, 2494, 2157, 1982, 1822, 1764, 1689, 1649, 1640, 1616, 1659, 1757, 1860, 1949, 2103, 2349, 2790, 2692, 2308, 2028, 1853, 1732, 1648, 1550, 1482, 1460, 1465, 1521, 1621, 1700, 1837, 1949, 2193, 2520, 2501, 2128, 1916, 1756, 1631, 1488, 1391, 1362, 1338, 1336, 1382, 1483, 1593, 1739, 1878, 2066, 2370, 2361, 2040, 1818, 1676, 1505, 1388, 1284, 1220, 1225, 1231, 1275, 1353, 1496, 1630, 1786, 1990, 2247, 2272, 1971, 1743, 1607, 1439, 1315, 1201, 1155, 1119, 1147, 1174, 1280, 1424, 1601, 1749, 1911, 2155, 2198, 1887, 1707, 1551, 1373, 1241, 1149, 1101, 1074, 1058, 1119, 1217, 1364, 1528, 1688, 1868, 2089, 2134, 1838, 1685, 1518, 1356, 1201, 1116, 1065, 1024, 1040, 1077, 1178, 1319, 1506, 1646, 1865, 2055, 2124, 1831, 1679, 1488, 1320, 1184, 1104, 1043, 1026, 1035, 1072, 1171, 1318, 1492, 1648, 1847, 2060, 2130, 1839, 1668, 1493, 1334, 1218, 1108, 1051, 1028, 1054, 1093, 1192, 1316, 1490, 1700, 1884, 2069, 2148, 1872, 1679, 1529, 1361, 1239, 1145, 1110, 1065, 1075, 1129, 1233, 1363, 1526, 1716, 1900, 2082, 2241, 1920, 1741, 1562, 1402, 1292, 1198, 1149, 1131, 1153, 1197, 1281, 1426, 1609, 1726, 1972, 2206, 2384, 1995, 1785, 1624, 1493, 1361, 1269, 1225, 1186, 1219, 1290, 1372, 1508, 1640, 1815, 2018, 2496, 2470, 2071, 1836, 1693, 1577, 1457, 1372, 1319, 1317, 1329, 1397, 1479, 1622, 1757, 1898, 2156, 2846, 2890, 2238, 1952, 1801, 1679, 1560, 1513, 1453, 1439, 1465, 1517, 1600, 1714, 1857, 2099, 2536, 3405, 3420, 2606, 2081, 1916, 1777, 1724, 1651, 1614, 1578, 1616, 1653, 1717, 1833, 2064, 2411, 3104, 4225, 4591, 3176, 2575, 2153, 1947, 1873, 1806, 1784, 1751, 1800, 1840, 1931, 2137, 2428, 3039, 4015, 5938]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3285, 2638, 2293, 2107, 1897, 1862, 1807, 1748, 1754, 1759, 1777, 1824, 1916, 2055, 2238, 2535, 3224, 2809, 2368, 2056, 1895, 1766, 1678, 1627, 1580, 1574, 1560, 1641, 1692, 1782, 1865, 1985, 2250, 2741, 2541, 2199, 1920, 1778, 1684, 1561, 1494, 1451, 1420, 1446, 1495, 1546, 1655, 1782, 1909, 2107, 2454, 2365, 2026, 1837, 1683, 1561, 1457, 1359, 1319, 1300, 1328, 1367, 1436, 1558, 1649, 1813, 1993, 2291, 2269, 1919, 1750, 1613, 1480, 1369, 1287, 1229, 1210, 1228, 1260, 1353, 1479, 1588, 1727, 1904, 2201, 2139, 1856, 1698, 1537, 1391, 1280, 1182, 1146, 1120, 1151, 1162, 1267, 1401, 1539, 1681, 1876, 2070, 2106, 1811, 1642, 1494, 1344, 1223, 1143, 1080, 1084, 1084, 1134, 1211, 1349, 1472, 1652, 1812, 2052, 2070, 1800, 1604, 1448, 1300, 1190, 1123, 1055, 1040, 1047, 1086, 1190, 1317, 1452, 1641, 1800, 2010, 2036, 1764, 1585, 1444, 1312, 1173, 1101, 1051, 1024, 1043, 1085, 1178, 1289, 1453, 1628, 1809, 2022, 2065, 1772, 1583, 1425, 1293, 1175, 1111, 1053, 1054, 1067, 1111, 1189, 1293, 1448, 1640, 1792, 2064, 2030, 1776, 1626, 1451, 1337, 1193, 1136, 1096, 1094, 1108, 1149, 1219, 1346, 1499, 1665, 1838, 2097, 2095, 1816, 1683, 1499, 1360, 1257, 1185, 1139, 1112, 1156, 1196, 1271, 1383, 1526, 1687, 1882, 2193, 2295, 1863, 1694, 1564, 1418, 1322, 1250, 1209, 1203, 1218, 1274, 1353, 1473, 1626, 1794, 1947, 2472, 2332, 1939, 1735, 1611, 1518, 1419, 1339, 1293, 1291, 1335, 1358, 1443, 1587, 1676, 1813, 2143, 2781, 2646, 2087, 1844, 1698, 1594, 1543, 1476, 1406, 1407, 1417, 1472, 1547, 1658, 1793, 1984, 2439, 3338, 3230, 2428, 1947, 1755, 1692, 1642, 1578, 1522, 1528, 1549, 1611, 1646, 1758, 1929, 2291, 2915, 4052, 4253, 3090, 2406, 2040, 1869, 1772, 1714, 1671, 1705, 1720, 1781, 1817, 2033, 2390, 2857, 3711, 5729]
                                       }
                                   }, {
                                       "name":    "1600x1200_D75_70",
                                       "resolution":    "1600x1200",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3011, 2570, 2283, 2094, 1980, 1887, 1867, 1822, 1795, 1804, 1831, 1874, 1964, 2094, 2183, 2419, 2771, 2705, 2336, 2092, 1949, 1843, 1753, 1695, 1641, 1644, 1638, 1684, 1740, 1831, 1924, 2019, 2225, 2550, 2487, 2188, 1995, 1833, 1748, 1640, 1576, 1495, 1493, 1485, 1555, 1617, 1696, 1825, 1907, 2070, 2322, 2394, 2061, 1900, 1777, 1630, 1536, 1417, 1388, 1341, 1388, 1446, 1511, 1618, 1723, 1850, 1976, 2185, 2242, 2006, 1799, 1685, 1561, 1418, 1325, 1265, 1246, 1265, 1310, 1367, 1521, 1657, 1825, 1922, 2104, 2185, 1962, 1782, 1621, 1478, 1330, 1233, 1164, 1117, 1146, 1191, 1321, 1474, 1599, 1746, 1866, 2084, 2110, 1905, 1774, 1586, 1412, 1285, 1173, 1101, 1068, 1088, 1127, 1252, 1395, 1545, 1692, 1842, 2028, 2104, 1879, 1727, 1563, 1393, 1241, 1134, 1059, 1036, 1042, 1084, 1211, 1346, 1520, 1694, 1859, 2009, 2135, 1859, 1733, 1562, 1393, 1241, 1138, 1061, 1024, 1036, 1090, 1210, 1350, 1514, 1685, 1827, 1969, 2152, 1886, 1743, 1556, 1430, 1263, 1159, 1068, 1047, 1066, 1130, 1221, 1375, 1524, 1714, 1850, 2010, 2171, 1939, 1811, 1631, 1465, 1316, 1206, 1129, 1088, 1111, 1169, 1277, 1418, 1590, 1743, 1869, 2051, 2231, 1978, 1855, 1689, 1519, 1370, 1274, 1182, 1169, 1191, 1233, 1351, 1473, 1640, 1764, 1929, 2160, 2324, 2057, 1903, 1749, 1599, 1462, 1376, 1285, 1273, 1293, 1355, 1445, 1544, 1713, 1852, 2003, 2382, 2482, 2138, 1999, 1811, 1709, 1580, 1464, 1409, 1391, 1425, 1468, 1557, 1683, 1782, 1960, 2147, 2646, 2731, 2273, 2042, 1929, 1807, 1706, 1625, 1551, 1533, 1556, 1562, 1698, 1756, 1882, 2106, 2464, 3059, 3227, 2504, 2166, 2011, 1920, 1825, 1726, 1704, 1642, 1656, 1717, 1788, 1897, 2060, 2342, 2916, 3719, 4087, 3032, 2546, 2230, 2047, 1993, 1881, 1855, 1859, 1826, 1871, 1980, 2165, 2446, 2889, 3546, 4924]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2593, 2221, 1993, 1858, 1738, 1695, 1664, 1640, 1629, 1640, 1668, 1718, 1781, 1835, 1997, 2159, 2549, 2362, 2071, 1860, 1723, 1645, 1578, 1541, 1494, 1487, 1534, 1559, 1612, 1650, 1740, 1851, 2033, 2284, 2209, 1938, 1746, 1658, 1565, 1478, 1425, 1389, 1376, 1396, 1438, 1508, 1584, 1685, 1763, 1913, 2087, 2072, 1821, 1675, 1585, 1471, 1385, 1329, 1299, 1280, 1291, 1326, 1403, 1504, 1614, 1724, 1856, 2028, 2019, 1768, 1627, 1514, 1437, 1321, 1247, 1209, 1200, 1200, 1246, 1319, 1434, 1554, 1670, 1805, 1963, 1935, 1717, 1598, 1468, 1346, 1243, 1160, 1136, 1117, 1126, 1167, 1239, 1380, 1507, 1643, 1777, 1899, 1891, 1709, 1575, 1456, 1311, 1202, 1118, 1082, 1065, 1068, 1108, 1211, 1335, 1480, 1621, 1756, 1862, 1918, 1702, 1548, 1435, 1301, 1178, 1099, 1046, 1037, 1031, 1086, 1177, 1307, 1452, 1602, 1750, 1866, 1843, 1695, 1579, 1432, 1303, 1179, 1086, 1040, 1024, 1035, 1088, 1181, 1310, 1448, 1596, 1745, 1849, 1903, 1722, 1569, 1436, 1318, 1189, 1110, 1066, 1034, 1056, 1116, 1198, 1339, 1472, 1629, 1755, 1875, 1914, 1744, 1627, 1476, 1360, 1237, 1154, 1101, 1098, 1107, 1164, 1225, 1355, 1509, 1637, 1796, 1894, 2015, 1778, 1657, 1528, 1417, 1305, 1211, 1161, 1152, 1166, 1222, 1296, 1443, 1555, 1672, 1823, 2017, 2056, 1850, 1727, 1605, 1501, 1378, 1289, 1254, 1234, 1264, 1311, 1374, 1506, 1623, 1757, 1903, 2218, 2187, 1897, 1779, 1670, 1571, 1486, 1402, 1354, 1347, 1361, 1399, 1473, 1582, 1702, 1776, 2060, 2448, 2428, 2030, 1870, 1765, 1668, 1593, 1525, 1489, 1483, 1486, 1537, 1602, 1692, 1776, 1959, 2289, 2855, 2857, 2292, 1976, 1826, 1782, 1679, 1655, 1619, 1590, 1605, 1674, 1709, 1792, 1924, 2216, 2697, 3480, 3485, 2717, 2280, 2038, 1863, 1831, 1782, 1773, 1748, 1767, 1802, 1868, 2007, 2235, 2680, 3379, 4365]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2798, 2275, 2107, 1957, 1856, 1795, 1765, 1738, 1698, 1697, 1739, 1768, 1837, 1908, 2016, 2238, 2530, 2470, 2151, 1959, 1840, 1760, 1651, 1630, 1590, 1561, 1555, 1604, 1649, 1721, 1797, 1885, 2076, 2289, 2266, 2000, 1836, 1743, 1662, 1595, 1504, 1459, 1450, 1453, 1480, 1545, 1629, 1723, 1781, 1938, 2138, 2180, 1911, 1755, 1670, 1570, 1469, 1381, 1349, 1318, 1341, 1372, 1448, 1519, 1644, 1729, 1856, 2042, 2049, 1822, 1704, 1610, 1471, 1351, 1301, 1235, 1211, 1237, 1286, 1346, 1448, 1569, 1670, 1804, 1958, 2004, 1748, 1670, 1538, 1403, 1294, 1211, 1165, 1121, 1133, 1191, 1266, 1381, 1524, 1641, 1773, 1901, 1944, 1739, 1630, 1488, 1355, 1241, 1147, 1098, 1063, 1067, 1125, 1214, 1348, 1470, 1603, 1739, 1879, 1956, 1720, 1606, 1460, 1325, 1195, 1106, 1059, 1035, 1026, 1080, 1167, 1309, 1452, 1601, 1713, 1836, 1918, 1720, 1593, 1461, 1313, 1196, 1096, 1053, 1024, 1032, 1081, 1177, 1311, 1442, 1583, 1728, 1841, 1915, 1678, 1582, 1460, 1320, 1205, 1105, 1047, 1028, 1048, 1094, 1175, 1302, 1466, 1594, 1740, 1884, 1897, 1737, 1611, 1487, 1339, 1223, 1140, 1091, 1070, 1090, 1135, 1225, 1338, 1486, 1621, 1764, 1883, 1954, 1735, 1629, 1508, 1380, 1278, 1197, 1139, 1133, 1157, 1188, 1275, 1402, 1524, 1634, 1783, 1973, 2044, 1821, 1683, 1542, 1436, 1353, 1264, 1208, 1194, 1225, 1272, 1351, 1463, 1578, 1690, 1815, 2163, 2133, 1881, 1728, 1633, 1529, 1425, 1348, 1305, 1296, 1301, 1375, 1453, 1541, 1653, 1756, 1961, 2436, 2376, 1967, 1778, 1696, 1567, 1529, 1468, 1420, 1409, 1446, 1479, 1542, 1624, 1736, 1923, 2252, 2818, 2821, 2186, 1909, 1770, 1694, 1614, 1569, 1548, 1525, 1546, 1590, 1656, 1722, 1883, 2137, 2626, 3365, 3415, 2602, 2223, 1950, 1779, 1759, 1689, 1717, 1660, 1709, 1754, 1798, 1959, 2203, 2618, 3277, 4409]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2605, 2207, 1999, 1852, 1766, 1713, 1692, 1674, 1632, 1657, 1685, 1717, 1730, 1819, 1969, 2134, 2553, 2307, 2044, 1835, 1746, 1659, 1599, 1564, 1536, 1504, 1524, 1558, 1611, 1672, 1724, 1780, 1947, 2225, 2188, 1918, 1732, 1674, 1581, 1523, 1452, 1401, 1379, 1393, 1449, 1492, 1569, 1645, 1737, 1850, 2087, 2049, 1815, 1686, 1597, 1512, 1417, 1333, 1321, 1289, 1318, 1357, 1398, 1478, 1590, 1663, 1790, 1983, 1974, 1729, 1629, 1540, 1431, 1327, 1263, 1219, 1206, 1219, 1241, 1332, 1416, 1498, 1629, 1717, 1905, 1926, 1673, 1583, 1476, 1347, 1281, 1183, 1144, 1127, 1128, 1170, 1244, 1346, 1491, 1568, 1688, 1841, 1835, 1663, 1564, 1447, 1333, 1213, 1141, 1093, 1051, 1062, 1111, 1196, 1297, 1438, 1548, 1674, 1855, 1859, 1669, 1519, 1402, 1291, 1176, 1114, 1037, 1034, 1034, 1072, 1165, 1281, 1411, 1540, 1676, 1805, 1802, 1652, 1503, 1383, 1285, 1167, 1090, 1044, 1024, 1038, 1087, 1164, 1285, 1413, 1546, 1686, 1799, 1817, 1658, 1526, 1385, 1274, 1166, 1103, 1065, 1037, 1054, 1106, 1184, 1292, 1404, 1523, 1676, 1804, 1855, 1659, 1530, 1392, 1300, 1188, 1126, 1081, 1076, 1097, 1126, 1205, 1316, 1439, 1564, 1680, 1823, 1863, 1661, 1560, 1427, 1337, 1230, 1174, 1133, 1117, 1153, 1192, 1236, 1360, 1490, 1590, 1707, 1929, 1941, 1725, 1591, 1482, 1386, 1292, 1231, 1198, 1174, 1218, 1255, 1322, 1433, 1542, 1637, 1760, 2068, 2055, 1769, 1618, 1526, 1469, 1384, 1310, 1279, 1270, 1292, 1329, 1399, 1510, 1575, 1664, 1914, 2337, 2237, 1821, 1696, 1583, 1535, 1475, 1414, 1380, 1367, 1404, 1446, 1493, 1564, 1645, 1826, 2119, 2767, 2635, 2069, 1761, 1645, 1589, 1509, 1502, 1458, 1472, 1487, 1540, 1556, 1655, 1762, 2011, 2471, 3316, 3342, 2533, 2028, 1781, 1706, 1646, 1635, 1601, 1581, 1639, 1676, 1735, 1854, 2042, 2516, 3133, 4378]
                                       }
                                   }, {
                                       "name":    "1600x1200_D75_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3863, 3094, 2631, 2338, 2162, 2026, 1987, 1926, 1893, 1906, 1946, 2011, 2143, 2337, 2503, 2892, 3520, 3334, 2726, 2347, 2127, 1971, 1847, 1769, 1702, 1703, 1699, 1757, 1832, 1957, 2097, 2256, 2583, 3121, 2977, 2495, 2196, 1965, 1841, 1703, 1622, 1529, 1525, 1519, 1599, 1677, 1782, 1955, 2090, 2346, 2757, 2811, 2306, 2059, 1881, 1693, 1576, 1441, 1407, 1356, 1406, 1472, 1550, 1680, 1820, 2000, 2201, 2539, 2584, 2217, 1924, 1764, 1607, 1442, 1338, 1273, 1253, 1273, 1323, 1388, 1564, 1732, 1955, 2115, 2408, 2490, 2148, 1893, 1683, 1511, 1344, 1239, 1167, 1119, 1148, 1196, 1335, 1506, 1659, 1852, 2033, 2363, 2382, 2069, 1876, 1639, 1436, 1295, 1176, 1102, 1068, 1089, 1129, 1261, 1418, 1594, 1783, 1995, 2280, 2367, 2033, 1818, 1611, 1414, 1248, 1136, 1059, 1036, 1042, 1085, 1217, 1364, 1564, 1780, 2009, 2248, 2402, 2007, 1823, 1608, 1413, 1247, 1139, 1061, 1024, 1036, 1091, 1216, 1368, 1556, 1769, 1970, 2196, 2426, 2041, 1836, 1603, 1453, 1271, 1161, 1068, 1047, 1066, 1132, 1227, 1395, 1568, 1803, 1999, 2250, 2458, 2110, 1917, 1688, 1492, 1327, 1210, 1130, 1088, 1112, 1172, 1287, 1442, 1643, 1840, 2027, 2308, 2548, 2167, 1976, 1759, 1555, 1386, 1282, 1185, 1171, 1194, 1239, 1366, 1505, 1704, 1872, 2108, 2459, 2689, 2279, 2045, 1836, 1648, 1489, 1391, 1294, 1280, 1302, 1369, 1471, 1589, 1795, 1986, 2213, 2764, 2926, 2401, 2176, 1920, 1781, 1624, 1491, 1429, 1408, 1445, 1495, 1599, 1752, 1887, 2130, 2412, 3141, 3304, 2603, 2253, 2076, 1907, 1775, 1675, 1589, 1568, 1595, 1607, 1767, 1849, 2022, 2330, 2844, 3741, 4052, 2944, 2439, 2201, 2060, 1928, 1803, 1771, 1701, 1719, 1793, 1887, 2033, 2259, 2657, 3479, 4728, 5399, 3713, 2966, 2505, 2241, 2150, 2003, 1964, 1965, 1931, 1991, 2135, 2382, 2770, 3404, 4401, 6595]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3266, 2627, 2261, 2048, 1874, 1804, 1755, 1720, 1706, 1721, 1759, 1830, 1925, 2020, 2266, 2544, 3202, 2863, 2382, 2059, 1857, 1742, 1649, 1598, 1541, 1531, 1584, 1618, 1688, 1748, 1878, 2048, 2333, 2755, 2606, 2179, 1896, 1761, 1634, 1524, 1458, 1416, 1400, 1423, 1473, 1557, 1656, 1793, 1916, 2148, 2443, 2391, 2009, 1794, 1663, 1518, 1414, 1348, 1313, 1292, 1305, 1344, 1433, 1554, 1696, 1851, 2053, 2334, 2299, 1928, 1724, 1573, 1473, 1339, 1257, 1215, 1205, 1206, 1256, 1337, 1469, 1617, 1774, 1973, 2227, 2175, 1854, 1682, 1514, 1369, 1253, 1164, 1138, 1119, 1128, 1171, 1249, 1406, 1557, 1733, 1926, 2129, 2108, 1837, 1650, 1497, 1329, 1209, 1120, 1083, 1065, 1068, 1110, 1218, 1354, 1523, 1702, 1893, 2072, 2135, 1824, 1616, 1471, 1317, 1183, 1100, 1046, 1037, 1031, 1087, 1182, 1323, 1490, 1676, 1881, 2071, 2040, 1814, 1649, 1467, 1318, 1184, 1087, 1040, 1024, 1035, 1089, 1186, 1325, 1485, 1668, 1873, 2048, 2116, 1847, 1639, 1472, 1334, 1194, 1111, 1066, 1034, 1056, 1117, 1204, 1357, 1512, 1707, 1886, 2082, 2137, 1879, 1709, 1519, 1381, 1245, 1157, 1102, 1099, 1108, 1167, 1233, 1376, 1555, 1720, 1940, 2112, 2276, 1927, 1750, 1581, 1445, 1318, 1217, 1164, 1154, 1169, 1228, 1309, 1473, 1610, 1767, 1982, 2278, 2346, 2027, 1841, 1674, 1542, 1400, 1301, 1262, 1240, 1272, 1324, 1395, 1547, 1695, 1876, 2092, 2554, 2542, 2104, 1916, 1760, 1628, 1523, 1425, 1371, 1362, 1378, 1422, 1509, 1640, 1796, 1913, 2305, 2882, 2899, 2296, 2045, 1885, 1750, 1651, 1567, 1523, 1515, 1520, 1580, 1661, 1777, 1898, 2153, 2623, 3469, 3543, 2669, 2203, 1980, 1900, 1763, 1724, 1678, 1644, 1663, 1746, 1797, 1912, 2097, 2500, 3195, 4399, 4539, 3291, 2627, 2269, 2022, 1962, 1890, 1871, 1840, 1864, 1913, 2004, 2194, 2510, 3137, 4178, 5797]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3558, 2700, 2406, 2169, 2014, 1920, 1870, 1831, 1784, 1785, 1841, 1888, 1991, 2109, 2290, 2650, 3175, 3011, 2486, 2182, 1997, 1875, 1732, 1697, 1646, 1612, 1608, 1668, 1730, 1830, 1946, 2091, 2389, 2762, 2683, 2258, 2004, 1860, 1744, 1653, 1544, 1491, 1479, 1484, 1518, 1598, 1706, 1837, 1938, 2179, 2512, 2533, 2121, 1888, 1760, 1627, 1504, 1403, 1365, 1332, 1357, 1393, 1482, 1571, 1730, 1857, 2053, 2352, 2337, 1993, 1814, 1680, 1510, 1371, 1313, 1242, 1217, 1244, 1297, 1366, 1484, 1634, 1774, 1972, 2221, 2262, 1891, 1764, 1592, 1430, 1307, 1217, 1168, 1123, 1135, 1196, 1277, 1407, 1576, 1731, 1921, 2131, 2174, 1872, 1712, 1532, 1376, 1249, 1150, 1099, 1063, 1067, 1127, 1221, 1368, 1512, 1681, 1873, 2093, 2183, 1845, 1681, 1498, 1342, 1200, 1107, 1059, 1035, 1026, 1081, 1172, 1325, 1490, 1675, 1837, 2033, 2133, 1844, 1665, 1499, 1329, 1201, 1097, 1053, 1024, 1032, 1082, 1182, 1326, 1478, 1654, 1853, 2038, 2132, 1796, 1654, 1498, 1337, 1211, 1106, 1047, 1028, 1048, 1095, 1180, 1318, 1505, 1667, 1869, 2093, 2116, 1870, 1690, 1531, 1359, 1230, 1142, 1092, 1070, 1091, 1137, 1233, 1357, 1530, 1702, 1902, 2098, 2198, 1876, 1718, 1559, 1406, 1290, 1202, 1141, 1135, 1160, 1193, 1287, 1429, 1576, 1723, 1933, 2223, 2330, 1992, 1790, 1604, 1471, 1373, 1275, 1214, 1199, 1232, 1283, 1371, 1501, 1644, 1798, 1985, 2483, 2471, 2084, 1856, 1717, 1582, 1457, 1368, 1319, 1309, 1315, 1396, 1487, 1595, 1740, 1889, 2183, 2866, 2829, 2216, 1934, 1805, 1636, 1580, 1505, 1449, 1436, 1477, 1517, 1595, 1701, 1852, 2109, 2576, 3419, 3494, 2532, 2120, 1913, 1798, 1690, 1629, 1600, 1573, 1598, 1652, 1738, 1831, 2048, 2403, 3103, 4241, 4439, 3137, 2554, 2161, 1922, 1878, 1783, 1808, 1741, 1799, 1858, 1923, 2136, 2471, 3059, 4041, 5860]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3283, 2608, 2268, 2041, 1907, 1824, 1787, 1759, 1709, 1740, 1779, 1829, 1864, 2000, 2230, 2511, 3208, 2787, 2348, 2028, 1885, 1758, 1673, 1623, 1587, 1550, 1573, 1617, 1687, 1773, 1858, 1961, 2222, 2675, 2579, 2154, 1879, 1780, 1652, 1574, 1488, 1428, 1404, 1420, 1484, 1539, 1639, 1746, 1885, 2068, 2444, 2361, 2002, 1807, 1676, 1563, 1448, 1352, 1336, 1302, 1333, 1377, 1428, 1526, 1668, 1779, 1971, 2275, 2241, 1880, 1727, 1601, 1466, 1346, 1273, 1226, 1211, 1225, 1250, 1351, 1450, 1554, 1727, 1866, 2152, 2163, 1802, 1665, 1523, 1370, 1293, 1188, 1146, 1129, 1130, 1174, 1254, 1369, 1540, 1647, 1820, 2056, 2038, 1782, 1637, 1487, 1352, 1220, 1143, 1094, 1051, 1062, 1113, 1202, 1314, 1477, 1619, 1795, 2063, 2062, 1785, 1583, 1435, 1306, 1181, 1115, 1037, 1034, 1034, 1073, 1170, 1295, 1445, 1607, 1793, 1995, 1989, 1764, 1564, 1414, 1299, 1171, 1091, 1044, 1024, 1038, 1088, 1168, 1299, 1447, 1612, 1804, 1985, 2010, 1772, 1591, 1417, 1288, 1171, 1104, 1065, 1037, 1054, 1107, 1189, 1307, 1438, 1587, 1793, 1994, 2063, 1778, 1599, 1427, 1317, 1194, 1128, 1082, 1076, 1098, 1128, 1212, 1334, 1478, 1637, 1802, 2023, 2084, 1787, 1638, 1469, 1359, 1240, 1179, 1135, 1119, 1156, 1197, 1246, 1384, 1539, 1673, 1843, 2167, 2199, 1876, 1683, 1537, 1417, 1308, 1240, 1204, 1179, 1224, 1265, 1340, 1468, 1604, 1736, 1918, 2361, 2369, 1945, 1726, 1596, 1516, 1413, 1328, 1292, 1282, 1306, 1348, 1429, 1561, 1651, 1781, 2124, 2737, 2644, 2031, 1835, 1674, 1600, 1521, 1447, 1406, 1391, 1432, 1481, 1541, 1633, 1746, 1992, 2408, 3352, 3238, 2380, 1937, 1764, 1677, 1572, 1555, 1501, 1515, 1533, 1597, 1625, 1754, 1904, 2247, 2902, 4174, 4335, 3045, 2305, 1953, 1835, 1747, 1722, 1676, 1652, 1719, 1769, 1850, 2012, 2274, 2928, 3849, 5815]
                                       }
                                   }, {
                                       "name":    "1600x1200_HZ_70",
                                       "resolution":    "1600x1200",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3522, 2976, 2705, 2566, 2397, 2284, 2193, 2111, 2107, 2109, 2165, 2240, 2357, 2447, 2610, 2874, 3234, 3229, 2810, 2532, 2347, 2201, 2065, 1944, 1902, 1875, 1889, 1960, 2042, 2223, 2294, 2458, 2670, 3070, 3033, 2656, 2387, 2202, 2075, 1900, 1793, 1677, 1650, 1704, 1749, 1896, 2031, 2178, 2311, 2526, 2785, 2830, 2485, 2291, 2119, 1924, 1740, 1586, 1498, 1470, 1506, 1585, 1713, 1861, 2074, 2234, 2392, 2675, 2731, 2418, 2207, 1994, 1762, 1572, 1447, 1355, 1315, 1329, 1418, 1558, 1739, 1944, 2152, 2341, 2555, 2636, 2331, 2111, 1897, 1663, 1457, 1319, 1220, 1186, 1202, 1276, 1435, 1625, 1884, 2067, 2299, 2510, 2579, 2305, 2049, 1826, 1565, 1377, 1230, 1125, 1075, 1088, 1175, 1326, 1534, 1758, 2013, 2235, 2419, 2565, 2286, 2020, 1788, 1533, 1340, 1172, 1072, 1031, 1041, 1123, 1275, 1485, 1724, 1984, 2193, 2406, 2540, 2286, 2055, 1767, 1525, 1306, 1162, 1066, 1024, 1038, 1125, 1278, 1464, 1700, 1958, 2204, 2451, 2557, 2288, 2050, 1779, 1537, 1328, 1183, 1085, 1046, 1068, 1156, 1296, 1492, 1718, 1993, 2213, 2464, 2621, 2328, 2103, 1875, 1602, 1402, 1258, 1149, 1105, 1139, 1224, 1356, 1565, 1785, 2048, 2230, 2480, 2698, 2363, 2159, 1930, 1693, 1505, 1356, 1231, 1210, 1226, 1317, 1448, 1639, 1890, 2116, 2336, 2608, 2839, 2500, 2263, 2072, 1841, 1656, 1478, 1371, 1338, 1347, 1440, 1592, 1771, 2012, 2209, 2400, 2865, 2945, 2600, 2369, 2169, 1968, 1788, 1663, 1544, 1512, 1515, 1604, 1755, 1927, 2108, 2304, 2593, 3153, 3332, 2707, 2479, 2288, 2158, 1992, 1836, 1752, 1710, 1707, 1793, 1923, 2082, 2261, 2502, 2940, 3825, 3786, 3050, 2628, 2468, 2272, 2137, 2026, 1950, 1913, 1942, 1993, 2127, 2292, 2492, 2849, 3478, 4370, 4745, 3638, 3067, 2672, 2482, 2329, 2249, 2188, 2162, 2192, 2267, 2357, 2567, 2881, 3371, 4313, 5662]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2697, 2343, 2193, 2009, 1880, 1822, 1793, 1772, 1750, 1778, 1780, 1844, 1891, 1976, 2092, 2327, 2759, 2433, 2188, 1960, 1831, 1727, 1672, 1624, 1596, 1605, 1641, 1659, 1718, 1802, 1874, 2003, 2160, 2446, 2399, 2061, 1862, 1759, 1658, 1576, 1528, 1461, 1465, 1492, 1545, 1601, 1705, 1783, 1911, 2072, 2293, 2223, 1945, 1800, 1675, 1573, 1459, 1397, 1350, 1344, 1369, 1397, 1488, 1617, 1715, 1845, 1981, 2159, 2108, 1846, 1743, 1593, 1501, 1376, 1301, 1253, 1228, 1246, 1287, 1379, 1515, 1651, 1758, 1897, 2069, 2037, 1824, 1690, 1555, 1428, 1304, 1208, 1170, 1143, 1151, 1202, 1300, 1434, 1598, 1735, 1896, 2020, 1998, 1805, 1654, 1490, 1369, 1242, 1142, 1101, 1070, 1066, 1139, 1238, 1406, 1544, 1698, 1853, 1975, 2003, 1790, 1664, 1482, 1354, 1211, 1122, 1047, 1033, 1029, 1090, 1198, 1352, 1513, 1677, 1831, 1972, 1985, 1785, 1626, 1487, 1348, 1201, 1101, 1032, 1024, 1030, 1097, 1207, 1344, 1495, 1679, 1869, 1966, 1998, 1800, 1650, 1490, 1354, 1219, 1124, 1068, 1037, 1067, 1117, 1211, 1358, 1518, 1675, 1857, 1978, 2048, 1847, 1711, 1553, 1419, 1270, 1184, 1117, 1097, 1118, 1153, 1271, 1425, 1570, 1727, 1880, 1984, 2106, 1874, 1765, 1618, 1475, 1348, 1253, 1205, 1174, 1181, 1238, 1345, 1491, 1655, 1766, 1924, 2166, 2204, 1948, 1827, 1706, 1597, 1441, 1348, 1301, 1274, 1288, 1353, 1445, 1569, 1720, 1868, 2014, 2342, 2317, 2012, 1890, 1767, 1648, 1573, 1451, 1418, 1405, 1415, 1460, 1527, 1670, 1787, 1897, 2170, 2611, 2579, 2159, 1952, 1853, 1783, 1702, 1619, 1582, 1534, 1556, 1607, 1681, 1808, 1901, 2073, 2472, 3027, 2956, 2386, 2115, 1964, 1885, 1796, 1753, 1695, 1696, 1709, 1761, 1825, 1937, 2072, 2331, 2858, 3636, 3742, 2849, 2474, 2139, 1985, 1962, 1901, 1893, 1895, 1869, 1929, 1998, 2175, 2381, 2817, 3475, 5088]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3065, 2429, 2228, 2055, 1938, 1905, 1838, 1750, 1744, 1816, 1794, 1854, 1938, 2011, 2163, 2340, 2819, 2590, 2272, 2074, 1918, 1834, 1744, 1697, 1640, 1609, 1634, 1678, 1734, 1836, 1923, 1992, 2220, 2512, 2430, 2146, 1945, 1859, 1755, 1655, 1561, 1499, 1491, 1500, 1527, 1617, 1724, 1820, 1930, 2088, 2284, 2318, 2020, 1892, 1788, 1660, 1533, 1425, 1380, 1356, 1372, 1417, 1521, 1641, 1769, 1845, 2024, 2249, 2206, 1979, 1844, 1693, 1550, 1431, 1315, 1249, 1231, 1256, 1298, 1410, 1543, 1663, 1812, 1972, 2119, 2149, 1902, 1773, 1638, 1509, 1359, 1228, 1178, 1144, 1146, 1211, 1297, 1476, 1661, 1769, 1919, 2068, 2103, 1877, 1703, 1576, 1422, 1283, 1160, 1097, 1064, 1071, 1139, 1245, 1415, 1595, 1717, 1873, 2042, 2051, 1854, 1689, 1529, 1371, 1256, 1124, 1054, 1030, 1035, 1097, 1216, 1381, 1539, 1725, 1863, 2001, 2040, 1837, 1709, 1541, 1384, 1240, 1132, 1056, 1035, 1032, 1104, 1214, 1366, 1545, 1705, 1865, 2003, 2044, 1847, 1712, 1529, 1404, 1231, 1138, 1047, 1024, 1055, 1127, 1237, 1378, 1540, 1748, 1889, 2051, 2068, 1851, 1730, 1565, 1404, 1279, 1166, 1103, 1075, 1104, 1151, 1268, 1419, 1575, 1765, 1895, 2049, 2159, 1889, 1749, 1594, 1456, 1333, 1230, 1170, 1138, 1168, 1224, 1334, 1477, 1647, 1756, 1958, 2151, 2246, 1957, 1786, 1657, 1518, 1405, 1288, 1266, 1230, 1240, 1328, 1439, 1540, 1689, 1820, 2008, 2367, 2316, 2016, 1841, 1705, 1622, 1501, 1410, 1357, 1355, 1354, 1422, 1515, 1637, 1758, 1890, 2143, 2661, 2548, 2122, 1898, 1823, 1719, 1604, 1529, 1485, 1466, 1476, 1547, 1623, 1740, 1869, 2019, 2401, 3085, 2932, 2356, 2006, 1885, 1803, 1720, 1673, 1615, 1589, 1621, 1679, 1735, 1860, 2007, 2282, 2808, 3605, 3701, 2809, 2453, 2064, 1934, 1845, 1791, 1795, 1745, 1774, 1828, 1924, 2072, 2327, 2879, 3474, 4786]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2791, 2413, 2113, 2034, 1848, 1752, 1766, 1711, 1696, 1738, 1766, 1837, 1904, 1975, 2082, 2346, 2754, 2494, 2165, 1936, 1804, 1723, 1657, 1610, 1582, 1541, 1606, 1623, 1660, 1749, 1830, 1920, 2071, 2450, 2421, 2039, 1823, 1739, 1659, 1585, 1510, 1454, 1458, 1471, 1505, 1570, 1670, 1754, 1847, 1958, 2280, 2245, 1942, 1780, 1677, 1573, 1492, 1409, 1374, 1327, 1366, 1391, 1493, 1598, 1680, 1786, 1952, 2174, 2153, 1897, 1739, 1630, 1518, 1409, 1330, 1242, 1243, 1278, 1307, 1386, 1520, 1665, 1767, 1901, 2127, 2079, 1819, 1697, 1588, 1454, 1312, 1221, 1158, 1139, 1155, 1200, 1324, 1449, 1614, 1730, 1865, 2001, 2046, 1776, 1669, 1539, 1414, 1275, 1162, 1110, 1074, 1101, 1134, 1258, 1400, 1549, 1698, 1840, 2077, 1954, 1811, 1625, 1515, 1383, 1238, 1128, 1065, 1053, 1054, 1121, 1243, 1363, 1492, 1675, 1835, 1946, 1947, 1805, 1656, 1485, 1365, 1221, 1108, 1063, 1027, 1044, 1126, 1222, 1380, 1495, 1674, 1854, 1949, 1947, 1801, 1652, 1511, 1370, 1216, 1128, 1069, 1024, 1064, 1151, 1247, 1390, 1502, 1718, 1819, 2030, 1963, 1803, 1666, 1518, 1387, 1246, 1139, 1116, 1084, 1104, 1183, 1273, 1435, 1560, 1727, 1852, 2006, 2081, 1829, 1663, 1563, 1471, 1300, 1218, 1178, 1141, 1174, 1240, 1351, 1476, 1636, 1737, 1899, 2132, 2130, 1860, 1723, 1633, 1533, 1397, 1319, 1249, 1258, 1256, 1343, 1405, 1536, 1702, 1831, 1977, 2368, 2194, 1893, 1774, 1666, 1561, 1473, 1411, 1364, 1373, 1367, 1438, 1534, 1630, 1775, 1877, 2071, 2605, 2448, 2052, 1818, 1752, 1670, 1597, 1526, 1499, 1457, 1485, 1552, 1619, 1713, 1820, 1974, 2394, 3043, 2960, 2286, 1948, 1791, 1753, 1661, 1657, 1588, 1601, 1625, 1685, 1740, 1827, 1979, 2220, 2719, 3812, 3756, 2720, 2293, 1996, 1891, 1834, 1791, 1760, 1769, 1823, 1812, 1912, 2126, 2244, 2816, 3512, 4787]
                                       }
                                   }, {
                                       "name":    "1600x1200_HZ_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4593, 3638, 3170, 2917, 2658, 2488, 2359, 2253, 2244, 2251, 2327, 2437, 2610, 2771, 3048, 3502, 4181, 4054, 3341, 2892, 2601, 2385, 2199, 2045, 1989, 1956, 1975, 2063, 2173, 2410, 2538, 2800, 3160, 3836, 3707, 3087, 2670, 2394, 2209, 1989, 1857, 1724, 1693, 1753, 1809, 1985, 2160, 2366, 2578, 2922, 3376, 3381, 2831, 2521, 2271, 2018, 1797, 1620, 1522, 1491, 1530, 1619, 1767, 1949, 2220, 2454, 2715, 3178, 3211, 2717, 2398, 2110, 1825, 1606, 1465, 1366, 1324, 1339, 1435, 1591, 1801, 2054, 2334, 2624, 2985, 3060, 2590, 2270, 1988, 1709, 1478, 1328, 1224, 1189, 1206, 1284, 1454, 1668, 1974, 2220, 2552, 2901, 2968, 2544, 2188, 1902, 1598, 1390, 1234, 1126, 1075, 1089, 1178, 1337, 1566, 1827, 2147, 2461, 2768, 2939, 2513, 2149, 1855, 1561, 1350, 1174, 1072, 1031, 1041, 1124, 1283, 1511, 1786, 2108, 2403, 2742, 2905, 2510, 2186, 1831, 1552, 1314, 1164, 1066, 1024, 1038, 1126, 1286, 1488, 1758, 2077, 2414, 2794, 2929, 2516, 2182, 1845, 1566, 1338, 1185, 1085, 1046, 1068, 1158, 1305, 1518, 1779, 2118, 2427, 2814, 3021, 2571, 2249, 1955, 1638, 1416, 1263, 1150, 1106, 1140, 1228, 1368, 1598, 1857, 2187, 2455, 2845, 3138, 2629, 2325, 2025, 1741, 1528, 1366, 1235, 1213, 1230, 1326, 1468, 1683, 1981, 2276, 2596, 3024, 3349, 2817, 2463, 2197, 1911, 1695, 1498, 1383, 1347, 1358, 1458, 1627, 1835, 2130, 2401, 2696, 3382, 3530, 2973, 2614, 2328, 2067, 1848, 1702, 1570, 1535, 1540, 1640, 1813, 2021, 2258, 2537, 2964, 3802, 4106, 3151, 2781, 2494, 2303, 2090, 1904, 1805, 1757, 1757, 1857, 2014, 2217, 2462, 2808, 3445, 4764, 4820, 3653, 3011, 2745, 2467, 2281, 2136, 2042, 1998, 2033, 2100, 2269, 2490, 2774, 3284, 4208, 5622, 6339, 4524, 3631, 3047, 2759, 2540, 2423, 2340, 2306, 2345, 2444, 2572, 2860, 3304, 4020, 5429, 7649]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3414, 2791, 2516, 2233, 2043, 1951, 1902, 1870, 1842, 1877, 1888, 1977, 2056, 2193, 2387, 2769, 3503, 2960, 2534, 2183, 1986, 1837, 1756, 1690, 1653, 1660, 1702, 1729, 1808, 1923, 2037, 2237, 2498, 2978, 2860, 2334, 2036, 1878, 1739, 1632, 1570, 1493, 1495, 1526, 1588, 1660, 1792, 1907, 2095, 2349, 2718, 2589, 2163, 1941, 1765, 1630, 1493, 1420, 1367, 1359, 1387, 1420, 1525, 1679, 1811, 1994, 2207, 2505, 2412, 2022, 1859, 1661, 1542, 1397, 1313, 1261, 1234, 1253, 1298, 1401, 1557, 1726, 1877, 2084, 2363, 2303, 1983, 1787, 1611, 1457, 1317, 1214, 1173, 1145, 1154, 1207, 1313, 1463, 1658, 1839, 2069, 2282, 2242, 1951, 1739, 1534, 1390, 1250, 1144, 1102, 1070, 1066, 1141, 1246, 1430, 1593, 1789, 2008, 2213, 2241, 1928, 1747, 1522, 1372, 1217, 1123, 1047, 1033, 1029, 1091, 1204, 1370, 1556, 1761, 1976, 2202, 2216, 1920, 1702, 1527, 1365, 1206, 1102, 1032, 1024, 1030, 1098, 1213, 1361, 1536, 1762, 2019, 2193, 2235, 1940, 1731, 1531, 1372, 1225, 1126, 1068, 1037, 1067, 1118, 1217, 1377, 1562, 1759, 2007, 2210, 2305, 2001, 1804, 1603, 1443, 1279, 1187, 1118, 1098, 1119, 1156, 1280, 1450, 1622, 1822, 2040, 2224, 2391, 2043, 1873, 1680, 1507, 1363, 1260, 1209, 1177, 1184, 1244, 1360, 1525, 1721, 1874, 2103, 2466, 2536, 2147, 1957, 1787, 1646, 1466, 1362, 1310, 1282, 1297, 1367, 1471, 1616, 1803, 2005, 2227, 2712, 2711, 2245, 2047, 1870, 1713, 1616, 1477, 1438, 1423, 1435, 1487, 1567, 1738, 1893, 2056, 2441, 3095, 3101, 2459, 2144, 1988, 1880, 1771, 1669, 1623, 1569, 1595, 1656, 1748, 1908, 2044, 2290, 2854, 3699, 3679, 2791, 2375, 2145, 2019, 1896, 1833, 1761, 1760, 1777, 1842, 1928, 2079, 2273, 2643, 3404, 4613, 4907, 3468, 2875, 2393, 2168, 2114, 2026, 2007, 2006, 1979, 2058, 2156, 2394, 2690, 3312, 4306, 6829]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3939, 2906, 2561, 2289, 2111, 2047, 1954, 1845, 1835, 1920, 1904, 1988, 2112, 2235, 2478, 2787, 3588, 3176, 2643, 2325, 2090, 1960, 1837, 1771, 1701, 1665, 1694, 1750, 1826, 1963, 2096, 2223, 2576, 3069, 2901, 2442, 2136, 1995, 1848, 1719, 1606, 1533, 1523, 1535, 1569, 1677, 1813, 1949, 2118, 2369, 2706, 2712, 2256, 2050, 1894, 1726, 1573, 1450, 1398, 1372, 1390, 1441, 1560, 1706, 1872, 1994, 2261, 2623, 2538, 2184, 1977, 1773, 1595, 1456, 1328, 1257, 1237, 1264, 1310, 1434, 1588, 1739, 1939, 2176, 2427, 2445, 2076, 1882, 1702, 1544, 1375, 1234, 1181, 1146, 1148, 1217, 1310, 1508, 1728, 1878, 2097, 2343, 2373, 2036, 1795, 1628, 1447, 1293, 1163, 1098, 1064, 1071, 1141, 1253, 1439, 1649, 1811, 2031, 2297, 2300, 2003, 1775, 1574, 1390, 1263, 1126, 1054, 1030, 1035, 1098, 1222, 1401, 1584, 1815, 2014, 2239, 2284, 1981, 1796, 1585, 1403, 1246, 1133, 1056, 1035, 1032, 1105, 1220, 1384, 1590, 1791, 2014, 2239, 2292, 1995, 1801, 1573, 1425, 1238, 1140, 1047, 1024, 1055, 1129, 1244, 1398, 1585, 1841, 2045, 2300, 2329, 2006, 1826, 1616, 1428, 1289, 1169, 1104, 1075, 1105, 1154, 1277, 1443, 1627, 1865, 2058, 2306, 2457, 2060, 1855, 1654, 1487, 1348, 1236, 1173, 1140, 1171, 1230, 1349, 1510, 1712, 1863, 2143, 2448, 2589, 2157, 1909, 1732, 1560, 1428, 1300, 1274, 1236, 1247, 1341, 1464, 1584, 1768, 1949, 2219, 2744, 2710, 2250, 1990, 1799, 1685, 1539, 1434, 1374, 1371, 1371, 1446, 1554, 1701, 1860, 2048, 2407, 3160, 3059, 2412, 2079, 1953, 1808, 1663, 1571, 1519, 1496, 1509, 1591, 1684, 1832, 2007, 2225, 2764, 3776, 3646, 2753, 2240, 2051, 1925, 1810, 1745, 1673, 1643, 1680, 1751, 1827, 1991, 2196, 2582, 3339, 4571, 4848, 3414, 2848, 2301, 2107, 1978, 1900, 1896, 1836, 1872, 1942, 2069, 2271, 2624, 3392, 4305, 6398]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3548, 2884, 2414, 2264, 2005, 1870, 1871, 1801, 1781, 1831, 1872, 1968, 2071, 2192, 2374, 2794, 3495, 3044, 2505, 2154, 1954, 1832, 1739, 1675, 1637, 1590, 1664, 1689, 1742, 1862, 1985, 2134, 2382, 2983, 2890, 2307, 1989, 1855, 1740, 1642, 1550, 1485, 1488, 1503, 1545, 1625, 1752, 1873, 2018, 2204, 2701, 2617, 2159, 1918, 1768, 1630, 1529, 1433, 1392, 1341, 1383, 1413, 1530, 1658, 1771, 1925, 2171, 2525, 2470, 2085, 1855, 1702, 1561, 1432, 1343, 1249, 1250, 1287, 1319, 1408, 1563, 1742, 1887, 2089, 2437, 2356, 1977, 1796, 1647, 1485, 1326, 1227, 1161, 1141, 1158, 1205, 1338, 1480, 1676, 1833, 2032, 2258, 2302, 1916, 1756, 1587, 1438, 1284, 1165, 1111, 1074, 1102, 1136, 1267, 1423, 1599, 1789, 1992, 2341, 2180, 1953, 1702, 1558, 1403, 1245, 1130, 1065, 1053, 1054, 1122, 1250, 1382, 1533, 1759, 1981, 2170, 2169, 1944, 1736, 1525, 1383, 1227, 1109, 1063, 1027, 1044, 1127, 1228, 1399, 1536, 1756, 2001, 2172, 2171, 1941, 1733, 1554, 1389, 1222, 1130, 1069, 1024, 1064, 1153, 1254, 1410, 1544, 1808, 1962, 2275, 2198, 1949, 1753, 1565, 1409, 1254, 1141, 1117, 1084, 1105, 1186, 1282, 1460, 1611, 1822, 2007, 2252, 2359, 1989, 1756, 1619, 1503, 1313, 1224, 1181, 1143, 1177, 1247, 1366, 1509, 1700, 1841, 2073, 2424, 2441, 2039, 1836, 1706, 1577, 1420, 1332, 1256, 1265, 1264, 1357, 1428, 1580, 1783, 1962, 2182, 2746, 2551, 2098, 1911, 1755, 1617, 1509, 1435, 1381, 1390, 1384, 1463, 1574, 1693, 1879, 2032, 2318, 3087, 2926, 2323, 1983, 1870, 1753, 1655, 1568, 1534, 1487, 1519, 1596, 1679, 1801, 1949, 2171, 2755, 3720, 3685, 2661, 2169, 1938, 1867, 1743, 1727, 1644, 1656, 1685, 1758, 1832, 1952, 2162, 2505, 3223, 4855, 4927, 3295, 2644, 2217, 2055, 1965, 1900, 1856, 1863, 1927, 1924, 2056, 2335, 2521, 3311, 4356, 6399]
                                       }
                                   }, {
                                       "name":    "1600x1200_TL84_70",
                                       "resolution":    "1600x1200",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2764, 2322, 2101, 1926, 1864, 1765, 1745, 1688, 1632, 1686, 1693, 1735, 1812, 1879, 1999, 2198, 2549, 2459, 2127, 1933, 1789, 1712, 1635, 1570, 1544, 1535, 1537, 1561, 1634, 1699, 1783, 1880, 2053, 2310, 2339, 2019, 1831, 1716, 1609, 1538, 1467, 1438, 1409, 1435, 1465, 1535, 1597, 1695, 1790, 1965, 2129, 2190, 1905, 1740, 1646, 1542, 1445, 1367, 1311, 1313, 1311, 1353, 1425, 1534, 1631, 1725, 1871, 2049, 2078, 1864, 1688, 1565, 1460, 1348, 1267, 1231, 1193, 1226, 1264, 1331, 1444, 1536, 1692, 1816, 1976, 2000, 1770, 1641, 1521, 1403, 1275, 1188, 1146, 1127, 1139, 1175, 1265, 1370, 1507, 1623, 1751, 1928, 1982, 1786, 1633, 1481, 1349, 1236, 1156, 1104, 1075, 1073, 1115, 1200, 1339, 1456, 1616, 1746, 1860, 1964, 1734, 1591, 1460, 1341, 1215, 1117, 1060, 1045, 1042, 1095, 1173, 1318, 1450, 1576, 1709, 1852, 1966, 1755, 1618, 1456, 1315, 1198, 1120, 1049, 1024, 1035, 1099, 1182, 1304, 1431, 1570, 1723, 1853, 1960, 1757, 1641, 1485, 1351, 1222, 1133, 1069, 1043, 1077, 1120, 1208, 1309, 1448, 1607, 1722, 1852, 2008, 1815, 1668, 1545, 1386, 1268, 1168, 1130, 1102, 1109, 1174, 1250, 1356, 1489, 1635, 1739, 1905, 2063, 1843, 1720, 1590, 1449, 1345, 1237, 1182, 1152, 1179, 1219, 1303, 1424, 1542, 1670, 1799, 2020, 2167, 1913, 1777, 1646, 1519, 1411, 1318, 1258, 1251, 1255, 1306, 1387, 1483, 1630, 1738, 1870, 2172, 2255, 1975, 1829, 1696, 1601, 1498, 1410, 1360, 1325, 1351, 1407, 1483, 1563, 1687, 1804, 2022, 2488, 2545, 2115, 1907, 1795, 1672, 1607, 1538, 1482, 1465, 1474, 1521, 1600, 1682, 1792, 1957, 2310, 2936, 2921, 2371, 2012, 1865, 1801, 1703, 1645, 1602, 1562, 1592, 1641, 1693, 1789, 1944, 2205, 2709, 3481, 3595, 2780, 2346, 2076, 1904, 1864, 1821, 1758, 1727, 1738, 1791, 1875, 2033, 2240, 2735, 3408, 4406]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2533, 2158, 1961, 1807, 1685, 1661, 1600, 1587, 1595, 1581, 1616, 1663, 1707, 1782, 1912, 2129, 2437, 2300, 1963, 1798, 1658, 1585, 1518, 1480, 1456, 1453, 1472, 1488, 1534, 1581, 1698, 1768, 1971, 2162, 2120, 1883, 1687, 1594, 1522, 1452, 1388, 1360, 1364, 1361, 1375, 1434, 1531, 1620, 1693, 1850, 2034, 2000, 1768, 1596, 1538, 1436, 1349, 1293, 1273, 1272, 1280, 1316, 1375, 1466, 1576, 1631, 1779, 1945, 1893, 1701, 1562, 1454, 1390, 1303, 1227, 1190, 1173, 1186, 1216, 1286, 1388, 1494, 1596, 1729, 1892, 1830, 1644, 1525, 1414, 1322, 1226, 1152, 1125, 1101, 1111, 1157, 1244, 1349, 1466, 1578, 1709, 1806, 1809, 1635, 1511, 1384, 1287, 1192, 1105, 1080, 1063, 1067, 1098, 1188, 1306, 1414, 1545, 1686, 1796, 1783, 1620, 1507, 1362, 1265, 1160, 1087, 1039, 1031, 1025, 1076, 1166, 1283, 1390, 1531, 1668, 1800, 1781, 1651, 1498, 1388, 1263, 1170, 1094, 1037, 1024, 1028, 1084, 1171, 1283, 1403, 1532, 1691, 1750, 1792, 1619, 1526, 1394, 1288, 1176, 1106, 1054, 1044, 1056, 1105, 1166, 1287, 1429, 1559, 1687, 1766, 1855, 1670, 1552, 1427, 1325, 1229, 1152, 1098, 1083, 1096, 1135, 1240, 1332, 1431, 1601, 1703, 1850, 1886, 1727, 1603, 1502, 1391, 1276, 1201, 1142, 1147, 1149, 1198, 1266, 1391, 1524, 1609, 1745, 1950, 1976, 1779, 1661, 1559, 1471, 1360, 1281, 1236, 1224, 1230, 1278, 1343, 1464, 1587, 1689, 1784, 2051, 2096, 1849, 1723, 1605, 1517, 1439, 1380, 1329, 1324, 1340, 1358, 1437, 1548, 1642, 1697, 1916, 2344, 2323, 1938, 1788, 1684, 1604, 1561, 1494, 1464, 1450, 1429, 1498, 1557, 1620, 1690, 1869, 2200, 2740, 2693, 2190, 1899, 1754, 1689, 1627, 1621, 1567, 1558, 1574, 1600, 1645, 1725, 1870, 2113, 2625, 3267, 3410, 2617, 2190, 1952, 1792, 1761, 1708, 1728, 1663, 1703, 1747, 1799, 1913, 2150, 2602, 3231, 4422]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2691, 2238, 2032, 1916, 1775, 1714, 1664, 1633, 1643, 1644, 1675, 1696, 1749, 1848, 1944, 2142, 2446, 2327, 2071, 1881, 1766, 1661, 1612, 1555, 1532, 1501, 1500, 1538, 1596, 1657, 1741, 1828, 1984, 2244, 2170, 1945, 1788, 1679, 1598, 1511, 1456, 1407, 1399, 1404, 1438, 1500, 1576, 1634, 1711, 1890, 2096, 2099, 1847, 1713, 1617, 1514, 1434, 1358, 1310, 1295, 1314, 1351, 1407, 1497, 1597, 1699, 1801, 2004, 1976, 1785, 1650, 1551, 1444, 1335, 1269, 1235, 1194, 1214, 1251, 1317, 1436, 1531, 1641, 1740, 1905, 1912, 1719, 1612, 1500, 1399, 1289, 1200, 1139, 1123, 1123, 1170, 1253, 1365, 1477, 1590, 1714, 1826, 1870, 1696, 1587, 1456, 1339, 1232, 1149, 1090, 1077, 1064, 1107, 1195, 1323, 1442, 1575, 1708, 1808, 1863, 1671, 1566, 1447, 1312, 1199, 1111, 1072, 1033, 1035, 1075, 1168, 1287, 1422, 1546, 1679, 1772, 1838, 1674, 1569, 1424, 1300, 1197, 1101, 1044, 1024, 1038, 1081, 1172, 1291, 1430, 1554, 1695, 1802, 1856, 1660, 1549, 1437, 1307, 1186, 1103, 1049, 1025, 1045, 1092, 1180, 1299, 1427, 1564, 1701, 1801, 1853, 1675, 1556, 1444, 1329, 1218, 1121, 1088, 1070, 1073, 1116, 1216, 1319, 1448, 1581, 1721, 1835, 1933, 1671, 1583, 1493, 1353, 1276, 1189, 1145, 1115, 1139, 1188, 1265, 1375, 1509, 1593, 1731, 1908, 1983, 1729, 1640, 1527, 1419, 1334, 1247, 1196, 1190, 1197, 1262, 1331, 1447, 1557, 1653, 1759, 2062, 2084, 1800, 1665, 1565, 1481, 1394, 1335, 1285, 1278, 1294, 1358, 1410, 1503, 1614, 1708, 1912, 2330, 2324, 1933, 1731, 1631, 1533, 1484, 1423, 1402, 1390, 1393, 1441, 1518, 1580, 1681, 1834, 2151, 2702, 2649, 2138, 1822, 1734, 1642, 1552, 1519, 1477, 1481, 1499, 1554, 1600, 1681, 1833, 2093, 2552, 3229, 3266, 2576, 2151, 1873, 1751, 1690, 1636, 1635, 1619, 1638, 1682, 1735, 1877, 2111, 2530, 3178, 4300]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2562, 2141, 1909, 1795, 1650, 1590, 1557, 1546, 1541, 1539, 1577, 1618, 1655, 1702, 1837, 2010, 2381, 2234, 1905, 1746, 1651, 1544, 1502, 1471, 1426, 1407, 1431, 1459, 1493, 1542, 1634, 1686, 1882, 2076, 2115, 1824, 1653, 1545, 1502, 1421, 1359, 1346, 1308, 1334, 1366, 1418, 1489, 1548, 1634, 1750, 1996, 1973, 1721, 1581, 1508, 1433, 1352, 1287, 1263, 1246, 1277, 1305, 1336, 1434, 1488, 1575, 1697, 1877, 1896, 1659, 1553, 1456, 1367, 1280, 1235, 1188, 1156, 1177, 1206, 1273, 1364, 1473, 1560, 1630, 1819, 1832, 1612, 1514, 1423, 1305, 1211, 1143, 1123, 1120, 1106, 1143, 1227, 1302, 1427, 1506, 1623, 1794, 1763, 1562, 1480, 1389, 1269, 1194, 1105, 1070, 1065, 1060, 1113, 1185, 1286, 1358, 1485, 1604, 1732, 1730, 1573, 1441, 1364, 1263, 1147, 1100, 1054, 1052, 1064, 1100, 1151, 1232, 1347, 1470, 1597, 1722, 1759, 1580, 1462, 1346, 1233, 1166, 1099, 1030, 1024, 1051, 1087, 1149, 1240, 1366, 1493, 1602, 1711, 1758, 1586, 1440, 1347, 1241, 1150, 1096, 1050, 1033, 1056, 1094, 1158, 1255, 1381, 1484, 1585, 1726, 1785, 1574, 1484, 1365, 1273, 1169, 1112, 1087, 1085, 1085, 1103, 1189, 1280, 1392, 1524, 1639, 1785, 1778, 1593, 1480, 1401, 1296, 1224, 1155, 1122, 1096, 1144, 1173, 1225, 1323, 1432, 1542, 1651, 1857, 1892, 1634, 1515, 1454, 1352, 1245, 1206, 1189, 1178, 1195, 1238, 1277, 1378, 1489, 1553, 1711, 1997, 1977, 1707, 1591, 1474, 1402, 1343, 1277, 1253, 1247, 1263, 1307, 1372, 1454, 1543, 1624, 1819, 2256, 2164, 1776, 1608, 1537, 1458, 1399, 1365, 1346, 1354, 1355, 1404, 1431, 1523, 1581, 1735, 2051, 2666, 2559, 2023, 1680, 1567, 1490, 1466, 1463, 1416, 1417, 1423, 1468, 1506, 1579, 1734, 1987, 2440, 3216, 3176, 2422, 2024, 1720, 1640, 1571, 1576, 1559, 1554, 1573, 1616, 1647, 1765, 1989, 2344, 3057, 4149]
                                       }
                                   }, {
                                       "name":    "1600x1200_TL84_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3509, 2762, 2398, 2131, 2023, 1885, 1848, 1775, 1709, 1772, 1788, 1850, 1962, 2073, 2269, 2596, 3202, 2996, 2455, 2150, 1936, 1819, 1714, 1630, 1596, 1584, 1588, 1620, 1713, 1804, 1929, 2084, 2359, 2791, 2780, 2281, 1998, 1828, 1684, 1590, 1504, 1468, 1436, 1465, 1502, 1587, 1670, 1804, 1949, 2213, 2499, 2546, 2113, 1870, 1732, 1596, 1478, 1388, 1326, 1327, 1326, 1373, 1457, 1587, 1715, 1852, 2071, 2362, 2374, 2045, 1795, 1629, 1498, 1368, 1278, 1238, 1198, 1233, 1274, 1350, 1480, 1597, 1800, 1986, 2243, 2257, 1918, 1731, 1573, 1430, 1287, 1193, 1148, 1129, 1141, 1180, 1276, 1395, 1558, 1711, 1895, 2166, 2222, 1928, 1716, 1524, 1369, 1244, 1159, 1105, 1075, 1074, 1117, 1207, 1359, 1497, 1696, 1881, 2069, 2193, 1862, 1664, 1498, 1359, 1221, 1118, 1060, 1045, 1042, 1096, 1178, 1334, 1487, 1647, 1832, 2053, 2192, 1885, 1693, 1493, 1331, 1203, 1121, 1049, 1024, 1035, 1100, 1187, 1319, 1466, 1639, 1847, 2052, 2188, 1889, 1721, 1526, 1369, 1228, 1135, 1069, 1043, 1077, 1121, 1214, 1325, 1485, 1682, 1848, 2053, 2254, 1963, 1755, 1594, 1408, 1277, 1171, 1131, 1103, 1110, 1177, 1259, 1377, 1533, 1718, 1873, 2126, 2336, 2006, 1822, 1649, 1480, 1360, 1243, 1185, 1154, 1182, 1225, 1316, 1453, 1596, 1764, 1953, 2282, 2488, 2104, 1899, 1720, 1562, 1435, 1331, 1266, 1258, 1263, 1318, 1409, 1523, 1702, 1854, 2052, 2495, 2630, 2200, 1975, 1789, 1661, 1536, 1434, 1377, 1339, 1368, 1431, 1519, 1619, 1779, 1946, 2258, 2934, 3055, 2403, 2090, 1920, 1755, 1666, 1581, 1515, 1495, 1507, 1562, 1659, 1766, 1917, 2150, 2649, 3577, 3631, 2772, 2248, 2027, 1922, 1791, 1713, 1659, 1613, 1648, 1709, 1779, 1908, 2121, 2487, 3211, 4400, 4697, 3375, 2711, 2315, 2071, 2000, 1934, 1854, 1816, 1831, 1900, 2013, 2225, 2517, 3208, 4216, 5856]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3179, 2543, 2220, 1985, 1811, 1764, 1682, 1661, 1667, 1654, 1700, 1766, 1837, 1954, 2158, 2504, 3043, 2778, 2243, 1983, 1780, 1673, 1582, 1530, 1499, 1494, 1516, 1539, 1600, 1668, 1827, 1946, 2253, 2588, 2487, 2110, 1824, 1687, 1586, 1496, 1418, 1384, 1388, 1385, 1404, 1476, 1596, 1717, 1832, 2068, 2373, 2297, 1944, 1700, 1609, 1479, 1375, 1310, 1286, 1284, 1293, 1334, 1403, 1512, 1653, 1741, 1958, 2226, 2137, 1846, 1649, 1505, 1421, 1320, 1236, 1196, 1177, 1191, 1224, 1302, 1419, 1550, 1688, 1880, 2136, 2042, 1767, 1598, 1455, 1343, 1236, 1156, 1127, 1102, 1113, 1161, 1254, 1372, 1512, 1659, 1845, 2012, 2005, 1749, 1577, 1418, 1303, 1198, 1107, 1081, 1063, 1067, 1100, 1194, 1324, 1451, 1616, 1810, 1989, 1967, 1727, 1569, 1392, 1278, 1164, 1088, 1039, 1031, 1025, 1077, 1171, 1298, 1422, 1596, 1784, 1988, 1963, 1762, 1558, 1419, 1276, 1174, 1095, 1037, 1024, 1028, 1085, 1175, 1297, 1436, 1596, 1810, 1925, 1978, 1726, 1591, 1427, 1303, 1181, 1107, 1054, 1044, 1056, 1106, 1171, 1302, 1465, 1628, 1806, 1946, 2063, 1791, 1623, 1465, 1344, 1237, 1155, 1099, 1083, 1097, 1137, 1248, 1351, 1469, 1679, 1830, 2057, 2113, 1866, 1688, 1552, 1417, 1288, 1206, 1144, 1149, 1152, 1203, 1277, 1417, 1576, 1694, 1888, 2194, 2243, 1941, 1764, 1623, 1510, 1381, 1292, 1243, 1230, 1237, 1289, 1363, 1502, 1654, 1796, 1947, 2339, 2423, 2044, 1850, 1686, 1569, 1472, 1402, 1345, 1338, 1356, 1378, 1470, 1603, 1728, 1820, 2127, 2746, 2759, 2179, 1947, 1791, 1678, 1616, 1533, 1496, 1479, 1458, 1538, 1611, 1696, 1798, 2044, 2510, 3316, 3318, 2537, 2108, 1894, 1793, 1705, 1687, 1621, 1609, 1628, 1664, 1725, 1834, 2033, 2373, 3101, 4106, 4433, 3158, 2512, 2163, 1938, 1880, 1805, 1820, 1744, 1792, 1850, 1924, 2082, 2406, 3038, 3980, 5878]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3406, 2650, 2311, 2119, 1918, 1826, 1755, 1712, 1722, 1725, 1767, 1805, 1887, 2035, 2198, 2521, 3056, 2815, 2383, 2085, 1908, 1760, 1688, 1613, 1582, 1547, 1547, 1595, 1670, 1756, 1879, 2020, 2270, 2700, 2555, 2188, 1947, 1786, 1671, 1561, 1492, 1435, 1425, 1432, 1473, 1548, 1646, 1733, 1853, 2118, 2456, 2427, 2042, 1838, 1699, 1565, 1466, 1378, 1325, 1308, 1329, 1371, 1437, 1546, 1676, 1822, 1985, 2303, 2244, 1949, 1751, 1614, 1480, 1354, 1280, 1242, 1199, 1220, 1261, 1335, 1471, 1591, 1741, 1894, 2152, 2145, 1857, 1698, 1550, 1426, 1302, 1205, 1141, 1125, 1125, 1174, 1264, 1390, 1524, 1673, 1851, 2037, 2082, 1822, 1663, 1497, 1359, 1240, 1152, 1091, 1077, 1064, 1109, 1201, 1341, 1481, 1650, 1836, 2004, 2067, 1787, 1636, 1484, 1328, 1205, 1112, 1072, 1033, 1035, 1076, 1173, 1302, 1457, 1613, 1797, 1954, 2034, 1790, 1638, 1458, 1315, 1202, 1102, 1044, 1024, 1038, 1082, 1176, 1305, 1465, 1621, 1814, 1989, 2058, 1774, 1617, 1473, 1323, 1191, 1104, 1049, 1025, 1045, 1093, 1185, 1314, 1463, 1634, 1823, 1990, 2061, 1796, 1628, 1484, 1348, 1225, 1123, 1089, 1070, 1074, 1118, 1223, 1337, 1488, 1656, 1851, 2038, 2172, 1799, 1665, 1542, 1377, 1288, 1194, 1147, 1117, 1141, 1193, 1276, 1400, 1560, 1676, 1871, 2141, 2252, 1880, 1740, 1587, 1453, 1353, 1257, 1202, 1195, 1203, 1272, 1350, 1483, 1621, 1755, 1917, 2354, 2407, 1984, 1782, 1640, 1529, 1423, 1354, 1298, 1290, 1308, 1378, 1441, 1553, 1696, 1832, 2122, 2728, 2760, 2173, 1878, 1730, 1598, 1531, 1456, 1429, 1415, 1420, 1476, 1568, 1651, 1788, 2002, 2448, 3265, 3257, 2470, 2012, 1871, 1738, 1620, 1574, 1522, 1525, 1546, 1612, 1674, 1783, 1988, 2348, 3007, 4054, 4227, 3102, 2463, 2066, 1889, 1798, 1723, 1715, 1695, 1718, 1776, 1850, 2039, 2358, 2946, 3909, 5704]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3221, 2520, 2153, 1970, 1769, 1681, 1633, 1614, 1607, 1606, 1656, 1714, 1775, 1856, 2062, 2344, 2963, 2687, 2167, 1918, 1771, 1625, 1564, 1520, 1466, 1443, 1471, 1507, 1553, 1623, 1751, 1844, 2137, 2470, 2481, 2035, 1783, 1630, 1563, 1461, 1387, 1369, 1328, 1357, 1395, 1458, 1548, 1633, 1760, 1941, 2322, 2262, 1886, 1682, 1575, 1476, 1378, 1303, 1275, 1257, 1290, 1322, 1361, 1477, 1552, 1675, 1856, 2137, 2141, 1795, 1638, 1507, 1397, 1296, 1244, 1193, 1160, 1182, 1214, 1288, 1393, 1526, 1647, 1760, 2042, 2045, 1729, 1586, 1465, 1325, 1220, 1147, 1125, 1122, 1108, 1147, 1237, 1322, 1469, 1577, 1742, 1996, 1948, 1662, 1542, 1423, 1284, 1200, 1107, 1070, 1065, 1060, 1115, 1191, 1302, 1389, 1547, 1712, 1909, 1901, 1672, 1495, 1394, 1276, 1151, 1101, 1054, 1052, 1064, 1101, 1155, 1244, 1376, 1527, 1700, 1891, 1936, 1679, 1517, 1374, 1244, 1170, 1100, 1030, 1024, 1051, 1088, 1153, 1252, 1395, 1552, 1705, 1876, 1936, 1687, 1494, 1376, 1253, 1154, 1097, 1050, 1033, 1056, 1095, 1162, 1268, 1412, 1543, 1686, 1896, 1975, 1677, 1546, 1397, 1288, 1174, 1114, 1088, 1085, 1086, 1105, 1195, 1296, 1427, 1592, 1754, 1975, 1976, 1706, 1547, 1440, 1316, 1233, 1159, 1124, 1097, 1146, 1178, 1235, 1345, 1475, 1618, 1775, 2076, 2136, 1765, 1594, 1505, 1380, 1259, 1214, 1195, 1183, 1201, 1247, 1292, 1408, 1544, 1639, 1858, 2270, 2267, 1869, 1694, 1536, 1441, 1368, 1293, 1265, 1258, 1275, 1324, 1399, 1499, 1615, 1733, 2007, 2631, 2546, 1974, 1729, 1621, 1514, 1437, 1393, 1369, 1377, 1379, 1436, 1472, 1587, 1672, 1882, 2322, 3217, 3134, 2320, 1837, 1671, 1563, 1523, 1511, 1455, 1455, 1463, 1517, 1568, 1666, 1871, 2217, 2861, 4037, 4098, 2896, 2300, 1878, 1757, 1660, 1654, 1629, 1621, 1645, 1700, 1748, 1906, 2208, 2709, 3747, 5488]
                                       }
                                   }, {
                                       "name":    "1600x1200_GRAY_100",
                                       "resolution":    "1600x1200",
                                       "illumination":    "GRAY",
                                       "vignetting":    100,
                                       "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, 0.95, 0.85, 0.7, 0.6, 0.5, 0.4, 0.3]
                               }
                           },
                           "manualPara":    {
                               "ccMatrix":    [1, 0, 0, 0, 1, 0, 0, 0, 1],
                               "ccOffsets":    [0, 0, 0]
                           },
                           "TuningPara":    {
                               "damp_enable":    1,
                               "illu_estim":    {
                                   "interp_enable":    0,
                                   "default_illu":    "A",
                                   "weightRB":    [1, 1],
                                   "prob_limit":    0.2,
                                   "frame_no":    8
                               },
                               "aCcmCof":    [{
                                       "name":    "A",
                                       "awbGain":    [1.0795, 2.13],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.4354, 1.9141],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.7087, 1.5352],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.6695, 1.3157],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [1.7956, 1.2109],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.9017, 2.3243],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.3243, 1.9265],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 12],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.9915, -0.6018, -0.3897, -0.6472, 1.9903, -0.343, -0.6053, -1.4884, 3.0937],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.5119, -0.2336, -0.2782, -0.4406, 1.6858, -0.2452, -0.4107, -0.8877, 2.2984],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.4745, -1.2941, -0.1805, -0.6579, 1.8538, -0.1959, -0.3086, -0.847, 2.1556],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.9141, -0.8013, -0.1128, -0.4037, 1.529, -0.1253, -0.1466, -0.4685, 1.6151],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [2.5195, -1.2886, -0.231, -0.5305, 1.8074, -0.2769, -0.2228, -0.6617, 1.8846],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.9729, -0.7983, -0.1746, -0.284, 1.4935, -0.2095, -0.0577, -0.3325, 1.3902],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [2.1307, -0.9363, -0.1943, -0.4137, 1.7661, -0.3524, -0.1616, -0.5966, 1.7582],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6745, -0.5146, -0.1599, -0.2082, 1.486, -0.2778, -0.0227, -0.2615, 1.2843],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [2.2409, -1.0287, -0.2122, -0.4184, 1.7755, -0.3571, -0.1873, -0.4856, 1.6729],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.7631, -0.5853, -0.1778, -0.2046, 1.4905, -0.2859, -0.0348, -0.1817, 1.2165],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5235, -0.0067, -0.5168, -0.3895, 1.4909, -0.1013, -1.7344, -1.8759, 4.6102],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1345, 0.1653, -0.2999, -0.2803, 1.2749, 0.0054, -1.2765, -1.2162, 3.4927],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0612, -0.8154, -0.2457, -0.5999, 1.8888, -0.2888, -0.339, -0.8803, 2.2194],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.584, -0.4055, -0.1784, -0.3851, 1.5965, -0.2114, -0.1932, -0.4517, 1.6449],
                                       "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":    64,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "FlatValue":    0
                               },
                               "laser_af":    {
                                   "enable":    0,
                                   "vcmDot":    [0, 16, 32, 40, 48, 56, 64],
                                   "distanceDot":    [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
                               },
                               "pdaf":    {
                                   "enable":    0
                               },
                               "vcmcfg":    {
                                   "start_current":    -1,
                                   "rated_current":    -1,
                                   "step_mode":    -1,
                                   "extra_delay":    0
                               },
                               "measiso_cfg":    [{
                                       "iso":    50,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    100,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    1600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    3200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    6400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    12800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    25600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    51200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    102400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    204800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }],
                               "zoomfocus_tbl":    {
                                   "tbl_len":    0,
                                   "focal_length":    [],
                                   "focal_length_len":    0,
                                   "zoom_pos":    [],
                                   "zoom_pos_len":    0,
                                   "focus_infpos":    [],
                                   "focus_infpos_len":    0,
                                   "focus_macropos":    [],
                                   "focus_macropos_len":    0
                               }
                           }
                       },
                       "thumbnails":    {
                           "param":    {
                               "thumbnail_configs":    [{
                                       "owner_cookies":    0,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0002",
                                       "width_intfactor":    2,
                                       "height_intfactor":    2,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    1,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0004",
                                       "width_intfactor":    4,
                                       "height_intfactor":    4,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    2,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\b",
                                       "width_intfactor":    8,
                                       "height_intfactor":    8,
                                       "buffer_count":    0
                                   }],
                               "thumbnail_configs_len":    3
                           }
                       },
                       "bayernr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [276, 252, 230, 210, 180, 159, 148, 145, 144, 145, 144, 140, 132, 122, 108, 96]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [546, 479, 417, 360, 264, 195, 162, 163, 180, 197, 207, 206, 193, 168, 134, 102]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [818, 710, 609, 516, 356, 239, 188, 204, 246, 283, 303, 302, 280, 236, 175, 115]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1134, 984, 843, 714, 490, 330, 264, 291, 351, 402, 430, 429, 397, 336, 249, 164]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1197, 1054, 922, 802, 603, 471, 415, 420, 453, 485, 501, 493, 460, 401, 322, 247]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [276, 252, 230, 210, 180, 159, 148, 145, 144, 145, 144, 140, 132, 122, 108, 96]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [546, 479, 417, 360, 264, 195, 162, 163, 180, 197, 207, 206, 193, 168, 134, 102]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [818, 710, 609, 516, 356, 239, 188, 204, 246, 283, 303, 302, 280, 236, 175, 115]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1134, 984, 843, 714, 490, 330, 264, 291, 351, 402, 430, 429, 397, 336, 249, 164]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1197, 1054, 922, 802, 603, 471, 415, 420, 453, 485, 501, 493, 460, 401, 322, 247]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr2D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.15
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.25
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.35
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.45
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.75
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.05
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.15
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.2
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.3
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.03,
                                               "weight":    0.4
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.55
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.6
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "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.7,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.5
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.9,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.8
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.8,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.75
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.7
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.5
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.25,
                                               "hi_clipwgt":    0.25,
                                               "softwgt":    0.4
                                           }],
                                       "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.1,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    35,
                                               "color_sat_adj_alpha":    0.75,
                                               "hf_spikes_reducion_strength":    0.2,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    3.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    3.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    20,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    2.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    2.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    28,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    32,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    36,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    35,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    12,
                                               "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.3,
                                               "hf_denoise_strength":    14,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.35,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "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":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    18,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    10,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.45,
                                               "hf_denoise_strength":    20,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    14,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.55,
                                               "hf_denoise_strength":    28,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.6,
                                               "hf_denoise_strength":    32,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    18,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.6,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.6,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    25,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.6,
                                               "hf_denoise_strength":    44,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.6,
                                               "hf_denoise_strength":    48,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    35,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "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":    25,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.6,
                                               "hf_denoise_strength":    52,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "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":    [-5.0067e-13, 5.44935e-09, -2.36733e-05, 0.0396832, 16.6933],
                                               "ynr_ci_l":    0.231174,
                                               "ynr_ci_h":    0.244561
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.71779e-12, 1.68551e-08, -6.16277e-05, 0.0906081, 1.1538],
                                               "ynr_ci_l":    0.243867,
                                               "ynr_ci_h":    0.248972
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.39738e-12, 1.4327e-08, -5.62007e-05, 0.0827579, 39.2275],
                                               "ynr_ci_l":    0.210067,
                                               "ynr_ci_h":    0.217358
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.97452e-12, 3.83046e-08, -0.000136079, 0.188351, 23.8388],
                                               "ynr_ci_l":    0.209144,
                                               "ynr_ci_h":    0.209083
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.09947e-12, 3.82555e-08, -0.000129742, 0.158827, 83.2167],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-5.0067e-13, 5.44935e-09, -2.36733e-05, 0.0396832, 16.6933],
                                               "ynr_ci_l":    0.231174,
                                               "ynr_ci_h":    0.244561
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.71779e-12, 1.68551e-08, -6.16277e-05, 0.0906081, 1.1538],
                                               "ynr_ci_l":    0.243867,
                                               "ynr_ci_h":    0.248972
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.39738e-12, 1.4327e-08, -5.62007e-05, 0.0827579, 39.2275],
                                               "ynr_ci_l":    0.210067,
                                               "ynr_ci_h":    0.217358
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.97452e-12, 3.83046e-08, -0.000136079, 0.188351, 23.8388],
                                               "ynr_ci_l":    0.209144,
                                               "ynr_ci_h":    0.209083
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.09947e-12, 3.82555e-08, -0.000129742, 0.158827, 83.2167],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.2,
                                               "low_peak_supress":    0.6,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.2,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.6,
                                               "high_weight":    0.8,
                                               "hi_min_adj":    0.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":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.8,
                                               "high_weight":    0.75,
                                               "hi_min_adj":    0.85,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    1,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    7,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    6,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.25,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    90,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    5,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.35,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.05,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.45,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.35,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.25,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.25,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.5]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.15,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.1,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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":    12,
                                               "low_bf_1":    12,
                                               "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,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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":    15,
                                               "low_bf_1":    15,
                                               "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,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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":    18,
                                               "low_bf_1":    18,
                                               "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,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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":    20,
                                               "low_bf_1":    20,
                                               "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,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "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.4,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.4,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 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.6,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.45,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.45,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.5,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "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":    1,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    9,
                                               "gaus_ratio":    0.55,
                                               "sharp_ratio":    6,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.55,
                                               "bf_add":    9,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.65,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.6,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    1.3,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    15,
                                               "gaus_ratio":    0.65,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.3,
                                               "bf_ratio":    0.65,
                                               "bf_add":    15,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    1,
                                               "pbf_add":    18,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    0.7,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    21,
                                               "gaus_ratio":    0.75,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.75,
                                               "bf_add":    21,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    1,
                                               "pbf_add":    24,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    0.8,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    1,
                                               "pbf_add":    27,
                                               "gaus_ratio":    0.85,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    0.85,
                                               "bf_add":    27,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    1,
                                               "pbf_add":    30,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    0.9,
                                               "bf_add":    30,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.9,
                                               "pbf_ratio":    1,
                                               "pbf_add":    33,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.9,
                                               "bf_ratio":    1,
                                               "bf_add":    33,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    36,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    36,
                                               "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.4,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.4,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 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.6,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.45,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.55,
                                               "sharp_ratio":    9,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.5,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "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.9,
                                               "pbf_ratio":    0.55,
                                               "pbf_add":    8,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.9,
                                               "bf_ratio":    0.55,
                                               "bf_add":    8,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.55,
                                               "pbf_add":    10,
                                               "gaus_ratio":    0.65,
                                               "sharp_ratio":    7,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.6,
                                               "bf_add":    10,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    1.1,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    6,
                                               "bf_gain":    1.1,
                                               "bf_ratio":    0.65,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    14,
                                               "gaus_ratio":    0.75,
                                               "sharp_ratio":    5,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.7,
                                               "bf_add":    14,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.3,
                                               "pbf_ratio":    0.65,
                                               "pbf_add":    16,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.3,
                                               "bf_ratio":    0.75,
                                               "bf_add":    16,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    18,
                                               "gaus_ratio":    0.85,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    0.8,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.75,
                                               "pbf_add":    20,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.85,
                                               "bf_add":    20,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    22,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    0.9,
                                               "bf_add":    22,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    24,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    1,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    28,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    1,
                                               "bf_add":    26,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    [],
           "enable_algos_len":    0
       }
   }
}