hc
2023-02-15 557890c7ca0980ccc625a4e8f0cfa8898649a5c6
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":    3264,
           "height":    2448
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 16, 16, 16, 1, 0, 240],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    16
           },
           "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, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.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":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.03, 0.03, 0.06, 0.06, 0.1],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 4, 4, 16, 16],
                                   "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.048, 0.144, 0.32, 0.64, 1.28],
                                   "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.1, 0.2, 0.4, 0.64, 0.96, 1.28],
                                       "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, 16],
                                   "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, 16],
                                   "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, 16],
                                   "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.0048, 0.0144, 0.024, 0.048, 0.096],
                                       "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.024, 0.048, 0.096, 0.24, 0.336, 0.48],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.0024, 0.0072, 0.012, 0.0192, 0.0288],
                                       "SExpLevel_len":    6,
                                       "SSetPoint":    [18, 18, 15, 12, 12, 12],
                                       "SSetPoint_len":    6,
                                       "TargetHLLuma":    [100, 100, 100, 90, 80, 70],
                                       "TargetHLLuma_len":    6
                                   }
                               }
                           },
                           "IrisCtrl":    {
                               "Enable":    0,
                               "IrisType":    "IRISV2_DC_TYPE",
                               "ManualEn":    0,
                               "ManualAttr":    {
                                   "PIrisGainValue":    1,
                                   "DCIrisHoldValue":    30
                               },
                               "InitAttr":    {
                                   "PIrisGainValue":    512,
                                   "DCIrisHoldValue":    100
                               },
                               "PIrisAttr":    {
                                   "TotalStep":    81,
                                   "EffcStep":    44,
                                   "ZeroIsMax":    1,
                                   "StepTable":    [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               },
                               "DCIrisAttr":    {
                                   "Kp":    0.5,
                                   "Ki":    0.2,
                                   "Kd":    0.3,
                                   "MinPwmDuty":    0,
                                   "MaxPwmDuty":    100,
                                   "OpenPwmDuty":    40,
                                   "ClosePwmDuty":    22
                               }
                           },
                           "SyncTest":    {
                               "Enable":    0,
                               "IntervalFrm":    60,
                               "AlterExp":    {
                                   "LinearAE":    [{
                                           "TimeValue":    0.02,
                                           "GainValue":    1,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    1,
                                           "DcgMode":    0
                                       }, {
                                           "TimeValue":    0.02,
                                           "GainValue":    6,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    29,
                                           "DcgMode":    0
                                       }],
                                   "LinearAE_len":    2,
                                   "HdrAE":    [{
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [1, 1, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    1,
                                           "DcgMode":    [0, 0, 0]
                                       }, {
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [6, 6, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    29,
                                           "DcgMode":    [0, 0, 0]
                                       }],
                                   "HdrAE_len":    2
                               }
                           }
                       },
                       "wb_v21":    {
                           "control":    {
                               "byPass":    0,
                               "mode":    "CALIB_WB_MODE_AUTO"
                           },
                           "manualPara":    {
                               "mode":    "CALIB_MWB_MODE_SCENE",
                               "cfg":    {
                                   "mwbGain":    [1.38985, 1, 1, 2.34479],
                                   "scene":    "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
                                   "cct":    {
                                       "CCT":    5000,
                                       "CCRI":    0
                                   }
                               }
                           },
                           "autoPara":    {
                               "hdrPara":    {
                                   "frameChooseMode":    "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
                                   "frameChoose":    1
                               },
                               "lscBypassEnable":    0,
                               "uvDetectionEnable":    1,
                               "xyDetectionEnable":    1,
                               "yuvDetectionEnable":    1,
                               "lsUsedForYuvDet":    ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
                               "lsUsedForYuvDet_len":    7,
                               "blkStatisticsEnable":    1,
                               "downScaleMode":    "CALIB_AWB_DS_8X8",
                               "blkMeasureMode":    "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
                               "mainWindow":    {
                                   "mode":    "CALIB_AWB_WINDOW_CFG_AUTO",
                                   "window":    [0, 0, 1, 1]
                               },
                               "limitRange":    {
                                   "lumaValue":    [0],
                                   "lumaValue_len":    1,
                                   "maxR":    [230],
                                   "maxR_len":    1,
                                   "minR":    [6],
                                   "minR_len":    1,
                                   "maxG":    [230],
                                   "maxG_len":    1,
                                   "minG":    [9],
                                   "minG_len":    1,
                                   "maxB":    [230],
                                   "maxB_len":    1,
                                   "minB":    [6],
                                   "minB_len":    1,
                                   "maxY":    [210],
                                   "maxY_len":    1,
                                   "minY":    [9],
                                   "minY_len":    1
                               },
                               "rgb2TcsPara":    {
                                   "pseudoLuminanceWeight":    [0.340132, 0.408514, 0.251353],
                                   "rotationMat":    [-0.637467, 0.770478, -0.462913, 0.770478, 0.637467, 0.595674, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0351562, 0.134766, 0.0117188, 35.5, -0.0820312, -0.00195312, 0.0742188, 133.75, 0.0507812, -0.0546875, 0.046875, 109.062, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-725, -543, 92, -16]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-1862, -1753, 65, -15]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-1536, -1182, 89, 49]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [225, 228, 256, 239]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [242, 246, 233, 227]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [205, 208, 282, 250]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }],
                               "wpDiffLumaWeight":    {
                                   "enable":    1,
                                   "wpDiffWeiEnableTh":    {
                                       "wpDiffWeiNoTh":    0.004,
                                       "wpDiffWeiLvValueTh":    64
                                   },
                                   "wpDiffwei_y":    [0, 16, 32, 64, 96, 128, 192, 224, 240],
                                   "perfectBin":    [0, 0, 0, 1, 1, 1, 1, 0],
                                   "wpDiffWeightLvSet":    [{
                                           "LvValue":    256,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }],
                                           "ratioSet_len":    3
                                       }, {
                                           "LvValue":    8192,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [0, 0, 0.2, 0.7, 1, 1, 1, 0.7, 0]
                                               }],
                                           "ratioSet_len":    3
                                       }],
                                   "wpDiffWeightLvSet_len":    2
                               },
                               "wpDiffBlkWeiEnable":    1,
                               "wpDiffBlkWeight":    [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
                               "lightSources":    [{
                                       "name":    "A",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.38985, 1, 1, 2.34479],
                                       "uvRegion":    {
                                           "u":    [124, 54.5, 56.5, 124.5],
                                           "v":    [128, 114.5, 92, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.22377, -0.839938, 0.0583668, -0.0386613],
                                           "big":    [-1.22414, -0.840926, 0.100134, -0.0609371]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 139.188, 108.812, 187.688, 104.75, 110.812],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.78448, 1, 1, 2.0351],
                                       "defaultDayGainHigh":    [1.85607, 1, 1, 1.92849],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.78448, 1, 1, 2.0351],
                                       "uvRegion":    {
                                           "u":    [62, 74.5, 125.5, 124.5],
                                           "v":    [76, 60.5, 124, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.842037, -0.550556, -0.00835341, -0.0840696],
                                           "big":    [-0.841914, -0.548777, -0.00810485, -0.0986345]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 135.875, 109.812, 190.375, 121.562, 105.375],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.78448, 1, 1, 2.0351],
                                       "defaultDayGainHigh":    [1.85607, 1, 1, 1.92849],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.95607, 1, 1, 1.72849],
                                       "uvRegion":    {
                                           "u":    [71.5, 110.5, 126, 125],
                                           "v":    [62.5, 49.5, 123.5, 124.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.548777, -0.100729, 0.105961, -0.156769],
                                           "big":    [-0.549618, -0.100235, 0.125106, -0.228737]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 133.188, 109.562, 191, 133.75, 107],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.78448, 1, 1, 2.0351],
                                       "defaultDayGainHigh":    [1.85607, 1, 1, 1.92849],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.28062, 1, 1, 1.37065],
                                       "uvRegion":    {
                                           "u":    [102, 121.5, 127.5, 126],
                                           "v":    [51, 47.5, 121, 123.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.0992478, 0.072604, 0.0784121, -0.129781],
                                           "big":    [-0.100729, 0.072604, 0.134102, -0.146488]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 131.812, 109.375, 190.375, 147.312, 109.812],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.78448, 1, 1, 2.0351],
                                       "defaultDayGainHigh":    [1.85607, 1, 1, 1.92849],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.39828, 1, 1, 1.26389],
                                       "uvRegion":    {
                                           "u":    [130, 127, 112.5, 133],
                                           "v":    [118.5, 121.5, 49.5, 42.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0735917, 0.360999, 0.0621336, -0.0766615],
                                           "big":    [0.0735917, 0.360999, 0.0844094, -0.104935]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 131.312, 109.188, 189.75, 152.875, 110.875],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.78448, 1, 1, 2.0351],
                                       "defaultDayGainHigh":    [1.85607, 1, 1, 1.92849],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.13923, 1, 1, 2.71278],
                                       "uvRegion":    {
                                           "u":    [123.5, 59.5, 54, 124],
                                           "v":    [132.5, 138.5, 112, 128]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.82426, -1.22426, 0.0746452, -0.104739],
                                           "big":    [-1.825, -1.22426, 0.116305, -0.144578]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 141.5, 108.5, 183.75, 91.1875, 114.938],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.78448, 1, 1, 2.0351],
                                       "defaultDayGainHigh":    [1.85607, 1, 1, 1.92849],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.60663, 1, 1, 2.04462],
                                       "uvRegion":    {
                                           "u":    [124.5, 56, 68, 125.5],
                                           "v":    [125.5, 93.5, 64.5, 124]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.840926, -0.548704, 0.112985, -0.00835341],
                                           "big":    [-0.842037, -0.548704, 0.221687, -0.00835341]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 137.188, 108.875, 189.812, 116.25, 109.062],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.78448, 1, 1, 2.0351],
                                       "defaultDayGainHigh":    [1.85607, 1, 1, 1.92849],
                                       "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":    1,
                                   "lutAll":    [{
                                           "lumaValue":    128,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    8192,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    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, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 5700, 6500, 7500, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }],
                                   "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":    [80],
                                       "low_len":    1,
                                       "high":    [160],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [1.38985, 1, 1, 2.34479],
                               "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.002,
                                   "wpNumPercTh2":    0.2
                               },
                               "converged":    {
                                   "varThforUnDamp":    0.005,
                                   "varThforDamp":    0.005
                               },
                               "xyRegionStableSelection":    {
                                   "enable":    1,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "forBigType":    [160],
                                       "forBigType_len":    1,
                                       "forExtraType":    [160],
                                       "forExtraType_len":    1
                                   },
                                   "xyTypeListSize":    50,
                                   "varianceLumaTh":    0.06
                               },
                               "weightForNightGainCalc":    [25, 25, 25, 25],
                               "weightForNightGainCalc_len":    4,
                               "singleColorProces":    {
                                   "enable":    1,
                                   "colorBlock":    [{
                                           "index":    15,
                                           "meanC":    24.068,
                                           "meanH":    32.6375
                                       }, {
                                           "index":    13,
                                           "meanC":    24.0512,
                                           "meanH":    -74.6448
                                       }, {
                                           "index":    5,
                                           "meanC":    11.9507,
                                           "meanH":    -69.6803
                                       }, {
                                           "index":    10,
                                           "meanC":    12.3247,
                                           "meanH":    -43.7224
                                       }, {
                                           "index":    14,
                                           "meanC":    16.5939,
                                           "meanH":    149.076
                                       }, {
                                           "index":    16,
                                           "meanC":    27.4455,
                                           "meanH":    92.1644
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.38985,
                                           "BGain":    2.34479
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.95607,
                                           "BGain":    1.72849
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.60663,
                                           "BGain":    2.04462
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8395, -0.5434, -2.741],
                               "lineRgProjCCT":    [1, -0.0003, 0.4559],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [1.7874, 1, 1, 2.0369],
                                   "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.125, 256.062, 256.062, 256.5, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [256, 256, 256.062, 256.125, 255, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [256, 256.125, 256.25, 256.375, 256.75, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [256, 256, 255.938, 255.875, 255, 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":    [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   },
                                   "set1":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 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":    [4, 4, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_pg_fac":    [3, 3, 6, 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":    [3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [3, 3, 3, 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":    [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_ro_lim":    [2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_sw_mindis":    [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_line_thr":    [12, 10, 6, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_mad_fac":    [10, 8, 6, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_mad_fac":    [10, 8, 6, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [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, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_ro_lim":    [2, 2, 2, 3, 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":    [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [32, 24, 16, 8, 4, 2, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_thr":    [32, 24, 16, 8, 4, 2, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_mad_fac":    [4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_line_mad_fac":    [4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_pg_fac":    [4, 4, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_pg_fac":    [3, 3, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [8, 8, 6, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_thr":    [6, 6, 5, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "rb_rnd_offs":    [3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [3, 3, 3, 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":    [4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rg_fac":    [4, 4, 3, 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, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_ro_lim":    [2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       }
                                   }
                               },
                               "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":    "3264x2448",
                                       "lsc_sect_size_x":    [204, 204, 204, 204, 204, 204, 204, 204],
                                       "lsc_sect_size_y":    [153, 153, 153, 153, 153, 153, 153, 153]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [1.3569, 2.3948],
                                       "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.7556, 2.06],
                                       "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":    [2.2068, 1.5736],
                                       "tableUsed":    [{
                                               "name":    "D50_70"
                                           }, {
                                               "name":    "D50_100"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [2.2359, 1.3874],
                                       "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":    [2.3261, 1.2784],
                                       "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":    [1.1145, 2.775],
                                       "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.5695, 1.9908],
                                       "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_0"
                                           }],
                                       "tableUsed_len":    1,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [0, 0, 0, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "3264x2448_A_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4467, 4515, 4275, 3749, 3315, 2966, 2669, 2523, 2473, 2444, 2510, 2670, 3012, 3303, 3680, 3999, 4256, 4409, 4218, 3777, 3292, 2958, 2584, 2301, 2118, 2047, 2070, 2124, 2356, 2562, 2906, 3251, 3678, 4136, 4436, 3946, 3584, 2970, 2572, 2197, 1931, 1852, 1740, 1780, 1813, 1987, 2247, 2598, 2971, 3502, 3926, 4341, 3800, 3232, 2658, 2292, 1941, 1725, 1575, 1524, 1516, 1568, 1734, 1934, 2299, 2736, 3214, 3736, 4240, 3537, 3013, 2469, 2052, 1742, 1530, 1403, 1352, 1323, 1380, 1528, 1730, 2090, 2417, 2977, 3561, 3976, 3327, 2837, 2319, 1875, 1581, 1378, 1249, 1187, 1189, 1261, 1393, 1589, 1905, 2284, 2848, 3314, 3793, 3243, 2663, 2127, 1741, 1471, 1274, 1162, 1108, 1109, 1156, 1283, 1480, 1760, 2170, 2681, 3228, 3701, 3129, 2575, 2025, 1668, 1378, 1217, 1098, 1059, 1057, 1096, 1212, 1408, 1692, 2107, 2533, 3140, 3710, 3068, 2526, 1983, 1632, 1370, 1178, 1066, 1024, 1031, 1079, 1180, 1362, 1637, 2040, 2516, 3099, 3739, 3125, 2457, 2027, 1631, 1370, 1185, 1077, 1031, 1024, 1085, 1182, 1389, 1649, 2038, 2508, 3125, 3658, 3152, 2550, 2068, 1683, 1403, 1225, 1109, 1063, 1056, 1101, 1242, 1427, 1688, 2122, 2505, 3123, 3831, 3156, 2645, 2187, 1773, 1495, 1289, 1175, 1110, 1130, 1181, 1305, 1489, 1778, 2187, 2630, 3219, 3915, 3395, 2817, 2299, 1869, 1594, 1412, 1284, 1227, 1226, 1290, 1397, 1636, 1952, 2316, 2856, 3396, 3924, 3500, 3004, 2456, 2110, 1784, 1557, 1427, 1383, 1366, 1444, 1567, 1777, 2091, 2539, 2984, 3521, 4225, 3717, 3119, 2765, 2297, 2018, 1774, 1643, 1562, 1569, 1661, 1769, 2036, 2357, 2746, 3156, 3668, 4176, 3779, 3503, 3038, 2596, 2296, 2061, 1901, 1835, 1868, 1897, 2081, 2331, 2661, 3055, 3470, 3832, 4430, 4060, 3668, 3239, 3008, 2652, 2312, 2223, 2140, 2151, 2228, 2374, 2579, 2941, 3266, 3677, 4075]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3488, 3276, 2982, 2687, 2409, 2230, 2101, 1964, 1953, 1947, 1951, 2060, 2214, 2408, 2648, 2865, 3233, 3341, 3046, 2697, 2407, 2186, 1996, 1845, 1739, 1713, 1680, 1722, 1826, 1984, 2165, 2381, 2702, 3007, 3195, 2896, 2536, 2227, 2003, 1794, 1644, 1555, 1531, 1539, 1552, 1662, 1782, 2003, 2221, 2486, 2826, 2981, 2679, 2369, 2068, 1843, 1634, 1515, 1408, 1364, 1363, 1395, 1505, 1611, 1818, 2066, 2346, 2665, 2904, 2563, 2208, 1929, 1679, 1505, 1379, 1278, 1238, 1233, 1274, 1366, 1507, 1679, 1924, 2176, 2530, 2794, 2457, 2128, 1819, 1592, 1414, 1274, 1192, 1146, 1149, 1211, 1265, 1383, 1576, 1815, 2093, 2446, 2717, 2373, 2045, 1746, 1506, 1323, 1214, 1136, 1082, 1080, 1132, 1182, 1335, 1500, 1715, 2021, 2308, 2656, 2287, 2017, 1698, 1468, 1295, 1163, 1083, 1049, 1056, 1085, 1161, 1285, 1470, 1669, 1976, 2242, 2608, 2280, 1954, 1671, 1437, 1259, 1146, 1055, 1024, 1042, 1054, 1134, 1257, 1429, 1649, 1924, 2256, 2632, 2256, 1973, 1670, 1427, 1268, 1145, 1087, 1043, 1047, 1063, 1140, 1256, 1441, 1662, 1943, 2289, 2605, 2303, 1991, 1698, 1476, 1283, 1163, 1089, 1056, 1057, 1083, 1168, 1293, 1459, 1673, 1979, 2310, 2649, 2363, 2008, 1757, 1515, 1340, 1217, 1140, 1079, 1090, 1148, 1199, 1344, 1528, 1735, 2037, 2337, 2768, 2429, 2098, 1803, 1587, 1428, 1292, 1215, 1169, 1175, 1199, 1261, 1422, 1583, 1832, 2088, 2463, 2888, 2498, 2215, 1936, 1696, 1514, 1383, 1301, 1262, 1247, 1283, 1383, 1515, 1679, 1915, 2197, 2537, 3038, 2642, 2323, 2054, 1826, 1640, 1500, 1428, 1372, 1365, 1416, 1513, 1627, 1817, 2047, 2279, 2633, 3057, 2711, 2477, 2179, 1974, 1792, 1659, 1567, 1528, 1535, 1563, 1638, 1787, 1982, 2181, 2458, 2769, 3207, 2951, 2668, 2396, 2177, 1973, 1866, 1785, 1691, 1676, 1750, 1860, 2004, 2146, 2373, 2658, 2938]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3385, 3241, 2970, 2675, 2414, 2197, 2073, 1941, 1895, 1898, 1938, 2026, 2162, 2361, 2614, 2817, 3223, 3306, 3009, 2638, 2434, 2191, 1962, 1859, 1719, 1683, 1678, 1727, 1842, 1961, 2164, 2390, 2654, 3069, 3164, 2825, 2545, 2231, 1968, 1775, 1622, 1553, 1506, 1504, 1541, 1639, 1764, 1969, 2211, 2489, 2871, 3029, 2663, 2346, 2063, 1815, 1636, 1484, 1413, 1364, 1345, 1392, 1481, 1629, 1808, 2023, 2325, 2723, 2935, 2591, 2221, 1914, 1666, 1501, 1363, 1264, 1234, 1228, 1269, 1350, 1502, 1682, 1906, 2187, 2561, 2772, 2441, 2105, 1804, 1598, 1412, 1265, 1198, 1147, 1142, 1171, 1259, 1379, 1560, 1772, 2064, 2462, 2750, 2354, 2017, 1750, 1498, 1327, 1184, 1109, 1071, 1090, 1115, 1196, 1326, 1499, 1736, 2023, 2344, 2709, 2322, 1958, 1691, 1449, 1275, 1150, 1084, 1040, 1051, 1084, 1147, 1279, 1474, 1695, 1963, 2283, 2700, 2267, 1959, 1645, 1433, 1257, 1135, 1064, 1024, 1028, 1056, 1133, 1246, 1432, 1635, 1923, 2263, 2660, 2299, 1957, 1667, 1458, 1267, 1141, 1068, 1031, 1033, 1065, 1144, 1249, 1427, 1671, 1935, 2346, 2619, 2294, 1996, 1689, 1462, 1291, 1142, 1084, 1051, 1052, 1088, 1176, 1291, 1475, 1699, 1952, 2312, 2742, 2346, 2050, 1756, 1538, 1343, 1220, 1139, 1099, 1103, 1136, 1212, 1335, 1515, 1750, 2012, 2346, 2851, 2418, 2137, 1822, 1612, 1444, 1300, 1214, 1163, 1162, 1199, 1292, 1406, 1597, 1812, 2118, 2453, 2935, 2555, 2229, 1933, 1722, 1512, 1389, 1307, 1262, 1246, 1304, 1380, 1510, 1691, 1937, 2231, 2520, 2958, 2620, 2348, 2044, 1811, 1657, 1514, 1426, 1391, 1382, 1423, 1522, 1652, 1825, 2051, 2329, 2603, 3148, 2810, 2515, 2219, 1994, 1797, 1651, 1563, 1530, 1524, 1573, 1656, 1798, 1991, 2206, 2455, 2810, 3203, 2986, 2619, 2389, 2162, 1996, 1856, 1773, 1716, 1717, 1745, 1817, 1996, 2172, 2374, 2628, 2998]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3301, 3203, 2845, 2595, 2361, 2163, 2006, 1940, 1902, 1895, 1938, 2018, 2171, 2302, 2601, 2856, 3200, 3286, 2905, 2570, 2316, 2093, 1902, 1811, 1754, 1679, 1669, 1706, 1840, 1954, 2157, 2369, 2664, 3035, 3142, 2659, 2395, 2195, 1941, 1750, 1621, 1513, 1489, 1502, 1521, 1647, 1794, 1975, 2205, 2462, 2837, 2972, 2591, 2263, 2000, 1777, 1579, 1477, 1382, 1365, 1367, 1393, 1497, 1616, 1820, 2023, 2331, 2698, 2837, 2424, 2133, 1857, 1633, 1477, 1347, 1257, 1239, 1220, 1283, 1384, 1523, 1698, 1932, 2219, 2602, 2772, 2320, 1988, 1768, 1544, 1363, 1282, 1178, 1145, 1137, 1179, 1290, 1410, 1607, 1784, 2067, 2430, 2576, 2260, 1966, 1723, 1446, 1319, 1190, 1100, 1081, 1091, 1121, 1215, 1336, 1490, 1751, 2015, 2349, 2593, 2222, 1938, 1629, 1419, 1251, 1128, 1089, 1045, 1038, 1106, 1157, 1298, 1463, 1672, 1945, 2283, 2537, 2181, 1893, 1634, 1393, 1235, 1107, 1054, 1024, 1036, 1074, 1142, 1284, 1442, 1681, 1931, 2244, 2610, 2187, 1889, 1630, 1397, 1236, 1128, 1047, 1026, 1033, 1075, 1140, 1285, 1435, 1679, 1909, 2246, 2543, 2213, 1888, 1630, 1427, 1269, 1137, 1086, 1065, 1062, 1085, 1179, 1296, 1447, 1693, 1942, 2276, 2630, 2255, 1971, 1674, 1466, 1311, 1209, 1140, 1077, 1107, 1143, 1225, 1342, 1531, 1730, 2010, 2303, 2742, 2334, 2014, 1770, 1531, 1404, 1262, 1213, 1164, 1178, 1201, 1307, 1414, 1584, 1786, 2085, 2392, 2813, 2447, 2119, 1880, 1689, 1497, 1363, 1314, 1258, 1262, 1296, 1408, 1544, 1725, 1929, 2265, 2540, 2842, 2538, 2255, 1994, 1763, 1613, 1507, 1396, 1393, 1370, 1414, 1502, 1643, 1818, 2020, 2285, 2634, 2997, 2715, 2425, 2119, 1929, 1782, 1659, 1566, 1534, 1523, 1562, 1662, 1782, 1965, 2207, 2446, 2731, 3112, 2892, 2670, 2309, 2145, 1949, 1816, 1722, 1681, 1720, 1704, 1820, 1941, 2125, 2347, 2615, 2957]
                                       }
                                   }, {
                                       "name":    "3264x2448_A_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3434, 3631, 3571, 3244, 2949, 2696, 2464, 2350, 2310, 2280, 2325, 2441, 2695, 2881, 3105, 3245, 3286, 3487, 3485, 3247, 2926, 2697, 2406, 2174, 2019, 1958, 1976, 2015, 2204, 2354, 2603, 2822, 3069, 3289, 3579, 3336, 3144, 2698, 2397, 2089, 1861, 1796, 1694, 1729, 1752, 1898, 2108, 2378, 2637, 2985, 3197, 3566, 3269, 2892, 2459, 2172, 1874, 1685, 1548, 1501, 1492, 1537, 1682, 1848, 2144, 2472, 2795, 3102, 3535, 3093, 2736, 2315, 1971, 1701, 1509, 1391, 1342, 1313, 1365, 1499, 1674, 1976, 2223, 2632, 3005, 3361, 2946, 2606, 2196, 1818, 1556, 1368, 1245, 1184, 1186, 1254, 1376, 1551, 1822, 2123, 2546, 2837, 3238, 2894, 2468, 2032, 1699, 1455, 1269, 1161, 1107, 1108, 1153, 1274, 1453, 1697, 2033, 2420, 2787, 3178, 2808, 2398, 1944, 1634, 1367, 1214, 1098, 1059, 1057, 1095, 1206, 1388, 1638, 1983, 2303, 2726, 3189, 2760, 2357, 1907, 1601, 1360, 1176, 1066, 1024, 1031, 1078, 1175, 1345, 1588, 1926, 2291, 2697, 3208, 2805, 2293, 1946, 1599, 1359, 1183, 1077, 1031, 1024, 1084, 1177, 1370, 1598, 1922, 2282, 2714, 3130, 2817, 2368, 1978, 1645, 1389, 1221, 1108, 1063, 1056, 1099, 1234, 1403, 1631, 1991, 2272, 2703, 3247, 2803, 2438, 2077, 1723, 1474, 1281, 1172, 1109, 1128, 1176, 1292, 1458, 1707, 2039, 2364, 2762, 3281, 2976, 2567, 2163, 1802, 1561, 1396, 1276, 1221, 1219, 1279, 1376, 1588, 1853, 2136, 2532, 2876, 3247, 3027, 2699, 2282, 2007, 1728, 1526, 1408, 1367, 1349, 1420, 1527, 1706, 1961, 2306, 2609, 2938, 3421, 3155, 2759, 2521, 2153, 1926, 1716, 1601, 1527, 1532, 1612, 1700, 1921, 2170, 2450, 2711, 3004, 3318, 3147, 3025, 2713, 2384, 2151, 1958, 1822, 1764, 1792, 1810, 1960, 2155, 2397, 2664, 2909, 3067, 3408, 3291, 3096, 2828, 2691, 2425, 2152, 2084, 2014, 2021, 2078, 2186, 2331, 2586, 2781, 3005, 3160]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2749, 2706, 2558, 2379, 2188, 2062, 1967, 1855, 1848, 1840, 1836, 1916, 2024, 2151, 2296, 2399, 2570, 2710, 2582, 2375, 2184, 2029, 1885, 1764, 1675, 1653, 1621, 1653, 1734, 1854, 1981, 2120, 2317, 2467, 2650, 2505, 2276, 2059, 1892, 1723, 1596, 1519, 1498, 1504, 1511, 1603, 1696, 1866, 2015, 2181, 2373, 2524, 2363, 2162, 1941, 1765, 1589, 1487, 1389, 1349, 1347, 1374, 1470, 1555, 1721, 1906, 2093, 2282, 2492, 2291, 2043, 1833, 1627, 1477, 1364, 1270, 1232, 1226, 1264, 1346, 1469, 1609, 1799, 1972, 2200, 2425, 2220, 1987, 1744, 1554, 1396, 1267, 1189, 1144, 1147, 1206, 1254, 1359, 1524, 1714, 1916, 2150, 2378, 2161, 1923, 1684, 1478, 1312, 1210, 1135, 1082, 1079, 1130, 1176, 1317, 1459, 1633, 1864, 2051, 2337, 2094, 1904, 1643, 1444, 1287, 1161, 1083, 1049, 1056, 1084, 1157, 1271, 1434, 1595, 1831, 2004, 2301, 2091, 1849, 1620, 1416, 1252, 1144, 1055, 1024, 1042, 1054, 1131, 1245, 1397, 1579, 1788, 2017, 2318, 2068, 1865, 1618, 1406, 1260, 1143, 1087, 1043, 1047, 1062, 1136, 1244, 1407, 1589, 1803, 2042, 2288, 2102, 1876, 1640, 1450, 1274, 1160, 1088, 1056, 1057, 1082, 1163, 1277, 1422, 1596, 1829, 2052, 2311, 2141, 1882, 1688, 1482, 1326, 1211, 1138, 1078, 1089, 1144, 1191, 1323, 1480, 1644, 1869, 2064, 2385, 2181, 1949, 1720, 1542, 1405, 1281, 1209, 1165, 1170, 1192, 1247, 1390, 1523, 1720, 1900, 2147, 2453, 2216, 2032, 1825, 1632, 1478, 1362, 1288, 1251, 1236, 1268, 1357, 1469, 1599, 1778, 1973, 2184, 2532, 2304, 2100, 1910, 1735, 1583, 1463, 1401, 1350, 1342, 1386, 1468, 1559, 1706, 1871, 2017, 2229, 2503, 2324, 2197, 1993, 1846, 1704, 1596, 1518, 1484, 1489, 1510, 1568, 1684, 1828, 1958, 2129, 2294, 2552, 2463, 2312, 2142, 1993, 1841, 1761, 1697, 1616, 1601, 1660, 1744, 1848, 1938, 2081, 2244, 2364]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2677, 2679, 2549, 2369, 2192, 2034, 1942, 1835, 1797, 1797, 1824, 1887, 1980, 2113, 2270, 2363, 2563, 2685, 2554, 2327, 2207, 2033, 1855, 1776, 1656, 1626, 1619, 1657, 1749, 1835, 1980, 2127, 2280, 2512, 2627, 2449, 2284, 2062, 1861, 1706, 1576, 1517, 1475, 1472, 1501, 1582, 1680, 1837, 2007, 2183, 2407, 2561, 2350, 2142, 1937, 1740, 1591, 1457, 1394, 1349, 1329, 1371, 1448, 1572, 1713, 1869, 2076, 2326, 2516, 2314, 2054, 1819, 1615, 1474, 1349, 1256, 1228, 1221, 1259, 1331, 1464, 1612, 1783, 1981, 2224, 2408, 2206, 1967, 1730, 1559, 1394, 1258, 1195, 1145, 1140, 1167, 1248, 1355, 1509, 1677, 1892, 2163, 2404, 2145, 1899, 1687, 1470, 1316, 1181, 1108, 1071, 1089, 1113, 1190, 1308, 1458, 1651, 1866, 2080, 2380, 2124, 1851, 1637, 1426, 1267, 1148, 1084, 1040, 1051, 1083, 1143, 1265, 1438, 1618, 1820, 2037, 2375, 2079, 1854, 1596, 1412, 1250, 1134, 1064, 1024, 1028, 1056, 1130, 1235, 1400, 1566, 1787, 2023, 2340, 2105, 1850, 1615, 1435, 1259, 1139, 1068, 1031, 1033, 1064, 1140, 1237, 1394, 1597, 1796, 2088, 2300, 2094, 1880, 1632, 1436, 1281, 1140, 1083, 1051, 1052, 1087, 1170, 1275, 1436, 1618, 1806, 2054, 2384, 2127, 1919, 1687, 1504, 1329, 1214, 1137, 1098, 1101, 1133, 1204, 1314, 1469, 1657, 1848, 2071, 2450, 2172, 1982, 1737, 1565, 1420, 1288, 1208, 1159, 1158, 1192, 1277, 1376, 1536, 1702, 1925, 2140, 2489, 2262, 2044, 1822, 1656, 1476, 1368, 1293, 1251, 1235, 1288, 1354, 1464, 1610, 1796, 2000, 2171, 2472, 2287, 2121, 1901, 1722, 1599, 1476, 1399, 1367, 1358, 1392, 1476, 1581, 1713, 1875, 2057, 2206, 2570, 2400, 2228, 2026, 1863, 1709, 1589, 1514, 1486, 1479, 1519, 1584, 1694, 1835, 1978, 2127, 2324, 2549, 2489, 2274, 2136, 1980, 1861, 1752, 1686, 1638, 1637, 1655, 1707, 1841, 1959, 2082, 2222, 2406]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2618, 2651, 2451, 2304, 2148, 2004, 1884, 1834, 1803, 1794, 1824, 1880, 1988, 2065, 2260, 2392, 2547, 2670, 2474, 2272, 2108, 1949, 1802, 1733, 1688, 1622, 1611, 1638, 1747, 1828, 1974, 2110, 2288, 2487, 2610, 2318, 2159, 2031, 1837, 1683, 1575, 1480, 1459, 1470, 1483, 1590, 1707, 1842, 2002, 2162, 2382, 2517, 2291, 2072, 1881, 1706, 1538, 1451, 1365, 1350, 1350, 1372, 1462, 1560, 1723, 1869, 2081, 2307, 2439, 2176, 1979, 1768, 1585, 1451, 1333, 1249, 1233, 1214, 1272, 1363, 1483, 1626, 1806, 2008, 2256, 2408, 2106, 1865, 1698, 1509, 1348, 1274, 1175, 1143, 1135, 1174, 1278, 1384, 1552, 1687, 1894, 2137, 2265, 2065, 1854, 1663, 1421, 1308, 1187, 1099, 1081, 1090, 1119, 1208, 1318, 1450, 1664, 1859, 2084, 2286, 2039, 1834, 1580, 1398, 1244, 1126, 1089, 1045, 1038, 1105, 1153, 1283, 1427, 1598, 1805, 2037, 2244, 2006, 1795, 1586, 1374, 1229, 1106, 1054, 1024, 1036, 1073, 1139, 1271, 1409, 1607, 1794, 2007, 2300, 2010, 1790, 1581, 1377, 1229, 1126, 1047, 1026, 1033, 1074, 1136, 1271, 1402, 1604, 1774, 2007, 2239, 2026, 1785, 1578, 1403, 1260, 1135, 1085, 1065, 1062, 1084, 1173, 1280, 1411, 1613, 1798, 2025, 2296, 2051, 1850, 1612, 1436, 1298, 1204, 1138, 1076, 1105, 1140, 1216, 1321, 1483, 1640, 1847, 2037, 2365, 2102, 1876, 1691, 1491, 1382, 1252, 1207, 1160, 1173, 1194, 1291, 1383, 1524, 1680, 1897, 2092, 2395, 2175, 1950, 1776, 1626, 1462, 1343, 1300, 1247, 1250, 1280, 1380, 1495, 1640, 1790, 2028, 2186, 2385, 2222, 2044, 1858, 1679, 1559, 1470, 1371, 1369, 1347, 1384, 1458, 1573, 1707, 1849, 2022, 2230, 2460, 2327, 2155, 1943, 1807, 1695, 1596, 1517, 1490, 1478, 1509, 1589, 1680, 1813, 1979, 2120, 2266, 2486, 2419, 2314, 2071, 1966, 1820, 1717, 1641, 1607, 1640, 1619, 1709, 1795, 1921, 2061, 2212, 2377]
                                       }
                                   }, {
                                       "name":    "3264x2448_CWF_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3808, 3677, 3383, 3074, 2737, 2427, 2231, 2085, 2001, 2041, 2107, 2236, 2350, 2653, 2973, 3321, 3459, 3728, 3480, 3112, 2771, 2384, 2166, 1968, 1838, 1774, 1771, 1824, 1971, 2167, 2397, 2725, 3088, 3254, 3665, 3230, 2864, 2482, 2139, 1899, 1695, 1585, 1556, 1561, 1611, 1694, 1863, 2127, 2462, 2795, 3241, 3515, 3082, 2712, 2236, 1999, 1699, 1527, 1413, 1386, 1369, 1411, 1544, 1688, 1930, 2254, 2616, 2998, 3398, 2924, 2490, 2126, 1772, 1545, 1380, 1283, 1246, 1246, 1293, 1378, 1538, 1788, 2046, 2429, 2888, 3259, 2818, 2358, 1960, 1639, 1451, 1276, 1186, 1141, 1144, 1176, 1271, 1434, 1620, 1920, 2294, 2688, 3191, 2764, 2214, 1869, 1548, 1337, 1210, 1149, 1081, 1083, 1125, 1206, 1332, 1548, 1817, 2179, 2668, 3075, 2643, 2167, 1773, 1526, 1296, 1169, 1084, 1038, 1044, 1082, 1156, 1295, 1506, 1794, 2136, 2541, 3081, 2596, 2111, 1787, 1500, 1241, 1137, 1074, 1024, 1042, 1075, 1131, 1283, 1478, 1745, 2128, 2547, 3058, 2592, 2124, 1732, 1491, 1284, 1161, 1063, 1035, 1048, 1067, 1150, 1295, 1484, 1766, 2130, 2521, 3060, 2607, 2162, 1800, 1511, 1307, 1178, 1089, 1069, 1060, 1086, 1169, 1311, 1531, 1823, 2135, 2561, 3133, 2684, 2279, 1885, 1586, 1372, 1238, 1140, 1095, 1099, 1139, 1222, 1371, 1576, 1881, 2226, 2610, 3289, 2868, 2374, 1983, 1687, 1458, 1317, 1224, 1164, 1153, 1234, 1314, 1470, 1700, 1943, 2335, 2779, 3296, 2942, 2457, 2180, 1840, 1605, 1456, 1350, 1286, 1282, 1350, 1436, 1573, 1805, 2121, 2481, 2869, 3490, 3088, 2644, 2358, 2016, 1737, 1597, 1493, 1442, 1423, 1458, 1579, 1776, 1967, 2250, 2636, 3048, 3554, 3233, 2905, 2588, 2260, 1974, 1793, 1691, 1612, 1611, 1695, 1799, 1943, 2194, 2472, 2864, 3206, 3590, 3451, 3108, 2806, 2526, 2282, 2040, 1926, 1855, 1838, 1913, 2031, 2197, 2396, 2761, 2960, 3325]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3191, 3060, 2769, 2487, 2294, 2032, 1982, 1861, 1804, 1791, 1847, 1910, 2061, 2242, 2393, 2703, 2973, 3100, 2858, 2549, 2276, 2040, 1876, 1750, 1626, 1599, 1583, 1628, 1700, 1869, 2020, 2209, 2497, 2835, 3008, 2640, 2366, 2087, 1869, 1702, 1549, 1487, 1454, 1450, 1466, 1549, 1696, 1844, 2072, 2317, 2650, 2805, 2512, 2221, 1962, 1728, 1557, 1420, 1338, 1302, 1293, 1329, 1413, 1544, 1695, 1909, 2156, 2458, 2758, 2386, 2097, 1811, 1621, 1431, 1328, 1239, 1200, 1186, 1230, 1296, 1414, 1568, 1790, 2066, 2385, 2607, 2316, 1993, 1732, 1521, 1359, 1242, 1160, 1110, 1112, 1153, 1217, 1322, 1500, 1695, 1958, 2278, 2606, 2233, 1954, 1685, 1450, 1292, 1183, 1103, 1064, 1074, 1094, 1163, 1275, 1421, 1631, 1896, 2186, 2555, 2218, 1861, 1613, 1413, 1242, 1135, 1069, 1033, 1033, 1061, 1125, 1224, 1377, 1572, 1830, 2155, 2490, 2169, 1861, 1589, 1393, 1231, 1117, 1056, 1026, 1024, 1049, 1103, 1207, 1367, 1566, 1805, 2155, 2565, 2200, 1854, 1614, 1406, 1229, 1130, 1065, 1024, 1025, 1051, 1105, 1213, 1369, 1578, 1822, 2151, 2554, 2222, 1907, 1640, 1429, 1249, 1143, 1078, 1056, 1051, 1074, 1142, 1245, 1386, 1600, 1851, 2148, 2593, 2216, 1935, 1687, 1481, 1308, 1198, 1123, 1068, 1070, 1116, 1173, 1278, 1447, 1656, 1881, 2180, 2611, 2307, 2044, 1739, 1546, 1384, 1265, 1170, 1133, 1154, 1175, 1249, 1354, 1520, 1736, 1992, 2305, 2794, 2442, 2097, 1874, 1643, 1470, 1352, 1284, 1237, 1222, 1267, 1343, 1438, 1598, 1816, 2077, 2394, 2834, 2537, 2224, 1953, 1755, 1586, 1462, 1388, 1336, 1320, 1372, 1439, 1561, 1728, 1915, 2201, 2478, 2914, 2649, 2356, 2116, 1900, 1728, 1594, 1524, 1484, 1471, 1492, 1582, 1698, 1856, 2039, 2315, 2646, 3090, 2798, 2509, 2274, 2054, 1896, 1778, 1709, 1642, 1628, 1654, 1754, 1890, 2011, 2223, 2482, 2782]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3289, 3121, 2791, 2511, 2257, 2095, 1952, 1880, 1808, 1805, 1812, 1930, 2046, 2204, 2414, 2753, 2965, 3158, 2873, 2527, 2338, 2096, 1901, 1762, 1660, 1617, 1593, 1651, 1724, 1845, 2009, 2259, 2479, 2821, 3100, 2672, 2428, 2134, 1884, 1712, 1571, 1475, 1447, 1450, 1477, 1555, 1669, 1856, 2059, 2327, 2686, 2915, 2552, 2218, 1955, 1755, 1549, 1421, 1356, 1318, 1306, 1326, 1420, 1542, 1698, 1916, 2210, 2530, 2775, 2419, 2154, 1855, 1609, 1446, 1328, 1236, 1206, 1195, 1242, 1307, 1439, 1601, 1809, 2045, 2376, 2704, 2347, 2020, 1738, 1545, 1361, 1246, 1165, 1125, 1123, 1158, 1233, 1342, 1504, 1699, 1979, 2286, 2575, 2281, 1978, 1672, 1461, 1311, 1167, 1098, 1076, 1068, 1107, 1155, 1281, 1425, 1655, 1928, 2230, 2571, 2251, 1914, 1633, 1416, 1254, 1149, 1070, 1035, 1046, 1070, 1130, 1244, 1408, 1605, 1860, 2163, 2541, 2231, 1875, 1597, 1411, 1240, 1129, 1054, 1024, 1025, 1047, 1107, 1221, 1354, 1567, 1831, 2144, 2549, 2215, 1897, 1630, 1414, 1241, 1135, 1069, 1036, 1034, 1055, 1116, 1230, 1381, 1584, 1830, 2150, 2578, 2237, 1920, 1652, 1439, 1277, 1168, 1088, 1058, 1046, 1082, 1147, 1252, 1414, 1619, 1891, 2178, 2631, 2286, 1998, 1716, 1490, 1329, 1215, 1132, 1085, 1095, 1133, 1191, 1299, 1461, 1678, 1931, 2217, 2711, 2346, 2076, 1797, 1564, 1408, 1283, 1198, 1167, 1158, 1178, 1264, 1375, 1537, 1733, 2009, 2300, 2794, 2453, 2156, 1871, 1684, 1502, 1389, 1284, 1244, 1248, 1287, 1352, 1467, 1630, 1864, 2139, 2394, 2906, 2577, 2294, 2021, 1795, 1620, 1495, 1410, 1355, 1366, 1395, 1471, 1594, 1745, 1985, 2228, 2498, 3085, 2752, 2411, 2158, 1945, 1755, 1628, 1544, 1499, 1489, 1538, 1596, 1733, 1880, 2089, 2350, 2631, 3153, 2888, 2583, 2330, 2122, 1978, 1812, 1720, 1698, 1661, 1705, 1780, 1874, 2065, 2264, 2574, 2840]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3166, 2994, 2712, 2353, 2197, 2021, 1876, 1833, 1779, 1772, 1798, 1884, 2027, 2152, 2420, 2715, 2974, 2977, 2823, 2449, 2198, 2001, 1841, 1720, 1617, 1602, 1592, 1629, 1680, 1851, 2025, 2224, 2452, 2752, 2955, 2580, 2295, 2014, 1811, 1650, 1533, 1460, 1438, 1432, 1475, 1553, 1662, 1859, 2038, 2338, 2635, 2770, 2412, 2108, 1889, 1655, 1530, 1422, 1329, 1296, 1279, 1356, 1438, 1532, 1718, 1916, 2160, 2436, 2659, 2321, 2065, 1800, 1554, 1411, 1311, 1218, 1192, 1186, 1216, 1319, 1416, 1595, 1829, 2081, 2365, 2613, 2200, 1960, 1685, 1494, 1330, 1224, 1156, 1099, 1122, 1158, 1240, 1339, 1508, 1695, 1975, 2234, 2523, 2166, 1883, 1636, 1413, 1250, 1170, 1095, 1045, 1072, 1089, 1173, 1274, 1441, 1654, 1876, 2185, 2435, 2111, 1818, 1561, 1356, 1229, 1120, 1077, 1029, 1041, 1074, 1129, 1251, 1400, 1569, 1833, 2185, 2408, 2091, 1789, 1571, 1362, 1217, 1107, 1051, 1024, 1027, 1064, 1111, 1216, 1364, 1548, 1839, 2130, 2400, 2104, 1805, 1566, 1371, 1210, 1125, 1050, 1027, 1040, 1059, 1114, 1238, 1369, 1559, 1806, 2191, 2483, 2157, 1859, 1590, 1392, 1254, 1138, 1074, 1041, 1045, 1078, 1144, 1268, 1396, 1599, 1844, 2123, 2580, 2188, 1873, 1637, 1427, 1289, 1185, 1123, 1078, 1083, 1118, 1210, 1325, 1439, 1638, 1912, 2197, 2635, 2259, 1962, 1716, 1495, 1367, 1241, 1196, 1155, 1151, 1171, 1242, 1389, 1523, 1746, 1965, 2255, 2725, 2366, 2045, 1787, 1605, 1440, 1344, 1253, 1226, 1236, 1272, 1352, 1451, 1617, 1791, 2073, 2361, 2786, 2452, 2207, 1926, 1716, 1576, 1454, 1389, 1334, 1338, 1371, 1443, 1574, 1724, 1951, 2170, 2485, 2843, 2532, 2289, 2100, 1843, 1688, 1605, 1487, 1478, 1478, 1501, 1579, 1713, 1862, 2087, 2299, 2606, 3175, 2825, 2490, 2208, 2031, 1871, 1772, 1673, 1639, 1637, 1672, 1741, 1857, 2015, 2224, 2418, 2824]
                                       }
                                   }, {
                                       "name":    "3264x2448_CWF_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2973, 3005, 2872, 2694, 2464, 2232, 2081, 1962, 1891, 1923, 1972, 2067, 2138, 2351, 2551, 2739, 2729, 2992, 2917, 2710, 2489, 2200, 2036, 1874, 1765, 1709, 1704, 1745, 1863, 2013, 2176, 2397, 2615, 2647, 3002, 2770, 2548, 2278, 2013, 1818, 1643, 1547, 1522, 1525, 1566, 1632, 1768, 1973, 2215, 2425, 2684, 2933, 2688, 2452, 2089, 1907, 1650, 1498, 1394, 1370, 1352, 1389, 1506, 1625, 1820, 2065, 2312, 2537, 2877, 2588, 2286, 2009, 1713, 1515, 1365, 1275, 1240, 1239, 1282, 1358, 1497, 1707, 1904, 2181, 2479, 2794, 2521, 2188, 1871, 1598, 1432, 1269, 1183, 1139, 1142, 1172, 1260, 1406, 1564, 1806, 2084, 2342, 2757, 2490, 2072, 1796, 1517, 1326, 1206, 1148, 1081, 1082, 1123, 1199, 1314, 1503, 1722, 1997, 2339, 2674, 2396, 2036, 1712, 1499, 1288, 1167, 1084, 1038, 1044, 1081, 1152, 1281, 1467, 1706, 1966, 2244, 2682, 2359, 1989, 1727, 1476, 1235, 1136, 1074, 1024, 1042, 1074, 1128, 1270, 1442, 1664, 1961, 2252, 2660, 2353, 1998, 1675, 1466, 1276, 1159, 1063, 1035, 1048, 1066, 1146, 1281, 1447, 1681, 1961, 2228, 2652, 2358, 2026, 1733, 1483, 1297, 1175, 1088, 1069, 1060, 1085, 1164, 1294, 1487, 1728, 1960, 2253, 2694, 2409, 2119, 1803, 1548, 1356, 1232, 1138, 1094, 1098, 1136, 1213, 1348, 1524, 1772, 2027, 2280, 2792, 2542, 2186, 1881, 1634, 1433, 1305, 1218, 1160, 1149, 1225, 1297, 1435, 1628, 1815, 2103, 2394, 2765, 2575, 2236, 2039, 1763, 1562, 1431, 1334, 1274, 1270, 1331, 1406, 1521, 1710, 1952, 2202, 2438, 2871, 2657, 2366, 2171, 1904, 1671, 1553, 1461, 1415, 1396, 1425, 1528, 1691, 1835, 2039, 2299, 2540, 2865, 2726, 2543, 2336, 2093, 1865, 1717, 1631, 1561, 1558, 1628, 1710, 1819, 2005, 2193, 2442, 2612, 2820, 2836, 2657, 2476, 2286, 2107, 1914, 1822, 1761, 1744, 1802, 1891, 2010, 2142, 2385, 2470, 2635]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2541, 2544, 2391, 2216, 2091, 1892, 1863, 1764, 1716, 1702, 1745, 1787, 1896, 2016, 2097, 2278, 2388, 2535, 2437, 2255, 2074, 1903, 1779, 1678, 1572, 1549, 1533, 1568, 1623, 1755, 1859, 1981, 2159, 2342, 2510, 2303, 2135, 1938, 1773, 1639, 1509, 1456, 1426, 1421, 1432, 1501, 1620, 1729, 1892, 2047, 2242, 2389, 2227, 2037, 1848, 1661, 1518, 1397, 1323, 1289, 1280, 1311, 1384, 1495, 1613, 1773, 1940, 2123, 2378, 2145, 1948, 1727, 1574, 1408, 1315, 1232, 1195, 1181, 1221, 1280, 1383, 1510, 1683, 1882, 2086, 2277, 2102, 1869, 1665, 1488, 1344, 1236, 1157, 1109, 1110, 1149, 1208, 1302, 1455, 1609, 1803, 2017, 2289, 2043, 1843, 1628, 1425, 1282, 1180, 1102, 1064, 1073, 1093, 1158, 1260, 1387, 1559, 1759, 1953, 2256, 2036, 1765, 1565, 1392, 1235, 1133, 1069, 1033, 1033, 1060, 1122, 1213, 1348, 1509, 1707, 1934, 2206, 1996, 1767, 1544, 1374, 1225, 1116, 1056, 1026, 1024, 1049, 1101, 1198, 1340, 1505, 1687, 1936, 2264, 2021, 1759, 1566, 1386, 1223, 1128, 1065, 1024, 1025, 1051, 1102, 1203, 1341, 1515, 1700, 1931, 2248, 2033, 1802, 1587, 1405, 1241, 1141, 1077, 1056, 1051, 1073, 1138, 1232, 1355, 1531, 1721, 1923, 2266, 2019, 1819, 1624, 1450, 1295, 1193, 1121, 1067, 1069, 1113, 1166, 1261, 1407, 1575, 1739, 1939, 2263, 2080, 1902, 1663, 1505, 1363, 1255, 1165, 1130, 1150, 1169, 1236, 1328, 1467, 1637, 1821, 2024, 2381, 2171, 1932, 1771, 1584, 1437, 1333, 1271, 1227, 1212, 1253, 1320, 1399, 1528, 1694, 1876, 2074, 2379, 2221, 2018, 1823, 1672, 1534, 1428, 1363, 1316, 1300, 1345, 1401, 1500, 1629, 1762, 1955, 2113, 2399, 2276, 2099, 1940, 1782, 1648, 1537, 1479, 1444, 1431, 1446, 1518, 1607, 1722, 1843, 2019, 2204, 2470, 2349, 2187, 2042, 1890, 1775, 1684, 1630, 1572, 1558, 1576, 1652, 1752, 1828, 1963, 2113, 2255]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2610, 2590, 2408, 2235, 2060, 1946, 1837, 1781, 1720, 1715, 1714, 1804, 1883, 1985, 2113, 2315, 2383, 2577, 2449, 2237, 2126, 1951, 1801, 1689, 1603, 1565, 1542, 1589, 1644, 1734, 1850, 2021, 2145, 2332, 2579, 2328, 2187, 1979, 1787, 1649, 1529, 1444, 1420, 1421, 1442, 1506, 1596, 1740, 1881, 2055, 2269, 2473, 2260, 2034, 1842, 1686, 1511, 1398, 1340, 1305, 1292, 1309, 1391, 1493, 1616, 1779, 1983, 2178, 2391, 2172, 1997, 1766, 1563, 1422, 1315, 1229, 1201, 1189, 1233, 1291, 1406, 1540, 1700, 1864, 2079, 2354, 2128, 1893, 1670, 1510, 1346, 1239, 1162, 1123, 1121, 1154, 1224, 1321, 1459, 1613, 1821, 2023, 2264, 2083, 1864, 1616, 1436, 1301, 1164, 1097, 1076, 1068, 1105, 1150, 1266, 1390, 1580, 1786, 1988, 2269, 2064, 1812, 1584, 1395, 1247, 1147, 1070, 1035, 1046, 1069, 1127, 1232, 1377, 1539, 1733, 1940, 2247, 2049, 1779, 1552, 1391, 1234, 1128, 1054, 1024, 1025, 1047, 1105, 1211, 1328, 1506, 1709, 1927, 2251, 2033, 1797, 1581, 1393, 1234, 1133, 1069, 1036, 1034, 1055, 1113, 1219, 1352, 1520, 1707, 1930, 2267, 2046, 1813, 1598, 1415, 1268, 1165, 1087, 1058, 1046, 1081, 1143, 1239, 1380, 1548, 1755, 1947, 2296, 2077, 1874, 1650, 1459, 1315, 1209, 1130, 1084, 1094, 1130, 1183, 1281, 1420, 1595, 1781, 1969, 2341, 2112, 1930, 1715, 1521, 1386, 1272, 1192, 1163, 1154, 1172, 1250, 1347, 1482, 1634, 1835, 2020, 2381, 2180, 1982, 1768, 1622, 1467, 1368, 1271, 1234, 1237, 1272, 1328, 1425, 1556, 1735, 1926, 2074, 2433, 2253, 2076, 1882, 1708, 1565, 1459, 1384, 1334, 1343, 1366, 1430, 1529, 1644, 1820, 1977, 2128, 2524, 2356, 2144, 1975, 1821, 1671, 1568, 1497, 1458, 1447, 1487, 1531, 1637, 1742, 1884, 2046, 2193, 2514, 2416, 2245, 2088, 1947, 1845, 1714, 1640, 1622, 1587, 1620, 1675, 1738, 1872, 1996, 2181, 2295]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2523, 2495, 2347, 2107, 2010, 1882, 1770, 1740, 1694, 1686, 1702, 1764, 1867, 1943, 2118, 2287, 2389, 2445, 2410, 2174, 2009, 1869, 1748, 1651, 1564, 1552, 1541, 1569, 1605, 1739, 1864, 1993, 2124, 2281, 2470, 2255, 2077, 1875, 1722, 1592, 1494, 1430, 1411, 1404, 1440, 1504, 1590, 1742, 1864, 2064, 2230, 2362, 2147, 1941, 1784, 1595, 1493, 1399, 1314, 1284, 1267, 1337, 1408, 1484, 1634, 1779, 1943, 2106, 2300, 2092, 1920, 1717, 1512, 1389, 1299, 1212, 1187, 1181, 1208, 1302, 1385, 1534, 1717, 1894, 2071, 2282, 2005, 1841, 1622, 1462, 1316, 1218, 1153, 1098, 1120, 1154, 1230, 1318, 1462, 1609, 1818, 1982, 2223, 1986, 1781, 1583, 1390, 1242, 1167, 1094, 1045, 1071, 1088, 1168, 1259, 1405, 1579, 1742, 1952, 2159, 1945, 1727, 1518, 1338, 1223, 1119, 1077, 1029, 1041, 1073, 1126, 1239, 1370, 1507, 1710, 1958, 2140, 1930, 1703, 1528, 1345, 1211, 1106, 1051, 1024, 1027, 1063, 1108, 1206, 1337, 1489, 1716, 1916, 2131, 1939, 1716, 1522, 1353, 1204, 1123, 1050, 1027, 1040, 1058, 1111, 1227, 1341, 1498, 1687, 1963, 2191, 1979, 1759, 1541, 1371, 1246, 1136, 1073, 1041, 1045, 1077, 1140, 1254, 1364, 1530, 1715, 1903, 2256, 1995, 1765, 1579, 1400, 1277, 1180, 1121, 1077, 1082, 1115, 1202, 1305, 1400, 1560, 1765, 1953, 2282, 2041, 1831, 1642, 1458, 1347, 1232, 1190, 1151, 1147, 1165, 1229, 1360, 1470, 1646, 1799, 1985, 2328, 2109, 1888, 1694, 1550, 1410, 1326, 1242, 1217, 1226, 1258, 1328, 1411, 1545, 1673, 1872, 2049, 2343, 2154, 2004, 1800, 1638, 1525, 1421, 1364, 1314, 1317, 1344, 1404, 1512, 1626, 1792, 1931, 2118, 2348, 2186, 2045, 1927, 1732, 1612, 1547, 1445, 1438, 1437, 1454, 1516, 1620, 1727, 1882, 2007, 2175, 2530, 2369, 2173, 1989, 1870, 1753, 1679, 1598, 1570, 1566, 1591, 1641, 1724, 1831, 1964, 2065, 2284]
                                       }
                                   }, {
                                       "name":    "3264x2448_D50_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3746, 3552, 3294, 2866, 2578, 2383, 2123, 2045, 2022, 1994, 2045, 2174, 2396, 2624, 3014, 3212, 3606, 3695, 3387, 2918, 2674, 2331, 2053, 1873, 1754, 1778, 1743, 1796, 1922, 2155, 2387, 2668, 2988, 3428, 3534, 3192, 2771, 2415, 2097, 1843, 1664, 1556, 1512, 1534, 1603, 1735, 1906, 2162, 2458, 2838, 3287, 3377, 2934, 2603, 2197, 1887, 1641, 1491, 1390, 1360, 1344, 1414, 1549, 1688, 1918, 2254, 2639, 3089, 3319, 2824, 2402, 2021, 1736, 1485, 1360, 1259, 1214, 1217, 1283, 1390, 1556, 1807, 2077, 2550, 2957, 3123, 2691, 2319, 1918, 1576, 1405, 1248, 1174, 1134, 1127, 1171, 1287, 1455, 1657, 1950, 2376, 2794, 3082, 2611, 2187, 1766, 1509, 1328, 1195, 1109, 1083, 1084, 1123, 1195, 1368, 1605, 1903, 2281, 2715, 3037, 2530, 2090, 1735, 1473, 1273, 1138, 1075, 1026, 1055, 1096, 1166, 1316, 1544, 1821, 2186, 2696, 2987, 2567, 2145, 1723, 1465, 1256, 1128, 1044, 1025, 1042, 1076, 1143, 1299, 1514, 1806, 2179, 2581, 3040, 2503, 2099, 1739, 1459, 1246, 1137, 1071, 1037, 1024, 1067, 1162, 1316, 1524, 1844, 2168, 2723, 2944, 2589, 2150, 1792, 1496, 1301, 1159, 1100, 1071, 1075, 1104, 1193, 1359, 1584, 1846, 2232, 2692, 3088, 2635, 2192, 1842, 1577, 1358, 1223, 1150, 1097, 1097, 1162, 1251, 1440, 1619, 1973, 2267, 2722, 3149, 2800, 2315, 1938, 1716, 1457, 1305, 1228, 1178, 1180, 1224, 1343, 1523, 1739, 2064, 2400, 2851, 3418, 2872, 2477, 2103, 1807, 1591, 1457, 1357, 1295, 1289, 1359, 1460, 1646, 1879, 2179, 2569, 2982, 3552, 3093, 2669, 2307, 2006, 1732, 1607, 1480, 1458, 1469, 1535, 1655, 1839, 2065, 2422, 2717, 3076, 3611, 3235, 2812, 2503, 2220, 1983, 1826, 1711, 1662, 1666, 1720, 1843, 2024, 2292, 2598, 2943, 3313, 3675, 3369, 3114, 2778, 2474, 2249, 2080, 1906, 1937, 1862, 1967, 2077, 2281, 2517, 2785, 3134, 3402]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3132, 2889, 2655, 2333, 2142, 1998, 1877, 1785, 1747, 1741, 1766, 1891, 2022, 2202, 2401, 2703, 3013, 3025, 2710, 2415, 2213, 1987, 1811, 1683, 1606, 1574, 1569, 1614, 1698, 1840, 2013, 2204, 2486, 2881, 2903, 2592, 2272, 1999, 1799, 1642, 1524, 1444, 1416, 1420, 1449, 1557, 1665, 1854, 2070, 2326, 2686, 2795, 2436, 2127, 1879, 1681, 1519, 1405, 1326, 1290, 1295, 1345, 1418, 1550, 1693, 1949, 2221, 2557, 2632, 2327, 2019, 1778, 1551, 1398, 1310, 1214, 1178, 1193, 1227, 1310, 1432, 1587, 1827, 2090, 2394, 2573, 2266, 1943, 1686, 1502, 1320, 1230, 1141, 1115, 1115, 1164, 1227, 1333, 1522, 1720, 1993, 2325, 2488, 2180, 1876, 1637, 1430, 1280, 1169, 1091, 1070, 1061, 1111, 1169, 1306, 1454, 1639, 1951, 2254, 2463, 2177, 1852, 1571, 1401, 1231, 1144, 1066, 1034, 1043, 1077, 1146, 1250, 1441, 1657, 1891, 2196, 2431, 2126, 1826, 1577, 1373, 1225, 1110, 1051, 1024, 1033, 1066, 1123, 1243, 1405, 1594, 1876, 2210, 2440, 2126, 1833, 1593, 1388, 1226, 1129, 1062, 1042, 1033, 1070, 1140, 1245, 1400, 1648, 1872, 2228, 2480, 2170, 1870, 1617, 1413, 1268, 1143, 1083, 1050, 1060, 1092, 1157, 1272, 1440, 1651, 1931, 2212, 2533, 2216, 1925, 1677, 1475, 1320, 1207, 1131, 1083, 1095, 1148, 1203, 1324, 1492, 1692, 1987, 2295, 2598, 2301, 2001, 1731, 1526, 1384, 1265, 1204, 1160, 1162, 1192, 1278, 1394, 1577, 1778, 2040, 2348, 2716, 2395, 2086, 1844, 1645, 1477, 1373, 1283, 1251, 1256, 1301, 1364, 1503, 1640, 1881, 2147, 2466, 2830, 2486, 2209, 1966, 1732, 1597, 1471, 1407, 1348, 1364, 1407, 1486, 1612, 1781, 1999, 2272, 2564, 2944, 2634, 2338, 2091, 1890, 1719, 1592, 1530, 1496, 1518, 1546, 1632, 1743, 1914, 2102, 2390, 2718, 3064, 2801, 2491, 2264, 2034, 1915, 1766, 1699, 1644, 1649, 1681, 1800, 1954, 2122, 2337, 2612, 2921]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3081, 2944, 2597, 2409, 2125, 1954, 1836, 1798, 1747, 1760, 1765, 1863, 2012, 2178, 2417, 2684, 3031, 3013, 2746, 2434, 2167, 1939, 1794, 1689, 1601, 1549, 1563, 1606, 1694, 1845, 1994, 2217, 2475, 2866, 2913, 2585, 2264, 2028, 1785, 1639, 1506, 1452, 1417, 1407, 1449, 1529, 1648, 1835, 2072, 2310, 2650, 2716, 2422, 2128, 1887, 1648, 1502, 1372, 1305, 1291, 1275, 1328, 1414, 1529, 1715, 1917, 2179, 2555, 2620, 2328, 2033, 1757, 1545, 1399, 1293, 1193, 1181, 1196, 1232, 1305, 1431, 1602, 1831, 2088, 2387, 2584, 2221, 1926, 1667, 1484, 1314, 1224, 1152, 1111, 1117, 1153, 1226, 1335, 1509, 1734, 2005, 2308, 2467, 2153, 1856, 1641, 1421, 1273, 1156, 1087, 1054, 1065, 1098, 1169, 1292, 1461, 1665, 1928, 2270, 2436, 2113, 1834, 1579, 1388, 1237, 1120, 1063, 1024, 1041, 1074, 1138, 1255, 1439, 1627, 1899, 2187, 2520, 2115, 1841, 1574, 1381, 1209, 1118, 1050, 1028, 1036, 1050, 1129, 1245, 1393, 1613, 1882, 2194, 2415, 2145, 1820, 1588, 1397, 1229, 1115, 1059, 1038, 1032, 1071, 1132, 1258, 1413, 1623, 1892, 2240, 2403, 2149, 1882, 1622, 1400, 1249, 1150, 1085, 1064, 1060, 1087, 1167, 1290, 1448, 1648, 1931, 2210, 2541, 2218, 1919, 1664, 1448, 1315, 1201, 1114, 1087, 1106, 1141, 1219, 1328, 1512, 1709, 1969, 2311, 2603, 2252, 2000, 1742, 1551, 1393, 1276, 1212, 1184, 1168, 1204, 1295, 1393, 1565, 1781, 2045, 2367, 2760, 2393, 2082, 1846, 1661, 1479, 1375, 1299, 1254, 1259, 1307, 1378, 1482, 1671, 1890, 2166, 2483, 2838, 2519, 2230, 1973, 1786, 1611, 1489, 1410, 1381, 1368, 1418, 1508, 1610, 1796, 2017, 2269, 2596, 3044, 2661, 2316, 2108, 1916, 1729, 1618, 1567, 1509, 1522, 1547, 1631, 1772, 1924, 2136, 2420, 2726, 3092, 2820, 2544, 2289, 2103, 1921, 1798, 1729, 1666, 1675, 1735, 1802, 1931, 2129, 2336, 2600, 2924]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3080, 2879, 2602, 2282, 2087, 1941, 1819, 1753, 1726, 1733, 1748, 1893, 2014, 2197, 2403, 2709, 2985, 2949, 2725, 2408, 2132, 1942, 1777, 1661, 1591, 1535, 1540, 1579, 1685, 1831, 2004, 2179, 2506, 2801, 2846, 2489, 2208, 1959, 1736, 1605, 1519, 1416, 1388, 1413, 1440, 1521, 1664, 1841, 2044, 2335, 2681, 2696, 2413, 2085, 1844, 1631, 1468, 1392, 1313, 1287, 1294, 1336, 1423, 1531, 1708, 1899, 2204, 2460, 2620, 2213, 1961, 1735, 1543, 1373, 1281, 1206, 1193, 1182, 1237, 1314, 1434, 1600, 1798, 2074, 2377, 2485, 2163, 1897, 1642, 1454, 1305, 1216, 1147, 1102, 1112, 1170, 1235, 1358, 1534, 1726, 1975, 2307, 2392, 2096, 1837, 1611, 1384, 1236, 1152, 1090, 1057, 1074, 1099, 1176, 1299, 1450, 1661, 1919, 2234, 2375, 2045, 1775, 1573, 1357, 1196, 1111, 1062, 1036, 1040, 1078, 1134, 1282, 1411, 1623, 1861, 2167, 2409, 2028, 1793, 1543, 1344, 1193, 1102, 1046, 1024, 1026, 1065, 1129, 1247, 1421, 1597, 1872, 2202, 2357, 2052, 1782, 1531, 1346, 1204, 1127, 1052, 1025, 1027, 1072, 1138, 1243, 1404, 1608, 1826, 2178, 2401, 2083, 1831, 1579, 1380, 1233, 1140, 1074, 1050, 1066, 1100, 1143, 1265, 1427, 1621, 1880, 2182, 2434, 2146, 1868, 1613, 1426, 1269, 1192, 1130, 1090, 1103, 1134, 1201, 1322, 1481, 1672, 1944, 2261, 2539, 2197, 1944, 1682, 1512, 1359, 1251, 1199, 1159, 1158, 1176, 1281, 1389, 1540, 1759, 2021, 2358, 2617, 2321, 2008, 1787, 1593, 1431, 1331, 1281, 1248, 1248, 1284, 1369, 1483, 1668, 1859, 2120, 2443, 2731, 2397, 2169, 1902, 1706, 1570, 1457, 1383, 1344, 1333, 1395, 1501, 1579, 1770, 1978, 2202, 2559, 2830, 2570, 2297, 2044, 1844, 1693, 1596, 1504, 1496, 1479, 1525, 1601, 1737, 1889, 2092, 2361, 2744, 3073, 2723, 2434, 2159, 2039, 1844, 1757, 1657, 1651, 1613, 1681, 1763, 1891, 2044, 2317, 2510, 2779]
                                       }
                                   }, {
                                       "name":    "3264x2448_D50_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2929, 2912, 2803, 2525, 2330, 2194, 1986, 1927, 1910, 1882, 1918, 2014, 2177, 2327, 2583, 2658, 2831, 2968, 2845, 2553, 2408, 2155, 1935, 1789, 1688, 1712, 1678, 1719, 1819, 2002, 2167, 2351, 2538, 2773, 2904, 2739, 2471, 2220, 1975, 1767, 1615, 1520, 1480, 1499, 1558, 1669, 1806, 2003, 2212, 2459, 2719, 2827, 2569, 2360, 2054, 1805, 1596, 1464, 1372, 1345, 1329, 1391, 1511, 1625, 1809, 2065, 2330, 2607, 2816, 2506, 2210, 1915, 1680, 1458, 1346, 1251, 1208, 1211, 1272, 1369, 1514, 1724, 1930, 2280, 2533, 2686, 2415, 2154, 1833, 1539, 1388, 1241, 1171, 1132, 1125, 1167, 1275, 1426, 1597, 1832, 2152, 2425, 2670, 2361, 2048, 1702, 1481, 1317, 1192, 1108, 1083, 1083, 1121, 1189, 1348, 1555, 1798, 2083, 2376, 2643, 2300, 1968, 1677, 1449, 1265, 1136, 1075, 1026, 1055, 1095, 1162, 1301, 1502, 1730, 2009, 2369, 2606, 2334, 2019, 1668, 1442, 1249, 1127, 1044, 1025, 1042, 1075, 1140, 1285, 1475, 1718, 2005, 2279, 2646, 2277, 1976, 1681, 1436, 1239, 1135, 1071, 1037, 1024, 1066, 1158, 1301, 1484, 1750, 1994, 2391, 2559, 2343, 2016, 1726, 1468, 1291, 1156, 1099, 1071, 1074, 1102, 1187, 1339, 1536, 1748, 2042, 2358, 2658, 2368, 2043, 1765, 1540, 1343, 1217, 1148, 1096, 1096, 1158, 1241, 1412, 1563, 1852, 2061, 2368, 2683, 2486, 2135, 1841, 1661, 1432, 1293, 1221, 1174, 1175, 1216, 1325, 1483, 1663, 1919, 2157, 2450, 2859, 2519, 2253, 1972, 1733, 1549, 1432, 1341, 1283, 1276, 1340, 1428, 1587, 1775, 2001, 2274, 2525, 2917, 2661, 2386, 2127, 1895, 1667, 1562, 1449, 1430, 1439, 1496, 1597, 1747, 1919, 2182, 2364, 2561, 2906, 2728, 2468, 2265, 2059, 1873, 1746, 1649, 1606, 1608, 1651, 1749, 1889, 2088, 2295, 2503, 2690, 2880, 2775, 2661, 2453, 2243, 2079, 1949, 1804, 1834, 1765, 1850, 1930, 2080, 2240, 2404, 2600, 2689]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2500, 2417, 2302, 2090, 1964, 1862, 1771, 1697, 1666, 1658, 1674, 1770, 1863, 1984, 2103, 2278, 2416, 2480, 2323, 2147, 2021, 1857, 1721, 1618, 1554, 1526, 1520, 1555, 1621, 1730, 1854, 1977, 2151, 2375, 2431, 2265, 2058, 1863, 1711, 1585, 1486, 1416, 1391, 1393, 1416, 1508, 1592, 1738, 1890, 2054, 2269, 2381, 2166, 1957, 1775, 1619, 1483, 1383, 1311, 1278, 1282, 1326, 1389, 1500, 1612, 1807, 1992, 2199, 2279, 2097, 1881, 1698, 1509, 1376, 1298, 1208, 1174, 1188, 1219, 1294, 1400, 1527, 1715, 1902, 2094, 2250, 2060, 1826, 1623, 1470, 1307, 1224, 1139, 1114, 1113, 1160, 1218, 1312, 1475, 1631, 1833, 2054, 2195, 1998, 1774, 1584, 1406, 1271, 1166, 1090, 1070, 1061, 1109, 1164, 1290, 1417, 1566, 1805, 2008, 2182, 2001, 1757, 1527, 1381, 1225, 1142, 1066, 1034, 1043, 1076, 1142, 1238, 1407, 1585, 1759, 1967, 2158, 1960, 1736, 1533, 1355, 1219, 1109, 1051, 1024, 1033, 1065, 1120, 1232, 1375, 1530, 1747, 1980, 2163, 1958, 1741, 1547, 1369, 1220, 1127, 1062, 1042, 1033, 1069, 1136, 1233, 1370, 1577, 1743, 1993, 2188, 1990, 1769, 1566, 1390, 1259, 1141, 1082, 1050, 1060, 1091, 1152, 1258, 1404, 1576, 1788, 1974, 2219, 2019, 1810, 1615, 1445, 1307, 1202, 1129, 1082, 1094, 1144, 1195, 1304, 1448, 1607, 1828, 2030, 2253, 2075, 1865, 1656, 1486, 1363, 1255, 1198, 1156, 1158, 1185, 1263, 1365, 1518, 1673, 1860, 2058, 2321, 2133, 1923, 1744, 1586, 1444, 1353, 1270, 1241, 1245, 1285, 1339, 1458, 1565, 1749, 1932, 2129, 2376, 2181, 2005, 1834, 1652, 1544, 1437, 1381, 1327, 1341, 1378, 1443, 1545, 1675, 1832, 2011, 2177, 2421, 2265, 2085, 1919, 1773, 1640, 1536, 1484, 1455, 1473, 1494, 1563, 1646, 1771, 1894, 2077, 2257, 2452, 2351, 2173, 2034, 1873, 1791, 1674, 1621, 1574, 1577, 1599, 1692, 1806, 1918, 2053, 2210, 2352]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2464, 2458, 2256, 2152, 1949, 1825, 1735, 1709, 1666, 1675, 1673, 1746, 1854, 1964, 2115, 2264, 2429, 2471, 2351, 2162, 1983, 1816, 1706, 1623, 1549, 1503, 1514, 1548, 1617, 1734, 1838, 1987, 2142, 2364, 2439, 2259, 2051, 1888, 1699, 1582, 1469, 1423, 1392, 1381, 1416, 1482, 1577, 1722, 1892, 2042, 2242, 2321, 2155, 1958, 1782, 1589, 1467, 1352, 1291, 1279, 1263, 1310, 1385, 1481, 1631, 1780, 1958, 2197, 2270, 2097, 1893, 1679, 1504, 1377, 1282, 1188, 1176, 1190, 1223, 1289, 1399, 1540, 1719, 1900, 2088, 2259, 2023, 1811, 1606, 1453, 1301, 1218, 1149, 1110, 1115, 1149, 1217, 1314, 1463, 1643, 1843, 2041, 2178, 1975, 1757, 1588, 1398, 1264, 1153, 1086, 1054, 1065, 1096, 1164, 1276, 1423, 1589, 1786, 2020, 2160, 1947, 1741, 1534, 1369, 1230, 1119, 1063, 1024, 1041, 1073, 1134, 1243, 1405, 1558, 1766, 1960, 2230, 1950, 1749, 1530, 1363, 1204, 1117, 1050, 1028, 1036, 1050, 1126, 1234, 1364, 1547, 1753, 1967, 2143, 1974, 1729, 1542, 1377, 1223, 1114, 1059, 1038, 1032, 1070, 1129, 1246, 1382, 1555, 1760, 2002, 2127, 1972, 1780, 1570, 1378, 1241, 1147, 1084, 1064, 1060, 1086, 1162, 1274, 1411, 1574, 1788, 1972, 2225, 2020, 1805, 1603, 1420, 1302, 1196, 1112, 1086, 1104, 1138, 1210, 1308, 1466, 1622, 1813, 2043, 2257, 2035, 1864, 1665, 1509, 1372, 1265, 1206, 1179, 1163, 1196, 1279, 1364, 1507, 1676, 1864, 2072, 2354, 2131, 1919, 1746, 1601, 1446, 1355, 1286, 1244, 1248, 1291, 1352, 1439, 1592, 1757, 1948, 2142, 2382, 2207, 2023, 1840, 1700, 1557, 1453, 1384, 1358, 1345, 1388, 1463, 1544, 1688, 1846, 2009, 2201, 2494, 2286, 2067, 1933, 1796, 1648, 1559, 1518, 1467, 1477, 1495, 1562, 1671, 1779, 1922, 2100, 2262, 2472, 2365, 2215, 2055, 1931, 1796, 1702, 1648, 1594, 1600, 1647, 1694, 1786, 1924, 2052, 2201, 2354]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2463, 2409, 2260, 2049, 1917, 1813, 1720, 1669, 1647, 1651, 1658, 1772, 1856, 1980, 2104, 2282, 2397, 2425, 2335, 2141, 1953, 1818, 1691, 1598, 1540, 1491, 1493, 1524, 1609, 1722, 1846, 1956, 2166, 2317, 2388, 2183, 2005, 1828, 1655, 1551, 1481, 1389, 1364, 1387, 1408, 1475, 1591, 1727, 1869, 2061, 2265, 2305, 2147, 1922, 1744, 1574, 1435, 1371, 1299, 1275, 1281, 1318, 1394, 1483, 1625, 1764, 1978, 2125, 2270, 2003, 1831, 1659, 1502, 1353, 1270, 1200, 1188, 1177, 1228, 1297, 1402, 1539, 1690, 1888, 2080, 2181, 1974, 1786, 1583, 1425, 1292, 1210, 1145, 1101, 1110, 1166, 1225, 1336, 1486, 1636, 1818, 2040, 2118, 1927, 1740, 1560, 1363, 1228, 1149, 1089, 1057, 1073, 1097, 1170, 1283, 1413, 1585, 1778, 1992, 2111, 1889, 1689, 1529, 1339, 1191, 1110, 1062, 1036, 1040, 1077, 1131, 1268, 1380, 1555, 1733, 1944, 2140, 1877, 1706, 1502, 1328, 1188, 1101, 1046, 1024, 1026, 1064, 1126, 1236, 1390, 1533, 1744, 1974, 2096, 1895, 1695, 1490, 1329, 1198, 1125, 1052, 1025, 1027, 1071, 1134, 1231, 1373, 1541, 1704, 1952, 2125, 1916, 1735, 1531, 1359, 1225, 1138, 1073, 1050, 1066, 1098, 1139, 1251, 1392, 1550, 1745, 1950, 2140, 1960, 1760, 1557, 1399, 1258, 1187, 1128, 1089, 1101, 1131, 1193, 1302, 1438, 1589, 1792, 2003, 2207, 1990, 1816, 1612, 1473, 1340, 1241, 1193, 1155, 1154, 1170, 1266, 1360, 1485, 1657, 1845, 2065, 2245, 2073, 1857, 1694, 1539, 1401, 1313, 1269, 1238, 1237, 1269, 1344, 1440, 1590, 1730, 1910, 2112, 2302, 2110, 1972, 1779, 1629, 1520, 1424, 1359, 1323, 1312, 1366, 1457, 1516, 1666, 1814, 1956, 2173, 2338, 2215, 2052, 1880, 1733, 1617, 1539, 1461, 1455, 1438, 1475, 1535, 1641, 1750, 1886, 2054, 2276, 2458, 2293, 2129, 1949, 1877, 1730, 1666, 1584, 1580, 1545, 1599, 1660, 1753, 1855, 2037, 2134, 2253]
                                       }
                                   }, {
                                       "name":    "3264x2448_D65_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3998, 3948, 3665, 3266, 2957, 2622, 2354, 2255, 2196, 2159, 2234, 2408, 2642, 2930, 3235, 3431, 3694, 3921, 3723, 3393, 2952, 2576, 2256, 2089, 1969, 1915, 1900, 1955, 2084, 2237, 2525, 2861, 3195, 3710, 3966, 3425, 3066, 2626, 2258, 1990, 1797, 1668, 1610, 1650, 1667, 1754, 1946, 2236, 2592, 3032, 3413, 3737, 3275, 2847, 2442, 2099, 1786, 1630, 1501, 1429, 1411, 1478, 1605, 1775, 2028, 2335, 2728, 3309, 3747, 3152, 2629, 2234, 1889, 1617, 1449, 1352, 1272, 1275, 1328, 1462, 1628, 1893, 2190, 2599, 3081, 3535, 3024, 2527, 2091, 1740, 1482, 1318, 1222, 1172, 1183, 1202, 1312, 1486, 1707, 2053, 2459, 2956, 3370, 2899, 2393, 1960, 1639, 1421, 1234, 1141, 1088, 1086, 1115, 1245, 1381, 1647, 1918, 2347, 2846, 3256, 2849, 2258, 1862, 1570, 1329, 1185, 1094, 1032, 1047, 1097, 1170, 1343, 1583, 1882, 2259, 2819, 3307, 2811, 2278, 1901, 1536, 1332, 1165, 1047, 1031, 1027, 1072, 1166, 1327, 1524, 1835, 2255, 2802, 3313, 2778, 2262, 1850, 1543, 1325, 1171, 1080, 1024, 1025, 1063, 1172, 1329, 1573, 1832, 2251, 2712, 3241, 2809, 2299, 1872, 1605, 1343, 1212, 1104, 1069, 1066, 1123, 1194, 1354, 1608, 1927, 2310, 2738, 3380, 2907, 2388, 1967, 1664, 1410, 1257, 1153, 1117, 1109, 1151, 1282, 1447, 1673, 1999, 2405, 2802, 3537, 2984, 2502, 2094, 1785, 1527, 1333, 1258, 1199, 1220, 1265, 1361, 1522, 1796, 2140, 2566, 2930, 3526, 3200, 2637, 2263, 1879, 1686, 1492, 1379, 1349, 1347, 1366, 1486, 1697, 1965, 2261, 2642, 3122, 3856, 3328, 2832, 2422, 2128, 1875, 1673, 1530, 1484, 1504, 1519, 1682, 1904, 2104, 2494, 2839, 3197, 3892, 3545, 3091, 2671, 2362, 2161, 1949, 1777, 1693, 1753, 1763, 1924, 2117, 2451, 2646, 3005, 3311, 4007, 3629, 3211, 3041, 2654, 2441, 2212, 2026, 2036, 1976, 2057, 2197, 2446, 2611, 2959, 3357, 3420]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3236, 3071, 2752, 2462, 2305, 2110, 1957, 1855, 1796, 1803, 1838, 1908, 2052, 2237, 2473, 2676, 2973, 3181, 2838, 2545, 2284, 2067, 1870, 1750, 1659, 1622, 1616, 1655, 1730, 1878, 2034, 2238, 2455, 2803, 3036, 2630, 2366, 2119, 1900, 1718, 1580, 1485, 1448, 1440, 1475, 1554, 1672, 1839, 2089, 2319, 2626, 2937, 2510, 2235, 1967, 1759, 1558, 1440, 1355, 1301, 1300, 1341, 1415, 1526, 1693, 1944, 2187, 2412, 2794, 2430, 2105, 1851, 1617, 1442, 1334, 1256, 1211, 1193, 1234, 1309, 1422, 1602, 1796, 2060, 2379, 2689, 2324, 2022, 1763, 1534, 1378, 1250, 1156, 1125, 1122, 1169, 1220, 1333, 1515, 1735, 1972, 2240, 2585, 2256, 1947, 1696, 1463, 1296, 1188, 1104, 1066, 1066, 1116, 1176, 1289, 1445, 1669, 1928, 2216, 2616, 2191, 1867, 1662, 1423, 1260, 1142, 1083, 1024, 1043, 1078, 1119, 1241, 1413, 1618, 1842, 2177, 2528, 2188, 1884, 1600, 1395, 1231, 1121, 1052, 1036, 1031, 1049, 1122, 1230, 1367, 1586, 1859, 2157, 2522, 2213, 1871, 1625, 1413, 1241, 1136, 1070, 1037, 1026, 1052, 1116, 1249, 1391, 1607, 1857, 2160, 2562, 2230, 1927, 1636, 1445, 1274, 1154, 1085, 1062, 1053, 1076, 1140, 1271, 1414, 1618, 1899, 2150, 2578, 2273, 1936, 1706, 1516, 1318, 1216, 1137, 1092, 1079, 1120, 1194, 1297, 1468, 1682, 1922, 2293, 2686, 2374, 2018, 1765, 1560, 1397, 1282, 1204, 1157, 1150, 1178, 1261, 1377, 1528, 1742, 1998, 2303, 2775, 2430, 2134, 1854, 1647, 1485, 1379, 1283, 1252, 1244, 1268, 1341, 1470, 1628, 1872, 2115, 2414, 2879, 2546, 2237, 2014, 1775, 1610, 1475, 1407, 1351, 1342, 1400, 1473, 1581, 1726, 1935, 2217, 2556, 2953, 2692, 2388, 2124, 1902, 1756, 1636, 1547, 1498, 1493, 1529, 1601, 1729, 1889, 2100, 2341, 2686, 3197, 2865, 2626, 2323, 2080, 1935, 1785, 1725, 1683, 1657, 1698, 1778, 1919, 2060, 2271, 2523, 2805]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3228, 3058, 2804, 2537, 2274, 2088, 1979, 1900, 1831, 1818, 1863, 1963, 2102, 2237, 2473, 2738, 2974, 3212, 2900, 2566, 2317, 2102, 1916, 1787, 1670, 1620, 1617, 1646, 1757, 1866, 2049, 2258, 2595, 2888, 3097, 2721, 2424, 2153, 1898, 1744, 1590, 1520, 1483, 1471, 1491, 1566, 1716, 1858, 2076, 2362, 2717, 2900, 2567, 2240, 1972, 1779, 1580, 1440, 1367, 1324, 1336, 1355, 1455, 1568, 1721, 1918, 2207, 2515, 2788, 2449, 2146, 1870, 1623, 1468, 1340, 1250, 1213, 1211, 1257, 1323, 1435, 1624, 1823, 2113, 2384, 2707, 2353, 2014, 1779, 1545, 1377, 1243, 1172, 1131, 1137, 1169, 1254, 1348, 1533, 1727, 1979, 2342, 2611, 2298, 1934, 1714, 1445, 1297, 1195, 1119, 1075, 1081, 1120, 1186, 1304, 1448, 1655, 1926, 2286, 2571, 2231, 1905, 1650, 1426, 1279, 1147, 1084, 1038, 1059, 1089, 1155, 1255, 1433, 1618, 1868, 2192, 2546, 2230, 1899, 1618, 1400, 1262, 1141, 1067, 1024, 1050, 1060, 1129, 1250, 1395, 1610, 1882, 2185, 2536, 2211, 1908, 1641, 1431, 1260, 1138, 1065, 1042, 1043, 1073, 1120, 1248, 1419, 1603, 1869, 2215, 2500, 2189, 1922, 1656, 1442, 1278, 1165, 1098, 1063, 1065, 1094, 1158, 1279, 1430, 1650, 1922, 2195, 2646, 2284, 1978, 1741, 1509, 1332, 1217, 1143, 1106, 1098, 1151, 1215, 1319, 1482, 1705, 1962, 2262, 2737, 2314, 2040, 1790, 1577, 1408, 1291, 1224, 1166, 1187, 1208, 1287, 1393, 1560, 1786, 2046, 2349, 2786, 2452, 2156, 1894, 1686, 1510, 1389, 1302, 1270, 1266, 1305, 1386, 1488, 1660, 1866, 2165, 2475, 2920, 2570, 2288, 2010, 1804, 1620, 1511, 1435, 1387, 1375, 1436, 1511, 1599, 1807, 1986, 2251, 2549, 3041, 2749, 2413, 2161, 1958, 1766, 1639, 1570, 1524, 1516, 1548, 1636, 1753, 1932, 2124, 2414, 2709, 3191, 2883, 2559, 2364, 2126, 1936, 1814, 1746, 1702, 1696, 1752, 1821, 1961, 2098, 2313, 2594, 2864]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3131, 2979, 2670, 2436, 2214, 2044, 1923, 1872, 1746, 1787, 1811, 1920, 2064, 2201, 2473, 2694, 3041, 3184, 2842, 2515, 2254, 2009, 1885, 1699, 1634, 1576, 1593, 1643, 1717, 1865, 2034, 2239, 2471, 2856, 2929, 2636, 2327, 2040, 1833, 1668, 1546, 1498, 1424, 1438, 1480, 1570, 1693, 1858, 2095, 2317, 2662, 2857, 2481, 2136, 1923, 1692, 1553, 1419, 1335, 1332, 1300, 1339, 1456, 1532, 1717, 1914, 2200, 2457, 2746, 2352, 2066, 1790, 1605, 1421, 1323, 1256, 1208, 1189, 1238, 1314, 1433, 1626, 1810, 2051, 2388, 2602, 2273, 1990, 1712, 1492, 1362, 1229, 1156, 1130, 1132, 1162, 1243, 1353, 1502, 1697, 1975, 2256, 2537, 2181, 1877, 1646, 1439, 1275, 1172, 1105, 1071, 1073, 1117, 1184, 1287, 1448, 1673, 1869, 2159, 2501, 2133, 1849, 1579, 1375, 1258, 1135, 1083, 1047, 1035, 1081, 1138, 1268, 1419, 1607, 1863, 2181, 2439, 2129, 1830, 1605, 1371, 1228, 1124, 1065, 1049, 1038, 1062, 1116, 1242, 1377, 1590, 1837, 2191, 2490, 2111, 1854, 1584, 1398, 1220, 1141, 1069, 1024, 1028, 1067, 1121, 1244, 1382, 1588, 1873, 2152, 2509, 2155, 1855, 1626, 1399, 1259, 1154, 1085, 1052, 1054, 1086, 1162, 1265, 1414, 1618, 1866, 2156, 2577, 2211, 1915, 1666, 1459, 1298, 1193, 1142, 1091, 1085, 1132, 1228, 1314, 1460, 1651, 1934, 2268, 2590, 2250, 1994, 1728, 1505, 1388, 1267, 1209, 1147, 1156, 1189, 1257, 1362, 1524, 1754, 1981, 2234, 2724, 2387, 2049, 1812, 1615, 1469, 1345, 1285, 1248, 1239, 1272, 1362, 1474, 1630, 1833, 2093, 2413, 2792, 2476, 2201, 1938, 1746, 1580, 1474, 1398, 1361, 1340, 1366, 1466, 1581, 1784, 1969, 2210, 2528, 2961, 2607, 2323, 2053, 1860, 1741, 1608, 1505, 1474, 1471, 1545, 1611, 1707, 1885, 2095, 2348, 2629, 3090, 2835, 2493, 2190, 2088, 1895, 1781, 1690, 1659, 1638, 1693, 1769, 1914, 2094, 2252, 2466, 2857]
                                       }
                                   }, {
                                       "name":    "3264x2448_D65_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3106, 3207, 3093, 2850, 2649, 2400, 2188, 2113, 2064, 2028, 2083, 2215, 2384, 2577, 2756, 2821, 2893, 3132, 3104, 2937, 2641, 2367, 2115, 1983, 1884, 1837, 1821, 1863, 1963, 2073, 2283, 2507, 2697, 2979, 3227, 2924, 2715, 2402, 2118, 1901, 1738, 1624, 1572, 1608, 1618, 1687, 1842, 2066, 2323, 2613, 2813, 3103, 2845, 2566, 2269, 1997, 1730, 1595, 1478, 1411, 1392, 1452, 1562, 1704, 1906, 2133, 2402, 2775, 3150, 2776, 2406, 2105, 1820, 1583, 1431, 1341, 1265, 1267, 1315, 1437, 1580, 1800, 2028, 2321, 2630, 3012, 2693, 2335, 1990, 1692, 1461, 1309, 1218, 1170, 1180, 1197, 1299, 1455, 1642, 1922, 2222, 2554, 2900, 2604, 2230, 1879, 1603, 1407, 1230, 1140, 1088, 1085, 1113, 1237, 1360, 1593, 1811, 2139, 2481, 2820, 2571, 2117, 1794, 1541, 1320, 1183, 1094, 1032, 1047, 1096, 1165, 1326, 1538, 1784, 2071, 2468, 2864, 2541, 2137, 1832, 1510, 1323, 1163, 1047, 1031, 1027, 1071, 1162, 1311, 1484, 1744, 2069, 2457, 2866, 2511, 2121, 1783, 1515, 1316, 1169, 1080, 1024, 1025, 1062, 1167, 1313, 1529, 1740, 2064, 2382, 2797, 2528, 2147, 1799, 1571, 1331, 1208, 1103, 1069, 1066, 1121, 1188, 1335, 1558, 1819, 2108, 2395, 2889, 2595, 2214, 1878, 1621, 1393, 1250, 1150, 1115, 1107, 1147, 1270, 1419, 1612, 1875, 2176, 2432, 2986, 2637, 2296, 1980, 1725, 1498, 1320, 1250, 1194, 1214, 1255, 1342, 1483, 1714, 1985, 2293, 2512, 2942, 2784, 2389, 2112, 1798, 1637, 1465, 1362, 1334, 1331, 1346, 1452, 1633, 1851, 2071, 2333, 2632, 3145, 2847, 2521, 2226, 2003, 1797, 1623, 1496, 1454, 1472, 1481, 1621, 1804, 1953, 2241, 2460, 2651, 3111, 2967, 2693, 2406, 2181, 2031, 1857, 1709, 1635, 1687, 1690, 1821, 1969, 2221, 2334, 2551, 2688, 3112, 2969, 2737, 2667, 2394, 2244, 2064, 1910, 1922, 1866, 1928, 2034, 2219, 2317, 2540, 2766, 2701]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2572, 2553, 2378, 2195, 2101, 1959, 1841, 1759, 1709, 1713, 1737, 1785, 1888, 2012, 2159, 2258, 2388, 2594, 2422, 2252, 2081, 1926, 1773, 1678, 1602, 1570, 1563, 1592, 1649, 1763, 1871, 2004, 2127, 2319, 2531, 2295, 2135, 1966, 1801, 1654, 1537, 1454, 1421, 1412, 1440, 1505, 1599, 1725, 1906, 2049, 2224, 2490, 2226, 2049, 1852, 1689, 1519, 1416, 1339, 1288, 1287, 1323, 1386, 1478, 1612, 1802, 1965, 2088, 2406, 2181, 1955, 1763, 1570, 1418, 1321, 1249, 1206, 1188, 1225, 1293, 1390, 1540, 1689, 1877, 2082, 2342, 2109, 1895, 1693, 1500, 1362, 1243, 1153, 1123, 1120, 1165, 1211, 1312, 1469, 1644, 1815, 1987, 2272, 2062, 1837, 1638, 1437, 1286, 1185, 1103, 1066, 1066, 1114, 1170, 1274, 1409, 1592, 1786, 1977, 2305, 2013, 1771, 1610, 1402, 1253, 1140, 1083, 1024, 1043, 1077, 1116, 1229, 1382, 1550, 1717, 1952, 2236, 2012, 1787, 1554, 1376, 1225, 1120, 1052, 1036, 1031, 1049, 1119, 1219, 1340, 1523, 1733, 1937, 2229, 2032, 1774, 1576, 1392, 1234, 1134, 1070, 1037, 1026, 1052, 1113, 1237, 1361, 1540, 1730, 1938, 2254, 2040, 1819, 1583, 1420, 1265, 1151, 1084, 1062, 1053, 1075, 1136, 1257, 1380, 1547, 1761, 1924, 2254, 2066, 1820, 1641, 1483, 1305, 1210, 1135, 1091, 1078, 1117, 1186, 1279, 1426, 1598, 1773, 2029, 2321, 2135, 1880, 1686, 1518, 1376, 1271, 1198, 1153, 1146, 1172, 1247, 1349, 1474, 1642, 1826, 2022, 2366, 2161, 1963, 1753, 1588, 1451, 1358, 1270, 1242, 1233, 1254, 1318, 1428, 1555, 1741, 1906, 2089, 2413, 2228, 2029, 1875, 1690, 1556, 1440, 1381, 1330, 1320, 1371, 1432, 1518, 1628, 1779, 1968, 2171, 2428, 2309, 2125, 1947, 1784, 1672, 1575, 1500, 1457, 1451, 1479, 1535, 1634, 1750, 1893, 2039, 2233, 2545, 2399, 2279, 2082, 1912, 1808, 1690, 1644, 1609, 1584, 1614, 1673, 1776, 1868, 2001, 2143, 2271]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2567, 2543, 2419, 2257, 2075, 1940, 1860, 1799, 1740, 1726, 1759, 1832, 1930, 2012, 2159, 2304, 2389, 2616, 2470, 2269, 2109, 1957, 1814, 1711, 1612, 1568, 1564, 1584, 1673, 1752, 1884, 2020, 2235, 2380, 2576, 2367, 2183, 1995, 1799, 1678, 1546, 1486, 1453, 1441, 1455, 1516, 1638, 1741, 1895, 2083, 2292, 2462, 2272, 2053, 1857, 1708, 1539, 1416, 1350, 1310, 1321, 1336, 1423, 1516, 1636, 1780, 1981, 2167, 2401, 2197, 1990, 1780, 1576, 1442, 1327, 1243, 1207, 1205, 1247, 1306, 1402, 1560, 1712, 1920, 2086, 2357, 2133, 1888, 1708, 1510, 1361, 1237, 1169, 1129, 1135, 1165, 1244, 1326, 1485, 1637, 1821, 2068, 2293, 2097, 1825, 1655, 1420, 1287, 1192, 1118, 1075, 1080, 1118, 1180, 1288, 1411, 1580, 1784, 2033, 2269, 2047, 1804, 1599, 1405, 1271, 1145, 1084, 1038, 1059, 1088, 1151, 1243, 1400, 1550, 1739, 1964, 2251, 2048, 1801, 1571, 1381, 1255, 1139, 1067, 1024, 1050, 1060, 1126, 1238, 1366, 1544, 1753, 1960, 2240, 2030, 1807, 1591, 1409, 1253, 1136, 1065, 1042, 1043, 1072, 1117, 1236, 1387, 1537, 1740, 1982, 2204, 2006, 1815, 1602, 1418, 1269, 1162, 1097, 1063, 1065, 1093, 1153, 1264, 1395, 1575, 1781, 1960, 2308, 2075, 1856, 1673, 1476, 1318, 1211, 1141, 1105, 1097, 1147, 1206, 1299, 1439, 1618, 1807, 2004, 2361, 2086, 1899, 1708, 1533, 1386, 1280, 1218, 1162, 1182, 1200, 1272, 1364, 1503, 1680, 1865, 2058, 2374, 2179, 1982, 1788, 1623, 1474, 1368, 1289, 1259, 1254, 1289, 1359, 1444, 1583, 1736, 1947, 2136, 2444, 2247, 2071, 1872, 1716, 1565, 1474, 1407, 1364, 1351, 1404, 1466, 1534, 1697, 1821, 1995, 2166, 2492, 2353, 2145, 1978, 1832, 1681, 1578, 1521, 1480, 1472, 1496, 1566, 1655, 1786, 1912, 2095, 2250, 2541, 2412, 2227, 2116, 1950, 1809, 1716, 1663, 1626, 1618, 1661, 1710, 1812, 1899, 2034, 2196, 2312]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2499, 2484, 2314, 2174, 2024, 1902, 1811, 1774, 1665, 1699, 1713, 1795, 1898, 1983, 2159, 2271, 2436, 2596, 2425, 2228, 2056, 1876, 1787, 1632, 1579, 1528, 1542, 1582, 1638, 1751, 1871, 2005, 2139, 2357, 2451, 2299, 2103, 1898, 1741, 1609, 1506, 1466, 1398, 1410, 1445, 1520, 1617, 1741, 1911, 2047, 2251, 2429, 2202, 1965, 1814, 1629, 1514, 1396, 1320, 1318, 1287, 1321, 1424, 1484, 1633, 1777, 1975, 2122, 2368, 2117, 1921, 1708, 1559, 1398, 1310, 1249, 1203, 1184, 1229, 1297, 1401, 1562, 1701, 1869, 2089, 2273, 2066, 1867, 1647, 1461, 1347, 1223, 1153, 1128, 1130, 1158, 1233, 1331, 1457, 1611, 1818, 1999, 2234, 1999, 1775, 1592, 1415, 1266, 1169, 1104, 1071, 1072, 1115, 1178, 1272, 1411, 1596, 1736, 1932, 2212, 1964, 1755, 1534, 1356, 1251, 1133, 1083, 1047, 1035, 1080, 1134, 1255, 1387, 1540, 1735, 1955, 2165, 1962, 1739, 1559, 1353, 1222, 1123, 1065, 1049, 1038, 1062, 1113, 1231, 1349, 1526, 1714, 1965, 2203, 1945, 1759, 1539, 1378, 1214, 1139, 1069, 1024, 1028, 1066, 1118, 1232, 1353, 1524, 1744, 1931, 2212, 1977, 1756, 1574, 1377, 1250, 1151, 1084, 1052, 1054, 1085, 1157, 1251, 1380, 1547, 1733, 1929, 2254, 2015, 1801, 1605, 1430, 1286, 1188, 1140, 1090, 1084, 1129, 1219, 1295, 1419, 1571, 1783, 2009, 2247, 2033, 1859, 1653, 1467, 1367, 1257, 1203, 1143, 1152, 1182, 1244, 1335, 1471, 1652, 1812, 1969, 2327, 2126, 1891, 1716, 1559, 1436, 1326, 1272, 1238, 1229, 1258, 1337, 1431, 1556, 1708, 1889, 2089, 2348, 2173, 1999, 1810, 1664, 1529, 1439, 1373, 1339, 1319, 1340, 1425, 1518, 1678, 1807, 1962, 2150, 2434, 2244, 2073, 1887, 1747, 1659, 1550, 1462, 1435, 1431, 1493, 1544, 1615, 1746, 1889, 2044, 2192, 2470, 2376, 2175, 1974, 1918, 1774, 1687, 1613, 1588, 1567, 1610, 1665, 1772, 1896, 1986, 2101, 2307]
                                       }
                                   }, {
                                       "name":    "3264x2448_D75_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4039, 3792, 3664, 3127, 2797, 2547, 2403, 2238, 2164, 2175, 2169, 2318, 2538, 2820, 3115, 3413, 3729, 4057, 3731, 3238, 2928, 2555, 2322, 2119, 1920, 1876, 1892, 1952, 2056, 2273, 2572, 2819, 3145, 3509, 3975, 3402, 3032, 2632, 2262, 2005, 1780, 1675, 1631, 1674, 1682, 1800, 1984, 2310, 2549, 2958, 3336, 3678, 3248, 2816, 2437, 2043, 1812, 1625, 1501, 1461, 1444, 1508, 1619, 1781, 2053, 2377, 2810, 3210, 3643, 3134, 2720, 2140, 1873, 1620, 1446, 1358, 1288, 1297, 1358, 1455, 1630, 1867, 2193, 2547, 3019, 3410, 2965, 2515, 2095, 1748, 1518, 1317, 1210, 1172, 1176, 1223, 1322, 1491, 1715, 2026, 2492, 2873, 3376, 2857, 2382, 1961, 1667, 1410, 1243, 1142, 1123, 1087, 1149, 1245, 1392, 1632, 1902, 2334, 2731, 3386, 2805, 2320, 1889, 1587, 1347, 1189, 1101, 1050, 1072, 1086, 1188, 1340, 1560, 1882, 2268, 2622, 3243, 2757, 2239, 1893, 1539, 1313, 1146, 1088, 1051, 1024, 1094, 1168, 1309, 1544, 1825, 2251, 2691, 3209, 2770, 2196, 1845, 1565, 1320, 1183, 1092, 1055, 1047, 1090, 1176, 1326, 1574, 1860, 2279, 2714, 3237, 2791, 2266, 1931, 1602, 1359, 1201, 1117, 1064, 1082, 1117, 1208, 1360, 1605, 1892, 2291, 2694, 3351, 2801, 2399, 1946, 1674, 1417, 1267, 1173, 1115, 1124, 1186, 1257, 1427, 1664, 2009, 2350, 2892, 3350, 2977, 2535, 2089, 1792, 1515, 1341, 1263, 1199, 1205, 1262, 1362, 1556, 1779, 2085, 2442, 2942, 3500, 3065, 2614, 2238, 1889, 1673, 1485, 1397, 1347, 1320, 1381, 1497, 1682, 1923, 2270, 2639, 3017, 3798, 3195, 2786, 2407, 2126, 1859, 1693, 1583, 1484, 1478, 1530, 1687, 1880, 2127, 2426, 2780, 3188, 3723, 3379, 3018, 2688, 2346, 2063, 1930, 1766, 1713, 1696, 1766, 1887, 2050, 2360, 2618, 2997, 3391, 3842, 3674, 3280, 2907, 2645, 2362, 2129, 2024, 1933, 1953, 2070, 2170, 2316, 2585, 2872, 3123, 3534]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3239, 3067, 2787, 2510, 2270, 2063, 1954, 1867, 1794, 1821, 1846, 1910, 2061, 2256, 2440, 2695, 2915, 3237, 2912, 2559, 2362, 2075, 1893, 1763, 1662, 1610, 1601, 1625, 1741, 1857, 2047, 2215, 2491, 2869, 3026, 2672, 2396, 2113, 1871, 1725, 1571, 1500, 1467, 1457, 1472, 1572, 1695, 1861, 2019, 2324, 2643, 2881, 2552, 2278, 1959, 1753, 1572, 1443, 1363, 1326, 1317, 1367, 1440, 1553, 1695, 1918, 2181, 2492, 2748, 2444, 2086, 1852, 1595, 1442, 1333, 1257, 1211, 1192, 1244, 1316, 1445, 1604, 1808, 2045, 2360, 2657, 2353, 2021, 1744, 1541, 1380, 1262, 1172, 1123, 1126, 1159, 1217, 1336, 1525, 1707, 1991, 2286, 2622, 2256, 1949, 1679, 1478, 1304, 1200, 1107, 1078, 1080, 1100, 1166, 1287, 1423, 1633, 1923, 2213, 2571, 2255, 1893, 1638, 1431, 1266, 1156, 1078, 1034, 1044, 1084, 1123, 1242, 1410, 1601, 1844, 2145, 2528, 2199, 1894, 1612, 1404, 1246, 1127, 1064, 1024, 1032, 1053, 1127, 1231, 1372, 1591, 1852, 2129, 2481, 2190, 1889, 1631, 1421, 1248, 1148, 1069, 1036, 1036, 1062, 1116, 1233, 1385, 1590, 1831, 2133, 2558, 2204, 1937, 1629, 1460, 1272, 1161, 1091, 1052, 1045, 1078, 1142, 1268, 1418, 1592, 1892, 2194, 2617, 2273, 1951, 1713, 1491, 1329, 1202, 1136, 1100, 1081, 1127, 1196, 1307, 1486, 1676, 1936, 2220, 2656, 2304, 2023, 1768, 1526, 1393, 1277, 1197, 1165, 1158, 1197, 1264, 1367, 1542, 1747, 2004, 2275, 2745, 2418, 2124, 1860, 1674, 1503, 1378, 1276, 1244, 1249, 1274, 1354, 1464, 1637, 1839, 2106, 2387, 2881, 2509, 2238, 1968, 1764, 1617, 1476, 1394, 1361, 1341, 1389, 1470, 1576, 1733, 1933, 2236, 2517, 2970, 2675, 2376, 2138, 1888, 1721, 1607, 1524, 1505, 1495, 1526, 1617, 1708, 1885, 2123, 2374, 2616, 3043, 2871, 2539, 2321, 2074, 1912, 1814, 1692, 1656, 1636, 1685, 1772, 1890, 2051, 2272, 2520, 2834]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3247, 3105, 2756, 2491, 2292, 2072, 1943, 1887, 1808, 1824, 1853, 1921, 2065, 2186, 2463, 2721, 3018, 3190, 2917, 2595, 2287, 2063, 1887, 1760, 1675, 1617, 1619, 1648, 1709, 1857, 2032, 2231, 2504, 2863, 3036, 2662, 2363, 2099, 1880, 1703, 1568, 1485, 1465, 1473, 1477, 1548, 1687, 1851, 2044, 2340, 2643, 2906, 2549, 2226, 1959, 1766, 1573, 1446, 1357, 1330, 1305, 1369, 1439, 1548, 1705, 1927, 2196, 2510, 2774, 2421, 2100, 1850, 1588, 1446, 1334, 1265, 1220, 1216, 1246, 1320, 1438, 1605, 1831, 2043, 2351, 2665, 2308, 2016, 1747, 1535, 1381, 1264, 1182, 1132, 1133, 1156, 1234, 1344, 1505, 1728, 1971, 2238, 2594, 2259, 1963, 1674, 1469, 1314, 1187, 1122, 1082, 1064, 1118, 1167, 1276, 1455, 1624, 1903, 2205, 2556, 2193, 1892, 1627, 1434, 1267, 1145, 1079, 1041, 1052, 1076, 1131, 1240, 1408, 1601, 1864, 2153, 2506, 2176, 1883, 1612, 1394, 1242, 1128, 1060, 1033, 1040, 1049, 1114, 1222, 1385, 1587, 1824, 2146, 2498, 2183, 1892, 1628, 1414, 1254, 1138, 1067, 1040, 1024, 1070, 1127, 1237, 1404, 1596, 1830, 2158, 2571, 2211, 1897, 1669, 1456, 1271, 1149, 1101, 1064, 1054, 1083, 1147, 1263, 1407, 1607, 1887, 2185, 2587, 2264, 1964, 1719, 1496, 1326, 1208, 1132, 1101, 1101, 1134, 1209, 1312, 1484, 1671, 1912, 2253, 2681, 2333, 2023, 1808, 1575, 1412, 1296, 1213, 1169, 1170, 1211, 1279, 1385, 1554, 1756, 2007, 2306, 2818, 2442, 2132, 1897, 1657, 1501, 1380, 1299, 1268, 1254, 1310, 1367, 1473, 1638, 1864, 2116, 2463, 2903, 2515, 2230, 1991, 1760, 1623, 1484, 1413, 1372, 1349, 1412, 1475, 1591, 1784, 1977, 2193, 2506, 2963, 2712, 2414, 2144, 1924, 1747, 1641, 1543, 1519, 1508, 1539, 1635, 1753, 1893, 2145, 2358, 2739, 3148, 2915, 2553, 2328, 2096, 1946, 1803, 1714, 1684, 1695, 1722, 1802, 1910, 2088, 2278, 2567, 2872]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3194, 2954, 2635, 2373, 2175, 2036, 1913, 1806, 1762, 1760, 1807, 1921, 2037, 2157, 2402, 2677, 2955, 3107, 2723, 2483, 2227, 1988, 1836, 1722, 1625, 1606, 1565, 1627, 1699, 1828, 1987, 2215, 2470, 2771, 2952, 2612, 2288, 2066, 1834, 1664, 1539, 1462, 1417, 1433, 1465, 1556, 1631, 1826, 2038, 2280, 2594, 2737, 2427, 2158, 1890, 1712, 1526, 1426, 1332, 1301, 1323, 1346, 1408, 1518, 1711, 1888, 2144, 2443, 2632, 2316, 2028, 1793, 1566, 1415, 1313, 1216, 1192, 1195, 1247, 1308, 1422, 1572, 1771, 1998, 2380, 2584, 2246, 1916, 1707, 1507, 1335, 1227, 1151, 1125, 1120, 1153, 1222, 1342, 1498, 1688, 1915, 2230, 2530, 2188, 1856, 1637, 1427, 1293, 1169, 1094, 1066, 1081, 1090, 1177, 1274, 1419, 1634, 1898, 2169, 2474, 2139, 1808, 1557, 1378, 1235, 1127, 1066, 1025, 1035, 1063, 1131, 1237, 1377, 1581, 1827, 2137, 2371, 2126, 1796, 1571, 1365, 1221, 1121, 1054, 1024, 1028, 1056, 1111, 1225, 1390, 1547, 1833, 2116, 2413, 2102, 1810, 1569, 1376, 1212, 1116, 1054, 1028, 1034, 1061, 1121, 1225, 1388, 1584, 1808, 2108, 2481, 2117, 1846, 1598, 1407, 1246, 1141, 1077, 1048, 1053, 1080, 1149, 1243, 1405, 1589, 1845, 2149, 2492, 2168, 1887, 1645, 1445, 1278, 1191, 1129, 1091, 1078, 1123, 1170, 1281, 1451, 1637, 1887, 2185, 2531, 2247, 1947, 1734, 1497, 1369, 1247, 1174, 1143, 1143, 1199, 1263, 1368, 1525, 1703, 1974, 2274, 2664, 2330, 2053, 1787, 1611, 1431, 1334, 1269, 1232, 1222, 1275, 1350, 1440, 1616, 1832, 2068, 2355, 2721, 2453, 2181, 1912, 1690, 1562, 1451, 1389, 1328, 1324, 1373, 1439, 1564, 1721, 1941, 2185, 2448, 2872, 2585, 2317, 2053, 1854, 1697, 1572, 1497, 1484, 1469, 1527, 1592, 1711, 1867, 2063, 2338, 2605, 3046, 2770, 2420, 2237, 2077, 1852, 1766, 1656, 1632, 1634, 1693, 1737, 1866, 2028, 2224, 2457, 2772]
                                       }
                                   }, {
                                       "name":    "3264x2448_D75_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3135, 3091, 3092, 2737, 2514, 2335, 2231, 2098, 2036, 2042, 2027, 2138, 2296, 2487, 2662, 2808, 2918, 3231, 3110, 2811, 2621, 2348, 2174, 2010, 1839, 1802, 1814, 1860, 1938, 2104, 2323, 2473, 2659, 2832, 3234, 2906, 2687, 2407, 2122, 1915, 1722, 1631, 1592, 1630, 1631, 1728, 1875, 2130, 2287, 2554, 2755, 3058, 2823, 2540, 2265, 1947, 1754, 1590, 1478, 1441, 1424, 1480, 1575, 1709, 1928, 2169, 2468, 2699, 3069, 2761, 2484, 2021, 1806, 1586, 1428, 1347, 1280, 1288, 1344, 1430, 1582, 1777, 2030, 2278, 2581, 2913, 2644, 2325, 1994, 1699, 1496, 1308, 1206, 1170, 1173, 1217, 1309, 1460, 1650, 1898, 2249, 2488, 2905, 2569, 2220, 1880, 1629, 1396, 1239, 1141, 1122, 1086, 1146, 1237, 1371, 1580, 1797, 2128, 2389, 2924, 2533, 2172, 1819, 1557, 1337, 1187, 1101, 1050, 1072, 1085, 1183, 1323, 1517, 1784, 2078, 2310, 2813, 2496, 2102, 1824, 1513, 1305, 1144, 1088, 1051, 1024, 1093, 1164, 1294, 1503, 1735, 2066, 2368, 2782, 2504, 2062, 1779, 1536, 1311, 1181, 1092, 1055, 1047, 1089, 1171, 1310, 1529, 1765, 2088, 2384, 2794, 2513, 2118, 1853, 1568, 1347, 1197, 1116, 1064, 1081, 1115, 1201, 1340, 1555, 1788, 2092, 2360, 2866, 2507, 2224, 1859, 1630, 1399, 1260, 1170, 1114, 1122, 1181, 1246, 1400, 1603, 1883, 2131, 2503, 2840, 2632, 2325, 1976, 1731, 1487, 1328, 1255, 1194, 1199, 1252, 1343, 1514, 1699, 1937, 2191, 2521, 2922, 2675, 2369, 2090, 1807, 1625, 1458, 1379, 1332, 1306, 1360, 1462, 1620, 1814, 2078, 2330, 2551, 3101, 2742, 2483, 2213, 2001, 1782, 1642, 1545, 1454, 1447, 1491, 1626, 1783, 1973, 2185, 2413, 2645, 2988, 2839, 2634, 2420, 2168, 1944, 1840, 1699, 1653, 1635, 1692, 1788, 1912, 2145, 2311, 2544, 2746, 2997, 3003, 2792, 2558, 2386, 2176, 1991, 1908, 1831, 1846, 1940, 2010, 2110, 2296, 2472, 2591, 2781]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2575, 2550, 2405, 2235, 2071, 1918, 1838, 1770, 1707, 1729, 1744, 1787, 1896, 2028, 2133, 2272, 2348, 2634, 2479, 2263, 2146, 1933, 1794, 1690, 1604, 1559, 1549, 1565, 1659, 1745, 1882, 1986, 2155, 2367, 2523, 2328, 2160, 1961, 1775, 1660, 1529, 1468, 1438, 1428, 1438, 1521, 1619, 1744, 1848, 2053, 2236, 2447, 2260, 2085, 1845, 1684, 1532, 1419, 1347, 1312, 1303, 1347, 1410, 1503, 1613, 1780, 1960, 2149, 2370, 2193, 1938, 1764, 1550, 1418, 1320, 1249, 1206, 1187, 1235, 1299, 1412, 1542, 1699, 1864, 2067, 2317, 2133, 1894, 1676, 1506, 1364, 1255, 1169, 1121, 1124, 1155, 1208, 1315, 1478, 1620, 1831, 2023, 2302, 2062, 1839, 1623, 1452, 1294, 1196, 1106, 1078, 1079, 1098, 1161, 1272, 1389, 1560, 1782, 1975, 2269, 2067, 1794, 1588, 1409, 1259, 1154, 1078, 1034, 1044, 1083, 1120, 1230, 1379, 1535, 1719, 1926, 2236, 2022, 1796, 1565, 1385, 1240, 1126, 1064, 1024, 1032, 1053, 1124, 1220, 1344, 1527, 1727, 1915, 2196, 2012, 1790, 1582, 1400, 1241, 1146, 1069, 1036, 1036, 1061, 1113, 1222, 1356, 1525, 1708, 1916, 2251, 2018, 1828, 1577, 1435, 1263, 1158, 1090, 1052, 1045, 1077, 1138, 1254, 1384, 1524, 1755, 1960, 2285, 2066, 1833, 1648, 1460, 1315, 1197, 1134, 1099, 1080, 1124, 1188, 1288, 1442, 1593, 1785, 1971, 2298, 2078, 1884, 1689, 1486, 1372, 1266, 1191, 1161, 1154, 1190, 1250, 1340, 1487, 1646, 1831, 2001, 2343, 2151, 1955, 1758, 1612, 1468, 1358, 1264, 1234, 1238, 1260, 1330, 1422, 1562, 1714, 1899, 2069, 2415, 2199, 2029, 1836, 1680, 1562, 1441, 1369, 1339, 1320, 1361, 1429, 1513, 1634, 1777, 1983, 2142, 2440, 2296, 2116, 1958, 1771, 1641, 1549, 1479, 1463, 1453, 1476, 1549, 1616, 1746, 1911, 2064, 2182, 2437, 2403, 2211, 2081, 1906, 1788, 1716, 1615, 1585, 1565, 1603, 1668, 1752, 1861, 2002, 2141, 2291]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2580, 2578, 2381, 2219, 2090, 1926, 1829, 1787, 1720, 1732, 1750, 1796, 1899, 1971, 2151, 2291, 2420, 2600, 2483, 2292, 2083, 1923, 1788, 1687, 1616, 1565, 1565, 1586, 1631, 1745, 1870, 1998, 2165, 2362, 2531, 2320, 2133, 1949, 1783, 1640, 1526, 1454, 1437, 1443, 1442, 1500, 1612, 1735, 1869, 2065, 2236, 2466, 2257, 2041, 1845, 1696, 1533, 1422, 1341, 1316, 1291, 1349, 1409, 1498, 1622, 1788, 1972, 2163, 2390, 2174, 1950, 1762, 1543, 1422, 1321, 1257, 1214, 1210, 1237, 1303, 1405, 1543, 1719, 1863, 2060, 2323, 2095, 1889, 1679, 1501, 1365, 1257, 1179, 1130, 1131, 1152, 1225, 1323, 1459, 1638, 1814, 1985, 2280, 2065, 1851, 1618, 1443, 1303, 1184, 1121, 1082, 1064, 1116, 1162, 1261, 1418, 1552, 1765, 1968, 2257, 2015, 1793, 1578, 1412, 1259, 1143, 1079, 1041, 1052, 1075, 1128, 1229, 1377, 1535, 1736, 1932, 2219, 2002, 1786, 1565, 1375, 1236, 1127, 1060, 1033, 1040, 1049, 1111, 1212, 1356, 1524, 1703, 1928, 2210, 2006, 1793, 1579, 1393, 1247, 1136, 1067, 1040, 1024, 1069, 1124, 1226, 1373, 1531, 1707, 1936, 2261, 2024, 1793, 1613, 1431, 1262, 1146, 1100, 1064, 1054, 1082, 1143, 1249, 1374, 1537, 1751, 1952, 2262, 2059, 1844, 1653, 1464, 1312, 1203, 1130, 1100, 1099, 1131, 1201, 1293, 1440, 1588, 1765, 1997, 2318, 2102, 1884, 1724, 1531, 1390, 1285, 1207, 1165, 1165, 1203, 1264, 1356, 1498, 1654, 1833, 2025, 2399, 2171, 1961, 1791, 1597, 1466, 1359, 1286, 1257, 1243, 1293, 1342, 1430, 1563, 1735, 1907, 2127, 2431, 2204, 2023, 1856, 1677, 1568, 1449, 1387, 1350, 1327, 1382, 1433, 1527, 1678, 1813, 1949, 2134, 2435, 2325, 2146, 1963, 1803, 1664, 1580, 1496, 1476, 1464, 1488, 1565, 1655, 1753, 1929, 2052, 2272, 2511, 2436, 2222, 2086, 1925, 1818, 1706, 1634, 1610, 1617, 1635, 1694, 1769, 1891, 2006, 2176, 2318]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2543, 2465, 2286, 2123, 1991, 1895, 1802, 1716, 1679, 1675, 1710, 1796, 1875, 1947, 2104, 2258, 2376, 2540, 2333, 2202, 2033, 1858, 1743, 1653, 1571, 1555, 1516, 1567, 1622, 1719, 1832, 1986, 2138, 2295, 2468, 2281, 2071, 1920, 1742, 1605, 1499, 1432, 1392, 1405, 1431, 1507, 1562, 1714, 1864, 2018, 2200, 2337, 2159, 1983, 1785, 1647, 1489, 1403, 1317, 1288, 1309, 1327, 1380, 1471, 1627, 1755, 1930, 2112, 2279, 2088, 1888, 1711, 1523, 1392, 1301, 1210, 1187, 1189, 1238, 1292, 1390, 1514, 1667, 1826, 2083, 2259, 2044, 1802, 1642, 1475, 1321, 1221, 1148, 1123, 1118, 1149, 1213, 1321, 1453, 1603, 1768, 1979, 2228, 2005, 1757, 1584, 1403, 1283, 1166, 1093, 1066, 1080, 1089, 1171, 1259, 1385, 1561, 1760, 1940, 2191, 1969, 1718, 1514, 1359, 1228, 1125, 1066, 1025, 1035, 1062, 1128, 1226, 1348, 1517, 1705, 1919, 2110, 1960, 1709, 1528, 1348, 1215, 1120, 1054, 1024, 1028, 1056, 1108, 1215, 1361, 1488, 1711, 1904, 2141, 1938, 1720, 1525, 1357, 1206, 1115, 1054, 1028, 1034, 1060, 1118, 1214, 1359, 1520, 1688, 1896, 2189, 1945, 1748, 1549, 1385, 1238, 1139, 1076, 1048, 1053, 1079, 1144, 1230, 1372, 1522, 1716, 1924, 2186, 1979, 1777, 1586, 1417, 1267, 1186, 1127, 1090, 1077, 1120, 1163, 1264, 1411, 1559, 1744, 1943, 2200, 2031, 1819, 1658, 1460, 1349, 1238, 1169, 1140, 1139, 1192, 1249, 1341, 1472, 1608, 1806, 2000, 2281, 2080, 1895, 1694, 1555, 1401, 1316, 1257, 1223, 1212, 1261, 1326, 1401, 1544, 1708, 1868, 2044, 2295, 2155, 1982, 1788, 1615, 1512, 1418, 1364, 1308, 1304, 1346, 1401, 1503, 1623, 1783, 1943, 2090, 2369, 2227, 2068, 1887, 1742, 1620, 1518, 1454, 1444, 1429, 1477, 1527, 1618, 1731, 1863, 2037, 2174, 2439, 2328, 2118, 2012, 1909, 1737, 1674, 1583, 1564, 1564, 1610, 1638, 1732, 1842, 1964, 2094, 2248]
                                       }
                                   }, {
                                       "name":    "3264x2448_HZ_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4563, 4513, 4250, 3823, 3407, 3124, 2790, 2631, 2523, 2562, 2649, 2797, 3062, 3424, 3820, 4208, 4637, 4763, 4336, 3947, 3449, 3054, 2664, 2411, 2201, 2142, 2145, 2232, 2380, 2696, 3019, 3456, 3848, 4322, 4648, 4221, 3655, 3106, 2656, 2298, 2056, 1893, 1792, 1800, 1879, 2058, 2330, 2713, 3127, 3639, 4074, 4437, 3880, 3349, 2791, 2370, 2021, 1792, 1612, 1563, 1544, 1618, 1815, 2013, 2389, 2813, 3295, 3874, 4409, 3690, 3079, 2552, 2110, 1769, 1577, 1425, 1363, 1346, 1430, 1568, 1825, 2138, 2551, 3071, 3629, 4119, 3555, 2965, 2380, 1923, 1624, 1424, 1273, 1208, 1199, 1279, 1403, 1621, 1958, 2393, 2920, 3464, 3943, 3359, 2791, 2203, 1787, 1501, 1291, 1185, 1120, 1120, 1175, 1297, 1521, 1817, 2258, 2747, 3341, 3943, 3358, 2702, 2094, 1701, 1426, 1228, 1119, 1054, 1063, 1114, 1225, 1427, 1736, 2112, 2632, 3288, 3777, 3260, 2586, 2066, 1673, 1382, 1198, 1083, 1024, 1039, 1090, 1193, 1408, 1686, 2114, 2623, 3225, 3775, 3198, 2593, 2093, 1688, 1379, 1205, 1095, 1036, 1036, 1087, 1213, 1408, 1707, 2079, 2601, 3213, 3948, 3285, 2693, 2160, 1724, 1435, 1229, 1117, 1066, 1075, 1130, 1246, 1456, 1761, 2160, 2613, 3298, 3894, 3366, 2744, 2240, 1815, 1532, 1320, 1193, 1143, 1133, 1201, 1324, 1548, 1843, 2294, 2783, 3288, 3994, 3512, 2912, 2364, 1970, 1653, 1438, 1296, 1239, 1241, 1316, 1448, 1668, 2009, 2407, 2862, 3456, 4171, 3625, 3037, 2580, 2175, 1845, 1604, 1461, 1397, 1382, 1468, 1626, 1860, 2211, 2620, 3096, 3660, 4373, 3865, 3255, 2818, 2405, 2050, 1825, 1687, 1608, 1596, 1682, 1808, 2094, 2488, 2889, 3312, 3788, 4435, 4061, 3656, 3118, 2738, 2385, 2124, 1927, 1892, 1898, 1954, 2123, 2358, 2754, 3155, 3521, 3931, 4426, 4239, 3953, 3365, 3061, 2742, 2474, 2278, 2215, 2167, 2286, 2464, 2722, 3035, 3365, 3915, 4182]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3460, 3316, 2997, 2700, 2431, 2284, 2082, 2005, 1956, 1955, 1982, 2105, 2267, 2470, 2699, 2952, 3327, 3298, 3101, 2722, 2471, 2235, 2040, 1882, 1757, 1733, 1720, 1764, 1875, 2011, 2235, 2395, 2723, 3061, 3220, 2838, 2547, 2258, 2026, 1818, 1672, 1574, 1547, 1535, 1551, 1682, 1812, 2019, 2213, 2533, 2893, 3046, 2702, 2371, 2111, 1859, 1657, 1505, 1422, 1378, 1379, 1437, 1514, 1659, 1859, 2104, 2367, 2710, 2952, 2569, 2251, 1957, 1692, 1528, 1388, 1297, 1260, 1255, 1289, 1390, 1517, 1699, 1945, 2251, 2555, 2811, 2451, 2125, 1828, 1614, 1424, 1282, 1196, 1151, 1153, 1200, 1281, 1409, 1598, 1847, 2119, 2473, 2761, 2387, 2037, 1773, 1536, 1335, 1216, 1136, 1089, 1073, 1125, 1210, 1349, 1525, 1744, 2035, 2372, 2708, 2356, 1999, 1710, 1471, 1283, 1167, 1091, 1040, 1043, 1089, 1152, 1291, 1470, 1692, 1985, 2301, 2644, 2303, 1968, 1691, 1449, 1258, 1138, 1067, 1024, 1038, 1060, 1139, 1274, 1444, 1688, 1975, 2303, 2645, 2291, 1960, 1696, 1463, 1260, 1157, 1073, 1029, 1037, 1067, 1145, 1276, 1442, 1669, 1964, 2320, 2662, 2374, 2003, 1704, 1475, 1294, 1165, 1088, 1049, 1048, 1081, 1169, 1300, 1475, 1685, 1985, 2311, 2722, 2378, 2049, 1765, 1540, 1352, 1225, 1131, 1099, 1096, 1137, 1206, 1344, 1531, 1749, 2072, 2386, 2827, 2421, 2113, 1835, 1588, 1442, 1299, 1210, 1176, 1166, 1193, 1294, 1417, 1610, 1829, 2125, 2446, 2934, 2547, 2193, 1929, 1730, 1509, 1408, 1320, 1260, 1250, 1306, 1396, 1522, 1722, 1945, 2234, 2606, 2998, 2639, 2363, 2068, 1846, 1652, 1516, 1432, 1384, 1391, 1432, 1529, 1653, 1844, 2082, 2319, 2676, 3096, 2828, 2450, 2207, 1981, 1800, 1690, 1573, 1525, 1541, 1596, 1668, 1792, 1983, 2246, 2505, 2825, 3282, 3053, 2697, 2445, 2187, 1985, 1880, 1758, 1749, 1694, 1766, 1843, 1980, 2173, 2432, 2647, 3051]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3442, 3274, 3060, 2713, 2455, 2199, 2080, 1990, 1942, 1932, 1980, 2091, 2217, 2402, 2682, 2909, 3286, 3431, 3070, 2736, 2466, 2207, 1986, 1857, 1774, 1705, 1702, 1742, 1826, 1983, 2182, 2418, 2721, 3055, 3302, 2899, 2580, 2294, 2025, 1804, 1663, 1579, 1524, 1533, 1553, 1660, 1795, 2006, 2255, 2518, 2870, 3171, 2698, 2408, 2086, 1863, 1641, 1496, 1410, 1373, 1375, 1376, 1513, 1632, 1836, 2065, 2339, 2714, 2926, 2617, 2272, 1963, 1686, 1523, 1386, 1288, 1232, 1251, 1299, 1386, 1511, 1688, 1936, 2196, 2545, 2822, 2483, 2156, 1856, 1604, 1424, 1277, 1198, 1148, 1141, 1189, 1269, 1404, 1589, 1824, 2130, 2454, 2778, 2430, 2072, 1749, 1538, 1340, 1197, 1117, 1068, 1092, 1125, 1202, 1340, 1513, 1742, 2026, 2365, 2685, 2346, 2015, 1700, 1468, 1291, 1163, 1087, 1039, 1048, 1090, 1170, 1287, 1483, 1705, 2007, 2359, 2705, 2324, 1971, 1682, 1473, 1288, 1135, 1061, 1024, 1040, 1066, 1125, 1268, 1440, 1656, 1959, 2308, 2716, 2336, 1968, 1685, 1461, 1281, 1146, 1076, 1033, 1024, 1067, 1132, 1266, 1465, 1681, 1962, 2328, 2676, 2350, 2014, 1717, 1483, 1307, 1164, 1100, 1058, 1054, 1090, 1166, 1296, 1474, 1701, 2011, 2333, 2787, 2410, 2055, 1800, 1523, 1370, 1229, 1131, 1085, 1097, 1146, 1211, 1359, 1537, 1758, 2075, 2366, 2884, 2500, 2163, 1874, 1646, 1432, 1316, 1233, 1185, 1181, 1215, 1298, 1431, 1610, 1836, 2141, 2460, 2944, 2587, 2250, 1960, 1764, 1552, 1424, 1317, 1273, 1262, 1322, 1404, 1540, 1712, 1977, 2246, 2582, 3090, 2702, 2384, 2110, 1845, 1689, 1532, 1438, 1408, 1392, 1439, 1526, 1634, 1835, 2107, 2338, 2675, 3233, 2867, 2519, 2227, 2036, 1816, 1682, 1597, 1545, 1560, 1570, 1682, 1811, 2001, 2240, 2473, 2864, 3308, 3002, 2712, 2391, 2195, 2031, 1876, 1793, 1737, 1738, 1749, 1884, 2019, 2238, 2395, 2715, 2988]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3506, 3299, 2862, 2593, 2385, 2216, 2049, 1967, 1906, 1938, 1944, 2012, 2246, 2361, 2620, 2868, 3092, 3263, 2927, 2539, 2300, 2078, 1954, 1825, 1729, 1680, 1673, 1758, 1839, 1988, 2178, 2437, 2692, 3140, 3175, 2740, 2371, 2201, 1952, 1795, 1636, 1534, 1509, 1526, 1563, 1680, 1790, 1997, 2177, 2481, 2866, 2911, 2576, 2276, 1981, 1778, 1596, 1484, 1399, 1379, 1400, 1405, 1520, 1644, 1826, 2059, 2334, 2661, 2777, 2455, 2137, 1921, 1621, 1490, 1370, 1253, 1232, 1220, 1300, 1377, 1512, 1689, 1940, 2200, 2586, 2688, 2319, 2023, 1786, 1561, 1381, 1257, 1176, 1141, 1161, 1197, 1302, 1398, 1602, 1841, 2134, 2433, 2662, 2284, 1964, 1709, 1475, 1309, 1186, 1126, 1080, 1081, 1142, 1211, 1351, 1573, 1707, 2028, 2315, 2579, 2238, 1923, 1618, 1412, 1252, 1158, 1079, 1039, 1043, 1082, 1183, 1316, 1486, 1684, 1943, 2286, 2530, 2207, 1904, 1660, 1436, 1244, 1136, 1063, 1024, 1040, 1068, 1149, 1289, 1421, 1658, 1890, 2205, 2615, 2182, 1862, 1653, 1417, 1245, 1127, 1069, 1034, 1046, 1072, 1145, 1272, 1436, 1665, 1912, 2292, 2589, 2226, 1924, 1663, 1447, 1272, 1178, 1094, 1050, 1081, 1106, 1175, 1295, 1458, 1733, 1988, 2318, 2663, 2260, 2007, 1737, 1491, 1321, 1230, 1141, 1113, 1125, 1162, 1242, 1385, 1523, 1802, 2062, 2308, 2683, 2308, 2049, 1789, 1590, 1407, 1279, 1229, 1179, 1151, 1219, 1318, 1449, 1605, 1816, 2125, 2472, 2799, 2435, 2161, 1853, 1705, 1533, 1390, 1327, 1257, 1250, 1331, 1400, 1562, 1740, 1953, 2198, 2468, 2822, 2554, 2275, 2054, 1793, 1621, 1534, 1437, 1381, 1387, 1438, 1523, 1653, 1832, 2054, 2297, 2684, 2996, 2650, 2352, 2152, 1925, 1801, 1649, 1573, 1544, 1516, 1573, 1672, 1826, 1969, 2220, 2489, 2846, 3348, 2922, 2643, 2258, 2167, 1922, 1908, 1747, 1692, 1720, 1738, 1859, 1960, 2205, 2351, 2659, 2993]
                                       }
                                   }, {
                                       "name":    "3264x2448_HZ_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3501, 3629, 3552, 3304, 3027, 2832, 2570, 2445, 2354, 2384, 2447, 2550, 2737, 2979, 3215, 3402, 3553, 3745, 3576, 3384, 3058, 2780, 2477, 2273, 2095, 2045, 2044, 2112, 2225, 2470, 2697, 2987, 3200, 3424, 3738, 3554, 3203, 2815, 2471, 2181, 1977, 1834, 1742, 1747, 1813, 1963, 2182, 2477, 2766, 3093, 3308, 3640, 3334, 2991, 2576, 2243, 1948, 1748, 1584, 1539, 1519, 1584, 1757, 1919, 2223, 2538, 2861, 3208, 3667, 3219, 2793, 2389, 2024, 1726, 1554, 1412, 1353, 1336, 1413, 1537, 1762, 2019, 2338, 2709, 3058, 3475, 3136, 2717, 2252, 1863, 1597, 1412, 1268, 1205, 1196, 1272, 1386, 1581, 1870, 2218, 2606, 2956, 3358, 2992, 2580, 2101, 1742, 1484, 1286, 1183, 1119, 1119, 1172, 1287, 1492, 1749, 2111, 2476, 2877, 3372, 3002, 2510, 2007, 1665, 1414, 1225, 1119, 1054, 1063, 1113, 1219, 1406, 1678, 1988, 2387, 2845, 3243, 2923, 2410, 1983, 1640, 1372, 1196, 1083, 1024, 1039, 1089, 1188, 1388, 1634, 1991, 2382, 2798, 3237, 2866, 2414, 2006, 1653, 1368, 1202, 1095, 1036, 1036, 1086, 1207, 1388, 1652, 1958, 2361, 2785, 3362, 2929, 2494, 2062, 1683, 1420, 1225, 1116, 1066, 1074, 1128, 1238, 1431, 1698, 2025, 2363, 2843, 3296, 2978, 2525, 2125, 1762, 1509, 1311, 1190, 1141, 1131, 1196, 1310, 1513, 1765, 2132, 2492, 2817, 3343, 3072, 2649, 2221, 1895, 1617, 1421, 1287, 1233, 1234, 1304, 1424, 1617, 1904, 2215, 2537, 2923, 3436, 3128, 2727, 2391, 2066, 1785, 1570, 1440, 1380, 1365, 1442, 1582, 1781, 2067, 2374, 2700, 3044, 3532, 3272, 2872, 2567, 2249, 1955, 1763, 1642, 1570, 1557, 1631, 1736, 1973, 2283, 2569, 2834, 3094, 3506, 3364, 3149, 2781, 2507, 2230, 2015, 1846, 1816, 1819, 1862, 1997, 2178, 2475, 2744, 2948, 3139, 3405, 3425, 3319, 2931, 2736, 2503, 2294, 2133, 2081, 2035, 2129, 2264, 2451, 2662, 2858, 3183, 3235]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2729, 2735, 2570, 2389, 2207, 2109, 1950, 1892, 1851, 1847, 1863, 1955, 2069, 2202, 2336, 2464, 2636, 2679, 2625, 2395, 2238, 2072, 1924, 1797, 1691, 1671, 1657, 1691, 1778, 1878, 2040, 2131, 2333, 2506, 2668, 2459, 2285, 2085, 1912, 1745, 1622, 1537, 1513, 1500, 1510, 1621, 1723, 1880, 2009, 2218, 2424, 2574, 2381, 2164, 1979, 1780, 1611, 1477, 1403, 1362, 1362, 1413, 1478, 1599, 1757, 1938, 2110, 2316, 2529, 2296, 2080, 1858, 1639, 1499, 1373, 1288, 1253, 1248, 1278, 1369, 1478, 1627, 1817, 2034, 2219, 2439, 2215, 1985, 1752, 1574, 1406, 1274, 1193, 1149, 1150, 1195, 1269, 1383, 1544, 1742, 1938, 2171, 2413, 2172, 1916, 1708, 1506, 1324, 1212, 1135, 1089, 1072, 1123, 1203, 1330, 1482, 1658, 1876, 2102, 2379, 2153, 1888, 1654, 1447, 1275, 1165, 1091, 1040, 1043, 1088, 1148, 1277, 1434, 1616, 1838, 2051, 2330, 2110, 1862, 1638, 1427, 1251, 1137, 1067, 1024, 1038, 1060, 1136, 1261, 1411, 1613, 1832, 2055, 2328, 2098, 1853, 1642, 1440, 1253, 1155, 1073, 1029, 1037, 1066, 1141, 1263, 1408, 1595, 1821, 2067, 2334, 2162, 1886, 1645, 1449, 1284, 1162, 1087, 1049, 1048, 1080, 1164, 1284, 1436, 1606, 1834, 2053, 2368, 2154, 1918, 1695, 1505, 1337, 1219, 1129, 1098, 1095, 1134, 1198, 1323, 1483, 1656, 1899, 2102, 2432, 2174, 1961, 1749, 1543, 1418, 1287, 1204, 1172, 1161, 1186, 1278, 1386, 1548, 1717, 1930, 2134, 2488, 2256, 2013, 1819, 1663, 1473, 1386, 1306, 1249, 1239, 1290, 1369, 1475, 1637, 1803, 2003, 2236, 2502, 2302, 2133, 1922, 1753, 1594, 1478, 1404, 1361, 1366, 1401, 1482, 1582, 1729, 1900, 2049, 2261, 2532, 2414, 2175, 2016, 1852, 1711, 1624, 1524, 1481, 1494, 1539, 1594, 1688, 1828, 2011, 2165, 2335, 2605, 2539, 2335, 2182, 2001, 1851, 1773, 1673, 1667, 1617, 1674, 1729, 1827, 1960, 2127, 2236, 2443]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2717, 2704, 2619, 2400, 2227, 2035, 1949, 1878, 1839, 1827, 1861, 1942, 2027, 2147, 2323, 2432, 2607, 2776, 2601, 2406, 2234, 2047, 1876, 1774, 1706, 1646, 1641, 1671, 1734, 1854, 1995, 2149, 2332, 2502, 2730, 2508, 2313, 2116, 1912, 1732, 1614, 1541, 1492, 1499, 1512, 1601, 1708, 1869, 2044, 2206, 2406, 2669, 2378, 2195, 1957, 1784, 1596, 1469, 1391, 1357, 1358, 1356, 1477, 1574, 1737, 1905, 2088, 2319, 2509, 2335, 2098, 1863, 1634, 1494, 1371, 1279, 1226, 1244, 1287, 1365, 1472, 1617, 1809, 1989, 2211, 2448, 2242, 2012, 1777, 1565, 1406, 1270, 1195, 1146, 1139, 1184, 1258, 1379, 1536, 1722, 1947, 2156, 2427, 2209, 1947, 1687, 1508, 1329, 1193, 1116, 1068, 1091, 1123, 1196, 1322, 1471, 1656, 1868, 2096, 2360, 2144, 1902, 1645, 1444, 1283, 1161, 1087, 1039, 1048, 1089, 1165, 1273, 1446, 1627, 1857, 2098, 2379, 2128, 1864, 1630, 1450, 1280, 1134, 1061, 1024, 1040, 1065, 1122, 1255, 1407, 1585, 1818, 2059, 2385, 2136, 1860, 1631, 1438, 1273, 1144, 1076, 1033, 1024, 1066, 1129, 1253, 1429, 1606, 1819, 2073, 2345, 2141, 1896, 1657, 1456, 1297, 1161, 1099, 1058, 1054, 1089, 1161, 1280, 1435, 1620, 1856, 2071, 2420, 2181, 1923, 1727, 1490, 1354, 1223, 1129, 1084, 1096, 1142, 1203, 1337, 1488, 1664, 1901, 2087, 2476, 2239, 2004, 1783, 1597, 1409, 1304, 1226, 1180, 1176, 1207, 1282, 1399, 1548, 1723, 1944, 2145, 2495, 2288, 2061, 1846, 1694, 1513, 1401, 1303, 1262, 1250, 1305, 1376, 1491, 1628, 1830, 2012, 2218, 2571, 2352, 2150, 1958, 1752, 1628, 1493, 1410, 1383, 1367, 1407, 1480, 1565, 1722, 1921, 2064, 2260, 2631, 2444, 2231, 2033, 1899, 1726, 1617, 1545, 1500, 1512, 1516, 1607, 1705, 1844, 2006, 2141, 2363, 2623, 2501, 2347, 2138, 2008, 1891, 1770, 1704, 1657, 1656, 1659, 1764, 1860, 2013, 2098, 2287, 2399]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2761, 2723, 2464, 2302, 2168, 2050, 1921, 1858, 1807, 1832, 1830, 1874, 2051, 2113, 2274, 2401, 2472, 2653, 2491, 2247, 2094, 1936, 1848, 1746, 1665, 1623, 1615, 1685, 1746, 1858, 1992, 2165, 2309, 2564, 2635, 2382, 2140, 2036, 1847, 1724, 1589, 1499, 1478, 1492, 1522, 1620, 1703, 1861, 1979, 2177, 2403, 2470, 2279, 2083, 1865, 1707, 1554, 1457, 1381, 1363, 1382, 1383, 1484, 1585, 1728, 1900, 2083, 2279, 2393, 2202, 1982, 1825, 1574, 1463, 1356, 1246, 1226, 1214, 1288, 1357, 1473, 1618, 1813, 1992, 2243, 2342, 2105, 1896, 1714, 1525, 1365, 1250, 1173, 1139, 1158, 1192, 1289, 1373, 1547, 1737, 1950, 2140, 2334, 2086, 1852, 1650, 1449, 1299, 1183, 1125, 1080, 1080, 1140, 1204, 1332, 1526, 1626, 1870, 2056, 2275, 2053, 1820, 1570, 1391, 1245, 1156, 1079, 1039, 1043, 1081, 1178, 1301, 1449, 1609, 1803, 2039, 2238, 2029, 1805, 1610, 1415, 1238, 1135, 1063, 1024, 1040, 1067, 1145, 1275, 1390, 1587, 1759, 1976, 2304, 2005, 1766, 1602, 1396, 1238, 1125, 1069, 1034, 1046, 1071, 1141, 1259, 1403, 1592, 1777, 2044, 2276, 2037, 1817, 1608, 1422, 1263, 1175, 1093, 1050, 1080, 1104, 1170, 1279, 1421, 1648, 1836, 2059, 2322, 2055, 1882, 1669, 1460, 1308, 1224, 1139, 1112, 1123, 1158, 1232, 1361, 1476, 1703, 1890, 2041, 2319, 2081, 1906, 1707, 1545, 1385, 1268, 1222, 1174, 1147, 1211, 1301, 1415, 1543, 1706, 1930, 2154, 2384, 2165, 1986, 1752, 1641, 1496, 1369, 1312, 1246, 1239, 1313, 1372, 1511, 1653, 1810, 1973, 2131, 2370, 2235, 2060, 1910, 1706, 1566, 1495, 1409, 1358, 1362, 1406, 1477, 1582, 1719, 1877, 2031, 2267, 2459, 2277, 2096, 1970, 1803, 1712, 1587, 1524, 1499, 1472, 1519, 1598, 1718, 1817, 1990, 2153, 2350, 2651, 2441, 2292, 2029, 1985, 1797, 1798, 1663, 1617, 1640, 1649, 1743, 1811, 1986, 2064, 2245, 2402]
                                       }
                                   }, {
                                       "name":    "3264x2448_TL84_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3850, 3958, 3607, 3270, 2946, 2559, 2317, 2200, 2094, 2149, 2172, 2349, 2604, 2803, 3175, 3470, 3709, 3941, 3733, 3322, 2982, 2575, 2251, 2010, 1843, 1788, 1793, 1859, 2013, 2220, 2551, 2852, 3300, 3562, 3856, 3562, 3087, 2675, 2270, 1925, 1735, 1596, 1545, 1552, 1590, 1759, 1964, 2259, 2650, 3085, 3438, 3863, 3399, 2861, 2364, 2004, 1713, 1538, 1426, 1363, 1353, 1417, 1541, 1703, 1989, 2329, 2792, 3259, 3696, 3146, 2615, 2172, 1815, 1541, 1380, 1286, 1234, 1217, 1269, 1360, 1540, 1822, 2162, 2602, 3095, 3571, 2999, 2506, 2031, 1644, 1426, 1262, 1184, 1129, 1132, 1165, 1255, 1413, 1645, 2005, 2424, 2938, 3485, 2904, 2360, 1909, 1561, 1340, 1206, 1123, 1081, 1090, 1098, 1197, 1319, 1555, 1909, 2347, 2817, 3417, 2801, 2256, 1832, 1501, 1271, 1162, 1071, 1045, 1050, 1081, 1135, 1292, 1516, 1826, 2271, 2731, 3366, 2764, 2222, 1825, 1482, 1255, 1125, 1060, 1034, 1030, 1057, 1120, 1265, 1467, 1777, 2200, 2756, 3364, 2865, 2242, 1817, 1489, 1263, 1146, 1058, 1024, 1037, 1058, 1125, 1274, 1487, 1810, 2219, 2784, 3322, 2811, 2305, 1865, 1518, 1308, 1159, 1086, 1050, 1050, 1077, 1163, 1309, 1509, 1803, 2276, 2784, 3496, 2956, 2404, 1903, 1609, 1363, 1215, 1138, 1079, 1082, 1121, 1210, 1355, 1600, 1929, 2357, 2847, 3623, 3078, 2533, 2052, 1709, 1472, 1293, 1211, 1164, 1146, 1210, 1290, 1475, 1712, 2098, 2478, 3025, 3729, 3243, 2714, 2220, 1886, 1618, 1445, 1313, 1259, 1247, 1323, 1411, 1597, 1874, 2245, 2627, 3111, 3821, 3381, 2991, 2498, 2071, 1805, 1613, 1482, 1416, 1411, 1481, 1609, 1811, 2074, 2470, 2856, 3251, 3904, 3586, 3172, 2743, 2380, 2053, 1848, 1727, 1647, 1642, 1682, 1844, 2049, 2342, 2705, 3111, 3409, 4000, 3711, 3387, 3045, 2709, 2355, 2173, 1994, 1931, 1925, 1972, 2131, 2390, 2572, 2865, 3317, 3630]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3212, 3132, 2792, 2510, 2290, 2132, 1946, 1887, 1809, 1815, 1858, 1934, 2086, 2264, 2510, 2758, 3006, 3222, 2900, 2578, 2345, 2083, 1910, 1770, 1636, 1621, 1602, 1648, 1761, 1869, 2050, 2279, 2557, 2898, 3063, 2765, 2396, 2115, 1892, 1708, 1597, 1485, 1453, 1432, 1480, 1568, 1698, 1876, 2073, 2385, 2678, 2947, 2564, 2273, 1985, 1753, 1566, 1426, 1332, 1313, 1294, 1345, 1429, 1541, 1723, 1941, 2201, 2550, 2836, 2459, 2124, 1850, 1605, 1431, 1325, 1239, 1196, 1194, 1224, 1303, 1427, 1608, 1830, 2073, 2396, 2717, 2359, 2044, 1758, 1525, 1355, 1257, 1157, 1121, 1114, 1156, 1213, 1322, 1506, 1716, 1987, 2335, 2633, 2322, 1980, 1692, 1463, 1277, 1185, 1099, 1071, 1064, 1091, 1162, 1277, 1432, 1648, 1929, 2305, 2616, 2234, 1928, 1640, 1427, 1251, 1139, 1070, 1035, 1028, 1073, 1123, 1239, 1406, 1591, 1870, 2180, 2606, 2237, 1894, 1615, 1395, 1232, 1117, 1051, 1024, 1028, 1055, 1099, 1212, 1375, 1598, 1843, 2186, 2538, 2218, 1898, 1612, 1409, 1238, 1136, 1069, 1034, 1024, 1061, 1105, 1225, 1385, 1599, 1872, 2178, 2594, 2252, 1946, 1652, 1444, 1258, 1154, 1080, 1047, 1049, 1087, 1125, 1253, 1412, 1634, 1877, 2199, 2644, 2306, 1973, 1705, 1490, 1317, 1191, 1117, 1086, 1075, 1118, 1177, 1301, 1466, 1660, 1973, 2286, 2776, 2402, 2075, 1767, 1558, 1382, 1272, 1190, 1141, 1154, 1175, 1259, 1364, 1547, 1750, 2018, 2320, 2824, 2503, 2159, 1905, 1661, 1494, 1367, 1267, 1236, 1233, 1277, 1350, 1478, 1652, 1856, 2142, 2424, 2979, 2580, 2297, 2036, 1785, 1599, 1483, 1387, 1334, 1333, 1388, 1463, 1569, 1760, 1962, 2241, 2557, 3050, 2709, 2444, 2159, 1951, 1759, 1635, 1540, 1486, 1478, 1523, 1615, 1741, 1889, 2101, 2368, 2660, 3156, 2934, 2578, 2355, 2140, 1959, 1831, 1727, 1684, 1654, 1688, 1811, 1917, 2083, 2286, 2552, 2883]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3284, 3129, 2802, 2558, 2284, 2103, 2002, 1918, 1835, 1798, 1858, 1948, 2107, 2271, 2499, 2747, 3060, 3233, 2916, 2633, 2342, 2093, 1908, 1762, 1674, 1611, 1603, 1661, 1745, 1886, 2059, 2309, 2543, 2936, 3128, 2736, 2442, 2151, 1908, 1730, 1589, 1503, 1456, 1428, 1488, 1547, 1719, 1897, 2133, 2382, 2709, 2949, 2548, 2275, 1999, 1757, 1580, 1429, 1362, 1311, 1305, 1338, 1433, 1550, 1724, 1952, 2243, 2579, 2854, 2497, 2158, 1851, 1619, 1450, 1318, 1235, 1209, 1197, 1232, 1319, 1436, 1613, 1845, 2098, 2429, 2706, 2347, 2051, 1775, 1537, 1369, 1232, 1166, 1123, 1115, 1157, 1223, 1336, 1524, 1740, 2032, 2376, 2644, 2301, 1975, 1694, 1466, 1296, 1167, 1098, 1073, 1072, 1094, 1158, 1284, 1441, 1661, 1938, 2298, 2616, 2282, 1932, 1671, 1433, 1265, 1137, 1076, 1040, 1037, 1072, 1129, 1248, 1414, 1628, 1888, 2243, 2588, 2257, 1913, 1625, 1409, 1249, 1134, 1065, 1024, 1025, 1044, 1106, 1216, 1384, 1588, 1872, 2213, 2591, 2240, 1926, 1637, 1420, 1244, 1134, 1062, 1028, 1024, 1060, 1122, 1234, 1394, 1589, 1887, 2242, 2658, 2268, 1951, 1686, 1450, 1275, 1152, 1099, 1066, 1055, 1078, 1136, 1258, 1430, 1640, 1929, 2235, 2727, 2310, 2018, 1736, 1508, 1335, 1202, 1130, 1097, 1094, 1130, 1189, 1308, 1474, 1693, 1987, 2299, 2773, 2386, 2110, 1797, 1579, 1414, 1292, 1212, 1160, 1165, 1187, 1266, 1383, 1550, 1766, 2064, 2376, 2867, 2526, 2197, 1927, 1705, 1515, 1381, 1286, 1249, 1234, 1284, 1351, 1465, 1656, 1904, 2164, 2464, 2996, 2628, 2348, 2062, 1801, 1641, 1498, 1405, 1379, 1371, 1407, 1495, 1581, 1782, 2002, 2288, 2557, 3134, 2780, 2458, 2207, 1969, 1801, 1647, 1551, 1518, 1513, 1559, 1612, 1757, 1917, 2126, 2425, 2753, 3264, 2969, 2630, 2412, 2148, 1994, 1852, 1740, 1722, 1702, 1735, 1804, 1963, 2108, 2329, 2598, 2920]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3177, 3078, 2735, 2521, 2255, 2089, 1975, 1861, 1806, 1837, 1871, 1952, 2127, 2256, 2518, 2764, 3023, 3127, 2925, 2525, 2293, 2071, 1869, 1734, 1671, 1626, 1618, 1656, 1736, 1888, 2047, 2282, 2527, 2886, 3041, 2605, 2384, 2088, 1874, 1700, 1569, 1485, 1431, 1426, 1494, 1592, 1732, 1904, 2100, 2401, 2753, 2878, 2541, 2204, 1921, 1738, 1573, 1435, 1356, 1324, 1318, 1361, 1451, 1556, 1740, 1940, 2261, 2530, 2771, 2348, 2077, 1835, 1614, 1426, 1326, 1228, 1209, 1185, 1255, 1316, 1449, 1649, 1823, 2072, 2458, 2638, 2325, 1973, 1714, 1491, 1357, 1237, 1164, 1129, 1142, 1161, 1227, 1367, 1546, 1716, 1981, 2266, 2556, 2277, 1902, 1678, 1437, 1278, 1173, 1116, 1066, 1080, 1117, 1182, 1286, 1481, 1673, 1964, 2244, 2497, 2193, 1866, 1605, 1387, 1237, 1138, 1070, 1037, 1049, 1083, 1141, 1281, 1428, 1607, 1889, 2246, 2443, 2183, 1864, 1621, 1387, 1229, 1110, 1058, 1035, 1043, 1058, 1120, 1242, 1391, 1612, 1874, 2211, 2471, 2192, 1836, 1603, 1389, 1233, 1123, 1061, 1024, 1042, 1069, 1113, 1269, 1381, 1624, 1863, 2184, 2535, 2206, 1901, 1630, 1413, 1276, 1162, 1101, 1054, 1053, 1081, 1147, 1268, 1408, 1633, 1906, 2210, 2615, 2268, 1935, 1663, 1484, 1318, 1197, 1128, 1106, 1091, 1133, 1198, 1317, 1476, 1657, 1954, 2294, 2672, 2336, 2019, 1774, 1555, 1395, 1275, 1200, 1154, 1157, 1178, 1276, 1409, 1538, 1745, 2010, 2312, 2756, 2447, 2112, 1849, 1658, 1484, 1365, 1283, 1231, 1232, 1284, 1383, 1490, 1667, 1861, 2161, 2481, 2887, 2522, 2253, 1983, 1787, 1607, 1497, 1407, 1353, 1344, 1399, 1513, 1595, 1799, 1993, 2264, 2613, 2981, 2771, 2401, 2088, 1895, 1743, 1627, 1532, 1528, 1496, 1543, 1632, 1740, 1952, 2162, 2412, 2690, 3089, 2914, 2505, 2322, 2086, 1924, 1807, 1730, 1692, 1675, 1733, 1775, 1929, 2087, 2323, 2557, 2880]
                                       }
                                   }, {
                                       "name":    "3264x2448_TL84_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3002, 3215, 3048, 2854, 2639, 2345, 2156, 2064, 1974, 2019, 2029, 2165, 2352, 2473, 2709, 2850, 2904, 3147, 3112, 2879, 2666, 2366, 2111, 1912, 1769, 1721, 1724, 1776, 1900, 2059, 2305, 2500, 2778, 2871, 3145, 3032, 2733, 2444, 2129, 1842, 1680, 1557, 1511, 1516, 1546, 1691, 1857, 2086, 2371, 2655, 2832, 3200, 2945, 2578, 2201, 1911, 1663, 1508, 1407, 1348, 1337, 1394, 1503, 1639, 1872, 2128, 2454, 2737, 3110, 2771, 2394, 2050, 1752, 1511, 1365, 1278, 1228, 1211, 1259, 1341, 1499, 1737, 2004, 2323, 2641, 3041, 2672, 2317, 1936, 1602, 1408, 1255, 1181, 1127, 1130, 1161, 1245, 1387, 1586, 1880, 2192, 2539, 2992, 2608, 2201, 1833, 1530, 1329, 1202, 1122, 1081, 1089, 1096, 1191, 1302, 1509, 1803, 2139, 2458, 2949, 2530, 2115, 1767, 1476, 1263, 1160, 1071, 1045, 1050, 1080, 1132, 1278, 1476, 1734, 2081, 2397, 2912, 2502, 2087, 1762, 1459, 1248, 1124, 1060, 1034, 1030, 1057, 1117, 1253, 1432, 1692, 2023, 2420, 2907, 2584, 2103, 1753, 1464, 1256, 1144, 1058, 1024, 1037, 1057, 1122, 1261, 1450, 1720, 2037, 2440, 2862, 2530, 2152, 1793, 1489, 1298, 1156, 1085, 1050, 1050, 1076, 1158, 1292, 1467, 1710, 2079, 2432, 2981, 2636, 2228, 1820, 1570, 1348, 1209, 1136, 1078, 1081, 1118, 1202, 1333, 1545, 1814, 2136, 2467, 3053, 2715, 2323, 1942, 1655, 1446, 1282, 1205, 1160, 1142, 1202, 1275, 1439, 1639, 1949, 2221, 2586, 3097, 2819, 2454, 2074, 1804, 1574, 1421, 1299, 1248, 1236, 1306, 1383, 1543, 1771, 2057, 2320, 2623, 3119, 2889, 2653, 2292, 1952, 1733, 1568, 1451, 1391, 1385, 1446, 1555, 1722, 1927, 2222, 2474, 2692, 3120, 2998, 2758, 2466, 2197, 1935, 1766, 1664, 1593, 1586, 1617, 1750, 1911, 2130, 2381, 2632, 2760, 3107, 3030, 2875, 2670, 2440, 2170, 2030, 1882, 1829, 1821, 1854, 1977, 2172, 2285, 2466, 2736, 2848]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2556, 2598, 2409, 2235, 2088, 1978, 1831, 1787, 1721, 1724, 1754, 1807, 1917, 2034, 2188, 2319, 2411, 2623, 2470, 2279, 2132, 1940, 1809, 1696, 1581, 1569, 1550, 1586, 1677, 1755, 1885, 2037, 2205, 2388, 2551, 2402, 2160, 1962, 1794, 1645, 1553, 1454, 1425, 1404, 1445, 1518, 1622, 1757, 1893, 2101, 2263, 2498, 2270, 2081, 1868, 1684, 1526, 1403, 1317, 1300, 1281, 1326, 1399, 1492, 1638, 1800, 1976, 2194, 2439, 2205, 1971, 1762, 1559, 1408, 1312, 1232, 1191, 1189, 1216, 1287, 1395, 1546, 1718, 1888, 2095, 2364, 2138, 1914, 1689, 1491, 1340, 1250, 1154, 1119, 1112, 1152, 1204, 1302, 1460, 1628, 1828, 2062, 2311, 2118, 1866, 1634, 1437, 1268, 1182, 1098, 1071, 1064, 1090, 1157, 1262, 1397, 1574, 1787, 2048, 2305, 2049, 1825, 1590, 1406, 1244, 1137, 1070, 1035, 1028, 1072, 1120, 1228, 1375, 1526, 1741, 1954, 2299, 2054, 1796, 1568, 1376, 1226, 1116, 1051, 1024, 1028, 1055, 1097, 1202, 1347, 1533, 1719, 1961, 2242, 2036, 1798, 1564, 1389, 1231, 1134, 1069, 1034, 1024, 1060, 1102, 1214, 1356, 1533, 1743, 1952, 2280, 2059, 1836, 1598, 1419, 1250, 1151, 1079, 1047, 1049, 1086, 1121, 1240, 1379, 1561, 1743, 1964, 2307, 2094, 1852, 1641, 1459, 1304, 1186, 1115, 1085, 1074, 1115, 1170, 1282, 1424, 1579, 1816, 2023, 2392, 2158, 1929, 1688, 1516, 1361, 1262, 1185, 1138, 1150, 1169, 1245, 1337, 1491, 1649, 1842, 2036, 2404, 2220, 1984, 1798, 1601, 1460, 1347, 1255, 1226, 1223, 1262, 1326, 1435, 1576, 1728, 1928, 2097, 2488, 2255, 2078, 1894, 1699, 1546, 1448, 1362, 1314, 1312, 1360, 1423, 1507, 1657, 1801, 1987, 2172, 2498, 2323, 2170, 1976, 1826, 1675, 1574, 1493, 1446, 1437, 1473, 1547, 1644, 1750, 1894, 2060, 2214, 2516, 2450, 2242, 2108, 1962, 1829, 1731, 1646, 1610, 1581, 1605, 1701, 1775, 1887, 2013, 2165, 2325]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2606, 2596, 2417, 2274, 2083, 1953, 1880, 1815, 1744, 1709, 1754, 1819, 1934, 2040, 2180, 2311, 2449, 2631, 2482, 2323, 2130, 1949, 1807, 1689, 1615, 1560, 1551, 1598, 1663, 1770, 1892, 2061, 2195, 2415, 2600, 2379, 2198, 1993, 1808, 1665, 1546, 1471, 1428, 1401, 1452, 1499, 1640, 1775, 1942, 2099, 2286, 2499, 2257, 2082, 1880, 1688, 1539, 1406, 1346, 1298, 1291, 1320, 1403, 1500, 1639, 1809, 2010, 2216, 2453, 2237, 2000, 1763, 1572, 1425, 1306, 1228, 1204, 1191, 1223, 1302, 1403, 1550, 1731, 1908, 2121, 2356, 2128, 1920, 1704, 1503, 1353, 1226, 1163, 1121, 1113, 1153, 1214, 1315, 1477, 1649, 1865, 2094, 2320, 2100, 1862, 1636, 1440, 1286, 1164, 1097, 1073, 1071, 1093, 1153, 1269, 1405, 1585, 1794, 2043, 2305, 2090, 1828, 1619, 1411, 1258, 1135, 1076, 1040, 1037, 1071, 1126, 1236, 1382, 1559, 1756, 2005, 2285, 2071, 1813, 1577, 1389, 1242, 1133, 1065, 1024, 1025, 1044, 1104, 1206, 1355, 1525, 1744, 1982, 2285, 2055, 1823, 1587, 1399, 1237, 1132, 1062, 1028, 1024, 1059, 1119, 1223, 1364, 1524, 1755, 2004, 2331, 2072, 1840, 1629, 1425, 1266, 1149, 1098, 1066, 1055, 1077, 1132, 1244, 1395, 1567, 1787, 1992, 2372, 2097, 1891, 1669, 1476, 1321, 1197, 1128, 1096, 1093, 1127, 1182, 1289, 1431, 1608, 1828, 2034, 2389, 2145, 1959, 1715, 1535, 1392, 1281, 1206, 1156, 1160, 1180, 1252, 1355, 1494, 1663, 1880, 2079, 2436, 2239, 2016, 1817, 1641, 1479, 1360, 1273, 1239, 1224, 1269, 1327, 1423, 1579, 1769, 1946, 2128, 2501, 2293, 2121, 1917, 1713, 1584, 1462, 1379, 1356, 1348, 1378, 1452, 1518, 1676, 1834, 2024, 2172, 2559, 2377, 2182, 2016, 1841, 1712, 1585, 1504, 1475, 1469, 1506, 1545, 1658, 1773, 1914, 2104, 2282, 2592, 2476, 2282, 2155, 1969, 1859, 1749, 1657, 1643, 1624, 1647, 1695, 1813, 1907, 2046, 2199, 2351]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2531, 2558, 2365, 2244, 2059, 1941, 1857, 1764, 1718, 1743, 1766, 1823, 1951, 2028, 2195, 2323, 2423, 2554, 2489, 2236, 2088, 1930, 1772, 1664, 1613, 1574, 1564, 1593, 1655, 1771, 1882, 2040, 2182, 2379, 2534, 2275, 2150, 1939, 1778, 1638, 1527, 1454, 1405, 1399, 1458, 1540, 1652, 1781, 1915, 2114, 2319, 2445, 2251, 2022, 1812, 1670, 1533, 1411, 1340, 1310, 1304, 1342, 1420, 1506, 1653, 1799, 2024, 2178, 2388, 2114, 1930, 1749, 1567, 1403, 1313, 1221, 1204, 1180, 1245, 1299, 1415, 1582, 1712, 1887, 2143, 2302, 2110, 1852, 1649, 1460, 1342, 1231, 1161, 1127, 1140, 1157, 1218, 1344, 1497, 1628, 1823, 2007, 2249, 2080, 1797, 1622, 1413, 1269, 1170, 1115, 1066, 1079, 1115, 1176, 1271, 1442, 1596, 1816, 2000, 2209, 2015, 1770, 1558, 1368, 1230, 1136, 1070, 1037, 1049, 1082, 1137, 1267, 1395, 1540, 1757, 2007, 2168, 2008, 1769, 1574, 1368, 1223, 1109, 1058, 1035, 1043, 1058, 1117, 1231, 1362, 1546, 1746, 1981, 2188, 2014, 1743, 1556, 1370, 1227, 1122, 1061, 1024, 1042, 1068, 1110, 1256, 1352, 1555, 1735, 1957, 2232, 2020, 1796, 1578, 1390, 1267, 1159, 1100, 1054, 1053, 1080, 1143, 1254, 1375, 1560, 1767, 1972, 2284, 2062, 1819, 1602, 1453, 1305, 1192, 1126, 1105, 1090, 1130, 1190, 1297, 1433, 1576, 1800, 2030, 2311, 2104, 1881, 1694, 1513, 1374, 1264, 1194, 1150, 1153, 1172, 1261, 1378, 1483, 1645, 1836, 2030, 2351, 2175, 1945, 1749, 1598, 1450, 1345, 1270, 1222, 1222, 1269, 1357, 1446, 1589, 1732, 1944, 2141, 2419, 2209, 2042, 1849, 1701, 1553, 1461, 1381, 1332, 1322, 1370, 1468, 1530, 1691, 1827, 2005, 2214, 2448, 2370, 2136, 1917, 1777, 1661, 1567, 1486, 1484, 1453, 1492, 1563, 1643, 1802, 1943, 2094, 2236, 2470, 2435, 2184, 2081, 1917, 1799, 1710, 1648, 1617, 1600, 1645, 1670, 1785, 1890, 2042, 2169, 2323]
                                       }
                                   }, {
                                       "name":    "3264x2448_GRAY_0",
                                       "resolution":    "3264x2448",
                                       "illumination":    "GRAY",
                                       "vignetting":    0,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       }
                                   }],
                               "tableAll_len":    15
                           }
                       },
                       "colorAsGrey":    {
                           "param":    {
                               "enable":    0
                           }
                       },
                       "lumaDetect":    {
                           "luma_detect_en":    1,
                           "fixed_times":    0,
                           "mutation_threshold":    0.0002,
                           "mutation_threshold_level2":    1000
                       },
                       "aldch":    {
                           "param":    {
                               "ldch_en":    0,
                               "meshfile":    "LDCH_mesh_2688_1520_os04a10_4IR",
                               "correct_level":    255,
                               "correct_level_max":    255,
                               "light_center":    [1351.12, 739.486],
                               "coefficient":    [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
                           }
                       },
                       "ccm_calib":    {
                           "control":    {
                               "enable":    1,
                               "mode":    "CALIB_CCM_MODE_AUTO",
                               "wbgain_tolerance":    0.1,
                               "gain_tolerance":    0.2
                           },
                           "lumaCCM":    {
                               "rgb2y_para":    [38, 75, 15],
                               "low_bound_pos_bit":    8,
                               "y_alpha_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
                               "gain_alphaScale_curve":    {
                                   "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                   "scale":    [1, 1, 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.393, 2.3563],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.7874, 2.0369],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.955, 1.7347],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [2.2893, 1.3713],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [2.4091, 1.2636],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [1.1401, 2.7193],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.6084, 2.0471],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 74]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5402, -0.3906, -0.1497, -0.3602, 1.5985, -0.2383, -0.045, -1.1447, 2.1897],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.2093, -0.1222, -0.0871, -0.1832, 1.3371, -0.1539, 0.0373, -0.5285, 1.4912],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0018, -0.9379, -0.0639, -0.3269, 1.5254, -0.1985, -0.0179, -0.7688, 1.7867],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4846, -0.4654, -0.0192, -0.1605, 1.2433, -0.0827, 0.1437, -0.405, 1.2613],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0383, -1.0427, 0.0044, -0.2404, 1.4647, -0.2243, 0.0355, -0.6455, 1.61],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4824, -0.5124, 0.0301, -0.0835, 1.194, -0.1105, 0.187, -0.4098, 1.2229],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8035, -0.7915, -0.012, -0.2238, 1.5896, -0.3659, 0.0228, -0.4854, 1.4626],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.3426, -0.293, -0.0496, -0.0628, 1.3455, -0.2827, 0.1672, -0.296, 1.1289],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [1.893, -0.8702, -0.0228, -0.2244, 1.6052, -0.3808, 0.0095, -0.5457, 1.5362],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4234, -0.3844, -0.039, -0.0561, 1.3565, -0.3004, 0.1619, -0.2749, 1.1131],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.3399, -0.2452, -0.0947, -0.3699, 1.5924, -0.2225, -0.142, -1.4917, 2.6437],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1378, -0.06, -0.0779, -0.2343, 1.3232, -0.0889, -0.0227, -0.6746, 1.6973],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.805, -0.6854, -0.1196, -0.3244, 1.442, -0.1176, -0.0339, -0.7466, 1.7805],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.3186, -0.251, -0.0676, -0.1466, 1.2981, -0.1515, 0.1248, -0.4587, 1.334],
                                       "ccOffsets":    [0, 0, 0]
                                   }],
                               "matrixAll_len":    14
                           }
                       },
                       "lut3d_calib":    {
                           "common":    {
                               "enable":    0,
                               "mode":    "CALIB_Lut3D_MODE_AUTO",
                               "gain_tolerance":    0.1,
                               "wbgain_tolerance":    1
                           },
                           "MLut3D":    {
                               "Table":    {
                                   "look_up_table_r":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_g":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               }
                           },
                           "ALut3D":    {
                               "damp_en":    1,
                               "lutAll":    [{
                                       "name":    "Normal",
                                       "awbGain":    [1, 1],
                                       "gain_alpha":    {
                                           "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                           "alpha":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "Table":    {
                                           "look_up_table_r":    [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
                                           "look_up_table_g":    [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
                                           "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                       }
                                   }],
                               "lutAll_len":    1
                           }
                       },
                       "af":    {
                           "TuningPara":    {
                               "af_mode":    "CalibDbV2_AF_MODE_NOT_SET",
                               "win_h_offs":    0,
                               "win_v_offs":    0,
                               "win_h_size":    0,
                               "win_v_size":    0,
                               "fixed_mode":    {
                                   "code":    8
                               },
                               "macro_mode":    {
                                   "code":    32
                               },
                               "infinity_mode":    {
                                   "code":    32
                               },
                               "contrast_af":    {
                                   "enable":    1,
                                   "Afss":    "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
                                   "FullDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "FullSteps":    9,
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptiveSteps":    9,
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "TrigThers":    0.1,
                                   "LumaTrigThers":    0,
                                   "StableThers":    0.03,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    200,
                                   "OutFocusPos":    64,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "FlatValue":    0
                               },
                               "laser_af":    {
                                   "enable":    0,
                                   "vcmDot":    [0, 16, 32, 40, 48, 56, 64],
                                   "distanceDot":    [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
                               },
                               "pdaf":    {
                                   "enable":    0
                               },
                               "vcmcfg":    {
                                   "start_current":    -1,
                                   "rated_current":    -1,
                                   "step_mode":    -1,
                                   "extra_delay":    0
                               },
                               "measiso_cfg":    [{
                                       "iso":    50,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    100,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    1600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    3200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    6400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    12800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    25600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    51200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    102400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    204800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }],
                               "zoomfocus_tbl":    {
                                   "tbl_len":    0,
                                   "focal_length":    [],
                                   "focal_length_len":    0,
                                   "zoom_pos":    [],
                                   "zoom_pos_len":    0,
                                   "focus_infpos":    [],
                                   "focus_infpos_len":    0,
                                   "focus_macropos":    [],
                                   "focus_macropos_len":    0
                               }
                           }
                       },
                       "thumbnails":    {
                           "param":    {
                               "thumbnail_configs":    [{
                                       "owner_cookies":    0,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0002",
                                       "width_intfactor":    2,
                                       "height_intfactor":    2,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    1,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0004",
                                       "width_intfactor":    4,
                                       "height_intfactor":    4,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    2,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\b",
                                       "width_intfactor":    8,
                                       "height_intfactor":    8,
                                       "buffer_count":    0
                                   }],
                               "thumbnail_configs_len":    3
                           }
                       },
                       "bayernr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2430, 2099, 1787, 1491, 951, 464, 87, 87, 297, 489, 584, 595, 521, 344, 87, 87]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2865, 2375, 1896, 1418, 87, 87, 87, 87, 87, 416, 703, 774, 696, 451, 87, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2408, 2016, 1638, 1267, 454, 87, 87, 87, 87, 456, 641, 689, 627, 451, 87, 87]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1574, 1357, 1154, 969, 655, 445, 385, 446, 535, 603, 633, 621, 565, 473, 368, 330]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [3411, 3017, 2650, 2310, 1719, 1266, 982, 882, 912, 979, 1021, 1009, 930, 784, 589, 435]
                                           }, {
                                               "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":    [2430, 2099, 1787, 1491, 951, 464, 87, 87, 297, 489, 584, 595, 521, 344, 87, 87]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2865, 2375, 1896, 1418, 87, 87, 87, 87, 87, 416, 703, 774, 696, 451, 87, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2408, 2016, 1638, 1267, 454, 87, 87, 87, 87, 456, 641, 689, 627, 451, 87, 87]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1574, 1357, 1154, 969, 655, 445, 385, 446, 535, 603, 633, 621, 565, 473, 368, 330]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [3411, 3017, 2650, 2310, 1719, 1266, 982, 882, 912, 979, 1021, 1009, 930, 784, 589, 435]
                                           }, {
                                               "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.1,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.15
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.25
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.35
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.45
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.75
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "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.75,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.75
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.7
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.55,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v1":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Kernel_Coeff":    {
                                   "kernel_5x5":    [1, 0.8825, 0.7788, 0.6065, 0.3679]
                               },
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    50,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.1,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.75,
                                               "hf_spikes_reducion_strength":    0.2,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    3.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    3.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    20,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    2.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    2.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    28,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    32,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    36,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-3.18261e-12, 2.93069e-08, -9.61723e-05, 0.127134, -16.4907],
                                               "ynr_ci_l":    0.407793,
                                               "ynr_ci_h":    0.238894
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.87288e-12, 1.76345e-08, -5.82781e-05, 0.0728379, 3.51112],
                                               "ynr_ci_l":    0.311506,
                                               "ynr_ci_h":    0.189621
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-3.22626e-12, 3.05457e-08, -0.000101678, 0.126253, 12.782],
                                               "ynr_ci_l":    0.247935,
                                               "ynr_ci_h":    0.164629
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-4.45743e-12, 4.17478e-08, -0.000136891, 0.164686, 26.7234],
                                               "ynr_ci_l":    0.242602,
                                               "ynr_ci_h":    0.158235
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-6.37503e-12, 5.92579e-08, -0.000192535, 0.228039, 44.4407],
                                               "ynr_ci_l":    0.239378,
                                               "ynr_ci_h":    0.158262
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-3.79338e-13, 4.20139e-09, -1.65728e-05, 0.0227778, 17.7731],
                                               "ynr_ci_l":    0.264599,
                                               "ynr_ci_h":    0.186359
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-8.51864e-13, 8.4477e-09, -3.1173e-05, 0.0431732, 20.4729],
                                               "ynr_ci_l":    0.266861,
                                               "ynr_ci_h":    0.176977
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.01774e-12, 1.07758e-08, -4.22101e-05, 0.0597135, 28.7999],
                                               "ynr_ci_l":    0.259483,
                                               "ynr_ci_h":    0.166846
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.32816e-12, 1.29829e-08, -4.53493e-05, 0.0511179, 55.0177],
                                               "ynr_ci_l":    0.254945,
                                               "ynr_ci_h":    0.156095
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-1.76225e-12, 1.64389e-08, -5.4805e-05, 0.0586055, 72.3208],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.2,
                                               "low_peak_supress":    0.6,
                                               "low_edge_adj_thresh":    28,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.2,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.6,
                                               "high_weight":    0.8,
                                               "hi_min_adj":    0.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":    28,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.8,
                                               "high_weight":    0.75,
                                               "hi_min_adj":    0.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":    24,
                                               "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":    24,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    6,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.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":    20,
                                               "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":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.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":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.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":    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":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "sharp_v3":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.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.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    [],
           "enable_algos_len":    0
       }
   }
}