hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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
<?xml version="1.0" encoding="utf-8"?> <matfile>    <header type="struct" size="[1 1]">       <code_xml_parse_version index="1" type="char" size="[1 6]">          v1.4.6       </code_xml_parse_version>       <creation_date index="1" type="char" size="[1 11]">          2020-04-24       </creation_date>       <creator index="1" type="char" size="[1 2]">          sandy       </creator>       <sensor_name index="1" type="char" size="[1 7]">          OV8858       </sensor_name>       <sample_name index="1" type="char" size="[1 9]">          UNKNOWN       </sample_name>       <generator_version index="1" type="char" size="[1 4]">          v1.0.a_G11       </generator_version>       <magic_code_version index="1" type="int" size="[1 1]">          [1276573]       </magic_code_version>    </header>    <sensor type="struct" size="[1 1]">       <AWB index="1" type="struct" size="[1 1]">          <CalibParaV20 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>                <Globals index="1" type="struct" size="[1 1]">                   <hdrFrameChoose index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [1]                      </mode>                      <frameChoose index="1" type="double" size="[1 1]">                         [1]                      </frameChoose>                   </hdrFrameChoose>                   <lscBypassEnable index="1" type="double" size="[1 1]">                      [0]                   </lscBypassEnable>                   <uvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </uvDetectionEnable>                   <xyDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </xyDetectionEnable>                   <yuvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </yuvDetectionEnable>                   <wbGainDaylightClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainDaylightClipEnable>                   <wbGainClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainClipEnable>                   <lsUsedForYuvDet index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 1]">                            A                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            CWF                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D65                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 4]">                            TL84                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D50                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 2]">                            HZ                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D75                         </name>                      </cell>                   </lsUsedForYuvDet>                   <downScaleMode index="1" type="double" size="[1 1]">                      [1]                   </downScaleMode>                   <blckMeasureMode index="1" type="double" size="[1 1]">                      [1]                   </blckMeasureMode>                   <measureWindow index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [0]                      </mode>                      <resAll index="1" type="cell" size="[1 2]">                         <cell index="6" type="struct" size="[1 1]">                            <resolution index="1" type="char" size="[1 9]">                               3264x2448                            </resolution>                            <measureWindowSize index="1" type="double" size="[1 4]">                               [0 0 3264 2448]                            </measureWindowSize>                         </cell>                         <cell index="6" type="struct" size="[1 1]">                            <resolution index="1" type="char" size="[1 9]">                               2688x1520                            </resolution>                            <measureWindowSize index="1" type="double" size="[1 4]">                               [0 0 2560 1440]                            </measureWindowSize>                         </cell>                      </resAll>                   </measureWindow>                   <multiWindowEnable index="1" type="double" size="[1 1]">                      [1]                   </multiWindowEnable>                   <limitRange index="1" type="struct" size="[1 1]">                      <Y index="1" type="double" size="[1 2]">                         [9 210]                      </Y>                      <R index="1" type="double" size="[1 2]">                         [6 230]                      </R>                      <G index="1" type="double" size="[1 2]">                         [9 230]                      </G>                      <B index="1" type="double" size="[1 2]">                         [6 230]                      </B>                   </limitRange>                   <pseudoLumWeight index="1" type="double" size="[1 3]">                      [0.373779505892851 0.375205352289234 0.251015141817916]                   </pseudoLumWeight>                   <rotationMat index="1" type="double" size="[1 9]">                      [-0.557522633818534 0.830161738928051 -0.156893251537365 0.830161738928051 0.557522633818534 0.390502022168198 0 0 1]                   </rotationMat>                   <multiwindow index="1" type="double" size="[8 4]">                      [0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0]                   </multiwindow>                   <excludeRange index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [195 198 266 259]                         </window>                      </cell>                      <cell index="2" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="3" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="4" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="5" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="6" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="7" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                   </excludeRange>                   <spatialGain_L index="1" type="double" size="[1 4]">                      [1.39253342524416 1 1 1.97319162031694]                   </spatialGain_L>                   <spatialGain_H index="1" type="double" size="[1 4]">                      [1.46278027209144 1 1 1.51562831304591]                   </spatialGain_H>                   <temporalDefaultGain index="1" type="double" size="[1 4]">                      [1.04382567302423 1 1 2.25295752698915]                   </temporalDefaultGain>                   <ca_TargetGain index="1" type="double" size="[1 4]">                      [1.4398 1 1 1.4396]                   </ca_TargetGain>                   <singleColorProcess index="1" type="struct" size="[1 1]">                      <colorBlock index="1" type="cell" size="[1 6]">                         <cell index="1" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [15]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [22.6849906934777]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [29.2335763970789]                            </meanH>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [13]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [18.6707691294366]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-78.2667870296464]                            </meanH>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [5]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [10.8175453813563]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-70.6399750530135]                            </meanH>                         </cell>                         <cell index="4" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [10]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [11.1037865017823]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-45.6974574966293]                            </meanH>                         </cell>                         <cell index="5" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [14]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [15.6674422109493]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [149.822024629893]                            </meanH>                         </cell>                         <cell index="6" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [16]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [24.4832044244741]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [88.6144162204434]                            </meanH>                         </cell>                      </colorBlock>                      <lsUsedForEstimation index="1" type="cell" size="[1 3]">                         <cell index="1" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 1]">                               A                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.04382567302423]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [2.25295752698915]                            </BGain>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 4]">                               TL84                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.46278027209144]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.51562831304591]                            </BGain>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 3]">                               D50                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.27130489949679]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.93104484246777]                            </BGain>                         </cell>                      </lsUsedForEstimation>                      <alpha index="1" type="double" size="[1 1]">                         [0.9]                      </alpha>                   </singleColorProcess>                   <lineRgBg index="1" type="double" size="[1 3]">                      [-0.7959 -0.6055 -2.128]                   </lineRgBg>                   <lineRgProjCCT index="1" type="double" size="[1 3]">                      [1 -0.0002 0.559]                   </lineRgProjCCT>                   <wbGainDaylightClip index="1" type="struct" size="[1 1]">                      <outdoor_cct_min index="1" type="double" size="[1 1]">                         [5000]                      </outdoor_cct_min>                   </wbGainDaylightClip>                   <wbGainClip index="1" type="struct" size="[1 1]">                      <cct index="1" type="double" size="[1 5]">                         [1000 2856 4100 6500 7500]                      </cct>                      <cri_bound_up index="1" type="double" size="[1 5]">                         [0.091 0.091 0.18 0.12 0.12]                      </cri_bound_up>                      <cri_bound_low index="1" type="double" size="[1 5]">                         [0.07 0.07 0.16 0.16 0.16]                      </cri_bound_low>                   </wbGainClip>                </Globals>                <LightSources index="1" type="cell" size="[1 7]">                   <cell index="1" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 1]">                         A                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.04382567302423 1 1 2.25295752698915]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [125 49 49 125 125]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [129 142 130 128 129]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.08168810515717 -0.79160580063042 0.0533194502395589 0.0140512663930618]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.0808238995668 -0.792470000809345 0.179175962142667 -0.0637711343229]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.02580333149462 -0.945432961124247 0.0506619064842908 0.0206752933651475]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [8836]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [142]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [1874]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [3392]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [1]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [127]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [48 112 240 496 752 1008]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="2" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         CWF                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.39253342524416 1 1 1.97319162031694]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [53 57 127 126 53]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [98 74 127 127 98]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.792470000809345 -0.441385567920677 0.00461103577051167 -0.0731495993355218]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.792470000809345 -0.441385567920677 0.00489918115228305 -0.107838763426275]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.661544074883419 -0.491729260068605 -0.00824036985197826 -0.0510783885936114]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-2131]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [66]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-6396]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [3834]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [2]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [128]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [36 100 164 420 548 804]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="3" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D50                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [2]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.46278027209144 1 1 1.51562831304591]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [55 68 128 128 55]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [84.5 32 127 128.5 84.5]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.442035340506729 -0.0807617862507197 0.115989159108177 -0.109485095634371]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.441385567920677 -0.0795833337306975 0.470682739972111 -0.120846076300291]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.329692230214479 -0.176729267251516 0.078506616599739 0.0335266969210241]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-1059]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [3]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-8186]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [4923]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [5]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [127]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [23 55 119 247 503 631]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="4" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D65                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.71490012387156 1 1 1.36111555252588]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [68 100 128 128 68]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [32 1.5 126 127 32]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.0794907402605917 0.119166666666667 0.368942433660156 -0.117670682730924]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.0794907407600568 0.119166666666667 0.484738955823293 -0.146541720515035]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.0623302569791071 0.061003076354226 0.0341216737318302 -0.0413803343002982]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-456]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [-163]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-6093]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [4348]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [11]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [125]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [0 32 96 352 480 736]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="5" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D75                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.74350892427553 1 1 1.22487807446654]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [129 128 100 127 129]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [126 126 1.5 -7 126]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [0.0791666666666671 0.244699074074076 0.418875502008032 -0.0393574297188755]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [0.0791666666666671 0.244699074063037 0.48647925635791 -0.11285140562249]                         </big>                         <small index="1" type="double" size="[1 4]">                            [0.122067029607712 0.238733696274379 0.0688680628616238 -0.00824037087331592]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-216]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [-485]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-3312]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [4972]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [13]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [121]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [32 48 64 192 448 576]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="6" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 2]">                         HZ                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [0.8857384569072 1 1 2.50143579319588]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [125.5 50 49 125 125.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [129.5 159 142 129 129.5]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.37791580628834 -1.08076386883717 0.0502255933284461 -0.0447121717244186]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.3777237654321 -1.0808238995668 0.115434577412932 -0.0591700133868808]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.36735339506173 -1.19699074074074 0.0329317269076306 -0.0111557340473]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [2917]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [173]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [5121]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [2837]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [2]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [128]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [66 130 258 514 1026 1282]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="7" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 4]">                         TL84                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.27130489949679 1 1 1.93104484246777]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [126 49 53 126.5 126]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [128 130 98 127 128]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.792470000809345 -0.44225193136014 0.090287073253778 0.00562185504568867]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.791173704513049 -0.441385567920677 0.125585721351018 0.00461103577051167]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.719877414174458 -0.60709963639668 0.0528038067192026 0.00782388704048775]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-3532]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [90]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-4382]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [3977]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [4]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [127]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [32 64 128 256 512 640]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                </LightSources>             </cell>          </CalibParaV20>          <CalibParaV21 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>                <Globals index="1" type="struct" size="[1 1]">                   <hdrFrameChoose index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [0]                      </mode>                      <frameChoose index="1" type="double" size="[1 1]">                         [1]                      </frameChoose>                   </hdrFrameChoose>                   <lscBypassEnable index="1" type="double" size="[1 1]">                      [0]                   </lscBypassEnable>                   <uvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </uvDetectionEnable>                   <xyDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </xyDetectionEnable>                   <yuvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </yuvDetectionEnable>                   <wbGainDaylightClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainDaylightClipEnable>                   <wbGainClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainClipEnable>                   <wpDiffLumaWeiEnable index="1" type="double" size="[1 1]">                      [1]                   </wpDiffLumaWeiEnable>                   <wpDiffBlkWeiEnable index="1" type="double" size="[1 1]">                      [1]                   </wpDiffBlkWeiEnable>                   <blkStatisticsEnable index="1" type="double" size="[1 1]">                      [1]                   </blkStatisticsEnable>                   <lsUsedForYuvDet index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 1]">                            A                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            CWF                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D65                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 4]">                            TL84                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D50                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 2]">                            HZ                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D75                         </name>                      </cell>                   </lsUsedForYuvDet>                   <downScaleMode index="1" type="double" size="[1 1]">                      [1]                   </downScaleMode>                   <blckMeasureMode index="1" type="double" size="[1 1]">                      [0]                   </blckMeasureMode>                   <measureWindow index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [1]                      </mode>                      <resAll index="1" type="cell" size="[1 1]">                         <cell index="6" type="struct" size="[1 1]">                            <resolution index="1" type="char" size="[1 9]">                               3264x2448                            </resolution>                            <measureWindowSize index="1" type="double" size="[1 4]">                               [0 0 3264 2448]                            </measureWindowSize>                         </cell>                      </resAll>                   </measureWindow>                   <multiWindowEnable index="1" type="double" size="[1 1]">                      [1]                   </multiWindowEnable>                   <limitRange index="1" type="struct" size="[1 1]">                      <Y index="1" type="double" size="[1 2]">                         [9 210]                      </Y>                      <R index="1" type="double" size="[1 2]">                         [6 230]                      </R>                      <G index="1" type="double" size="[1 2]">                         [9 230]                      </G>                      <B index="1" type="double" size="[1 2]">                         [6 230]                      </B>                   </limitRange>                   <pseudoLumWeight index="1" type="double" size="[1 3]">                      [0.373779505892851 0.375205352289234 0.251015141817916]                   </pseudoLumWeight>                   <rotationMat index="1" type="double" size="[1 9]">                      [-0.557522633818534 0.830161738928051 -0.156893251537365 0.830161738928051 0.557522633818534 0.390502022168198 0 0 1]                   </rotationMat>                   <rgb2RotationYuvMat index="1" type="double" size="[4 4]">                      [0.046875 0.138671875 0.013671875 27.875                      -0.0859375 0.009765625 0.0703125 130.875                      0.04296875 -0.064453125 0.052734375 114.6875                      0 0 0 1]                   </rgb2RotationYuvMat>                   <multiwindow index="1" type="double" size="[8 4]">                      [0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0]                   </multiwindow>                   <excludeRange index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [244 249 228 211]                         </window>                      </cell>                      <cell index="2" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [1]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [-1096 -985 140 65]                         </window>                      </cell>                      <cell index="3" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [1]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [-40 158 121 16]                         </window>                      </cell>                      <cell index="4" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [1]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [-235 -40 237 80]                         </window>                      </cell>                      <cell index="5" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [0]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="6" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [0]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="7" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [0]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                   </excludeRange>                   <spatialGain_L index="1" type="double" size="[1 4]">                      [1.39253342524416 1 1 1.97319162031694]                   </spatialGain_L>                   <spatialGain_H index="1" type="double" size="[1 4]">                      [1.46278027209144 1 1 1.51562831304591]                   </spatialGain_H>                   <temporalDefaultGain index="1" type="double" size="[1 4]">                      [1.04382567302423 1 1 2.25295752698915]                   </temporalDefaultGain>                   <ca_TargetGain index="1" type="double" size="[1 4]">                      [1.4398 1 1 1.4396]                   </ca_TargetGain>                   <singleColorProcess index="1" type="struct" size="[1 1]">                      <colorBlock index="1" type="cell" size="[1 6]">                         <cell index="1" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [15]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [22.6849906934777]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [29.2335763970789]                            </meanH>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [13]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [18.6707691294366]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-78.2667870296464]                            </meanH>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [5]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [10.8175453813563]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-70.6399750530135]                            </meanH>                         </cell>                         <cell index="4" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [10]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [11.1037865017823]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-45.6974574966293]                            </meanH>                         </cell>                         <cell index="5" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [14]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [15.6674422109493]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [149.822024629893]                            </meanH>                         </cell>                         <cell index="6" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [16]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [24.4832044244741]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [88.6144162204434]                            </meanH>                         </cell>                      </colorBlock>                      <lsUsedForEstimation index="1" type="cell" size="[1 3]">                         <cell index="1" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 1]">                               A                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.04382567302423]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [2.25295752698915]                            </BGain>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 4]">                               TL84                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.46278027209144]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.51562831304591]                            </BGain>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 3]">                               D50                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.27130489949679]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.93104484246777]                            </BGain>                         </cell>                      </lsUsedForEstimation>                      <alpha index="1" type="double" size="[1 1]">                         [0.9]                      </alpha>                   </singleColorProcess>                   <lineRgBg index="1" type="double" size="[1 3]">                      [-0.7959 -0.6055 -2.128]                   </lineRgBg>                   <lineRgProjCCT index="1" type="double" size="[1 3]">                      [1 -0.0002 0.559]                   </lineRgProjCCT>                   <wbGainDaylightClip index="1" type="struct" size="[1 1]">                      <outdoor_cct_min index="1" type="double" size="[1 1]">                         [5000]                      </outdoor_cct_min>                   </wbGainDaylightClip>                   <wbGainClip index="1" type="struct" size="[1 1]">                      <cct index="1" type="double" size="[1 5]">                         [1000 2856 4100 6500 7500]                      </cct>                      <cri_bound_up index="1" type="double" size="[1 5]">                         [0.091 0.091 0.18 0.12 0.12]                      </cri_bound_up>                      <cri_bound_low index="1" type="double" size="[1 5]">                         [0.07 0.07 0.16 0.16 0.16]                      </cri_bound_low>                   </wbGainClip>                   <wpDiffLumaWeight index="1" type="struct" size="[1 1]">                      <wpDiffWeiEnableTh index="1" type="struct" size="[1 1]">                         <wpDiffWeiNoTh index="1" type="double" size="[1 1]">                            [0.004]                         </wpDiffWeiNoTh>                         <wpDiffWeiLvValueTh index="1" type="double" size="[1 1]">                            [64]                         </wpDiffWeiLvValueTh>                      </wpDiffWeiEnableTh>                      <wpDiffwei_y index="1" type="double" size="[1 9]">                         [0 16 32 64 96 128 192 224 240]                      </wpDiffwei_y>                      <perfectBinConf index="1" type="double" size="[1 8]">                         [0 0 0 1 1 1 1 0]                      </perfectBinConf>                      <wpDiffWeiLvTh index="1" type="double" size="[1 2]">                         [256 8192]                      </wpDiffWeiLvTh>                      <wpDiffWeiRatioTh index="1" type="double" size="[1 3]">                         [0 0.01 0.1]                      </wpDiffWeiRatioTh>                      <wpDiffwei_w_HighLV index="1" type="struct" size="[1 1]">                         <wpRatio1 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio1>                         <wpRatio2 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio2>                         <wpRatio3 index="1" type="double" size="[1 9]">                            [0 0 0.2 0.5 1 1 1 0.5 0]                         </wpRatio3>                      </wpDiffwei_w_HighLV>                      <wpDiffwei_w_LowLV index="1" type="struct" size="[1 1]">                         <wpRatio1 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio1>                         <wpRatio2 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio2>                         <wpRatio3 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio3>                      </wpDiffwei_w_LowLV>                   </wpDiffLumaWeight>                   <wpDiffBlkWeight index="1" type="double" size="[15 15]">                      [3 3 3 4 4 4 4 5 4 4 4 4 3 3 3                      3 3 4 4 5 5 6 6 6 5 5 4 4 3 3                      3 4 5 6 7 8 9 10 9 8 7 6 5 4 3                      4 4 6 8 11 13 15 16 15 13 11 8 6 4 4                      4 5 7 11 14 18 21 23 21 18 14 11 7 5 4                      4 5 8 13 18 23 27 29 27 23 18 13 8 5 4                      4 6 9 15 21 27 32 32 32 27 21 15 9 6 4                      5 6 10 16 23 29 32 32 32 29 23 16 10 6 5                      4 6 9 15 21 27 32 32 32 27 21 15 9 6 4                      4 5 8 13 18 23 27 29 27 23 18 13 8 5 4                      4 5 7 11 14 18 21 23 21 18 14 11 7 5 4                      4 4 6 8 11 13 15 16 15 13 11 8 6 4 4                      3 4 5 6 7 8 9 10 9 8 7 6 5 4 3                      3 3 4 4 5 5 6 6 6 5 5 4 4 3 3                      3 3 3 4 4 4 4 5 4 4 4 4 3 3 3]                   </wpDiffBlkWeight>                </Globals>                <LightSources index="1" type="cell" size="[1 7]">                   <cell index="1" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 1]">                         A                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.04382567302423 1 1 2.25295752698915]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [125 49 49 125 125]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [129 142 130 128 129]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [123 54 55.5 123.5 123]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [128.5 137 118 127 128.5]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.08168810515717 -0.79160580063042 0.0533194502395589 0.0140512663930618]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.0808238995668 -0.792470000809345 0.179175962142667 -0.0637711343229]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.02580333149462 -0.945432961124247 0.0506619064842908 0.0206752933651475]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.1875 0.1875 0.1875 0.75 1 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 135.625 114.4375 186.4375 95.25 115.375]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="2" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         CWF                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.39253342524416 1 1 1.97319162031694]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [53 57 127 126 53]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [98 74 127 127 98]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [57 63.5 122.5 122.5 57]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [92 79.5 124 125.5 92]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.792470000809345 -0.441385567920677 0.00461103577051167 -0.0731495993355218]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.792470000809345 -0.441385567920677 0.00489918115228305 -0.107838763426275]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.661544074883419 -0.491729260068605 -0.00824036985197826 -0.0510783885936114]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.125 0.1875 0.1875 0.75 1 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 132.9375 115.625 190 115.375 108.4375]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="3" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D50                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [2]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.46278027209144 1 1 1.51562831304591]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [55 68 128 128 55]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [84.5 32 127 128.5 84.5]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [63 84.5 125 121.5 63]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [79.5 65 123 126.5 79.5]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.442035340506729 -0.0807617862507197 0.115989159108177 -0.109485095634371]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.441385567920677 -0.0795833337306975 0.470682739972111 -0.120846076300291]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.329692230214479 -0.176729267251516 0.078506616599739 0.0335266969210241]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 56 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.9875 0.4125 1 2.5 1 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 131.9375 115 190.9375 127.1875 114.1875]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="4" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D65                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.71490012387156 1 1 1.36111555252588]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [68 100 128 128 68]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [32 1.5 126 127 32]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [84.5 103.5 126 125 84.5]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [65 47.5 117.5 123 65]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.0794907402605917 0.119166666666667 0.368942433660156 -0.117670682730924]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.0794907407600568 0.119166666666667 0.484738955823293 -0.146541720515035]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.0623302569791071 0.061003076354226 0.0341216737318302 -0.0413803343002982]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.1875 0.5 0.5 0.8125 1 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 130.6875 115.25 190.75 139.875 113.1875]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="5" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D75                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.74350892427553 1 1 1.22487807446654]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [129 128 100 127 129]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [126 126 1.5 -7 126]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [126 125.5 103.5 113 126]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [114 116.5 47 54 114]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [0.0791666666666671 0.244699074074076 0.418875502008032 -0.0393574297188755]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [0.0791666666666671 0.244699074063037 0.48647925635791 -0.11285140562249]                         </big>                         <small index="1" type="double" size="[1 4]">                            [0.122067029607712 0.238733696274379 0.0688680628616238 -0.00824037087331592]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.1875 0.3125 0.5 0.75 1 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 130 114.8125 190.3125 145.8125 116.8125]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="6" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 2]">                         HZ                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [0.8857384569072 1 1 2.50143579319588]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [125.5 50 49 125 125.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [129.5 159 142 129 129.5]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [121 54 54 123 121]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [132 150.5 136.5 129 132]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.37791580628834 -1.08076386883717 0.0502255933284461 -0.0447121717244186]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.3777237654321 -1.0808238995668 0.115434577412932 -0.0591700133868808]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.36735339506173 -1.19699074074074 0.0329317269076306 -0.0111557340473]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.1875 0.3125 0.3125 0.75 1 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 136.875 114.25 182.9375 83.5625 119]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="7" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 4]">                         TL84                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.27130489949679 1 1 1.93104484246777]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [126 49 53 126.5 126]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [128 130 98 127 128]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [123.5 56 57 124 123.5]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [127 117.5 92 125.5 127]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.792470000809345 -0.44225193136014 0.090287073253778 0.00562185504568867]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.791173704513049 -0.441385567920677 0.125585721351018 0.00461103577051167]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.719877414174458 -0.60709963639668 0.0528038067192026 0.00782388704048775]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.1875 0.1875 0.3125 0.75 1 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 133.8125 115.3125 189.5 110.5625 111.5625]                         </lineVector>                      </rtYuvRegion>                   </cell>                </LightSources>             </cell>          </CalibParaV21>          <TuningPara index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>                <Globals index="1" type="struct" size="[1 1]">                   <wbBypass index="1" type="double" size="[1 1]">                      [0]                   </wbBypass>                   <awbEnable index="1" type="double" size="[1 1]">                      [1]                   </awbEnable>                   <wbGainAdjustEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainAdjustEnable>                   <lightSourceForFirstFrame index="1" type="char" size="[1 3]">                      D50                   </lightSourceForFirstFrame>                   <uvRangeSmallEnable index="1" type="double" size="[1 1]">                      [0]                   </uvRangeSmallEnable>                   <ca_Enable index="1" type="double" size="[1 1]">                      [0]                   </ca_Enable>                   <tolerance index="1" type="struct" size="[1 1]">                      <LV index="1" type="double" size="[1 4]">                         [256 512 32768 131072]                      </LV>                      <value index="1" type="double" size="[1 4]">                         [0 0 0 0]                      </value>                   </tolerance>                   <runInterval index="1" type="struct" size="[1 1]">                      <LV index="1" type="double" size="[1 4]">                         [256 512 32768 131072]                      </LV>                      <value index="1" type="double" size="[1 4]">                         [0 0 0 0]                      </value>                   </runInterval>                   <multiwindowMode index="1" type="double" size="[1 1]">                      [0]                   </multiwindowMode>                   <dampFactor index="1" type="struct" size="[1 1]">                      <dFStep index="1" type="double" size="[1 1]">                         [0.05]                      </dFStep>                      <dFMin index="1" type="double" size="[1 1]">                         [0.7]                      </dFMin>                      <dFMax index="1" type="double" size="[1 1]">                         [0.9]                      </dFMax>                      <LvIIRsize index="1" type="double" size="[1 1]">                         [4]                      </LvIIRsize>                      <LvVarTh index="1" type="double" size="[1 1]">                         [0.04]                      </LvVarTh>                   </dampFactor>                   <LVMatrix index="1" type="double" size="[1 16]">                      [0 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768 65536 131072 262144]                   </LVMatrix>                   <LV_THL index="1" type="double" size="[1 1]">                      [110]                   </LV_THL>                   <LV_THL2 index="1" type="double" size="[1 1]">                      [200]                   </LV_THL2>                   <LV_THH index="1" type="double" size="[1 1]">                      [65536]                   </LV_THH>                   <LV_THH2 index="1" type="double" size="[1 1]">                      [65600]                   </LV_THH2>                   <WP_THL index="1" type="double" size="[1 1]">                      [150]                   </WP_THL>                   <WP_THH index="1" type="double" size="[1 1]">                      [216]                   </WP_THH>                   <proDis_THL index="1" type="double" size="[1 1]">                      [0.0269]                   </proDis_THL>                   <proDis_THH index="1" type="double" size="[1 1]">                      [4.6124]                   </proDis_THH>                   <proLV_Indoor_THL index="1" type="double" size="[1 1]">                      [64]                   </proLV_Indoor_THL>                   <proLV_Indoor_THH index="1" type="double" size="[1 1]">                      [256]                   </proLV_Indoor_THH>                   <proLV_Outdoor_THL index="1" type="double" size="[1 1]">                      [30000]                   </proLV_Outdoor_THL>                   <proLV_Outdoor_THH index="1" type="double" size="[1 1]">                      [45745]                   </proLV_Outdoor_THH>                   <temporalCalGainSetSize index="1" type="double" size="[1 1]">                      [4]                   </temporalCalGainSetSize>                   <temporalGainSetWeight index="1" type="double" size="[1 4]">                      [25 25 25 25]                   </temporalGainSetWeight>                   <wpNumPercTh index="1" type="double" size="[1 1]">                      [0.0031]                   </wpNumPercTh>                   <tempWeigth index="1" type="double" size="[1 16]">                      [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]                   </tempWeigth>                   <ca_LACalcFactor index="1" type="double" size="[1 1]">                      [40]                   </ca_LACalcFactor>                   <convergedVarTh index="1" type="double" size="[1 1]">                      [0.005]                   </convergedVarTh>                   <xyRegionStableSelection index="1" type="struct" size="[1 1]">                      <xyRegionSize index="1" type="double" size="[1 1]">                         [50]                      </xyRegionSize>                      <LvVarTh index="1" type="double" size="[1 1]">                         [0.06]                      </LvVarTh>                   </xyRegionStableSelection>                   <wbGainAdjust index="1" type="struct" size="[1 1]">                      <ct_grid_num index="1" type="double" size="[1 1]">                         [7]                      </ct_grid_num>                      <ct_in_range index="1" type="double" size="[1 2]">                         [2000 8000]                      </ct_in_range>                      <cri_grid_num index="1" type="double" size="[1 1]">                         [9]                      </cri_grid_num>                      <cri_in_range index="1" type="double" size="[1 2]">                         [-1 1]                      </cri_in_range>                      <lutAll index="1" type="cell" size="[1 3]">                         <cell index="1" type="struct" size="[1 5]">                            <LvValue index="1" type="double" size="[1 1]">                               [128]                            </LvValue>                            <ct_out index="1" type="double" size="[9 7]">                               [2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000]                            </ct_out>                            <cri_out index="1" type="double" size="[9 7]">                               [-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_out>                         </cell>                         <cell index="1" type="struct" size="[1 5]">                            <LvValue index="1" type="double" size="[1 1]">                               [8192]                            </LvValue>                            <ct_out index="1" type="double" size="[9 7]">                               [2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000]                            </ct_out>                            <cri_out index="1" type="double" size="[9 7]">                               [-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_out>                         </cell>                         <cell index="1" type="struct" size="[1 5]">                            <LvValue index="1" type="double" size="[1 1]">                               [65536]                            </LvValue>                            <ct_out index="1" type="double" size="[9 7]">                               [2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000                               2000 3000 4000 5000 6000 7000 8000]                            </ct_out>                            <cri_out index="1" type="double" size="[9 7]">                               [-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_out>                         </cell>                      </lutAll>                   </wbGainAdjust>                   <RemosaicPara index="1" type="struct" size="[1 1]">                      <enable index="1" type="double" size="[1 1]">                         [0]                      </enable>                      <sensorWbGain index="1" type="double" size="[1 4]">                         [1 1 1 1]                      </sensorWbGain>                   </RemosaicPara>                </Globals>                <LightSources index="1" type="cell" size="[1 7]">                   <cell index="1" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 1]">                         A                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 100 90 75]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="2" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         CWF                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 70 60 50 40]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="3" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D50                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="4" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D65                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 90 80 70]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="5" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D75                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 90 80 70 50]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="6" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 2]">                         HZ                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 90 75 50]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="7" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 4]">                         TL84                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 90 80 70 60 60]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                </LightSources>             </cell>          </TuningPara>       </AWB>       <AEC index="1" type="struct" size="[1 1]">    <CalibPara index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            A0        </scene>        <AecWinScale index="1" type="struct" size="[1 1]">                   <InputRaw index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </InputRaw>                   <TmoRaw index="1" type="double" size="[1 4]">                      [0.1 0.1 0.9 0.9]                   </TmoRaw>                   <Yuv index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </Yuv>             </AecWinScale>        <AecEnvLvCalib index="1" type="struct" size="[1 1]">                   <CalibFNumber index="1" type="double" size="[1 1]">                      [1.6]                   </CalibFNumber>                   <CurveCoeff index="1" type="double" size="[1 2]">                      [0.02859 0.5972]                   </CurveCoeff>             </AecEnvLvCalib>          </cell>          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            B0        </scene>        <AecWinScale index="1" type="struct" size="[1 1]">                   <InputRaw index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </InputRaw>                   <TmoRaw index="1" type="double" size="[1 4]">                      [0.1 0.1 0.9 0.9]                   </TmoRaw>                   <Yuv index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </Yuv>             </AecWinScale>        <AecEnvLvCalib index="1" type="struct" size="[1 1]">                   <CalibFNumber index="1" type="double" size="[1 1]">                      [1.6]                   </CalibFNumber>                   <CurveCoeff index="1" type="double" size="[1 2]">                      [0.02859 0.5972]                   </CurveCoeff>             </AecEnvLvCalib>          </cell>          </CalibPara>    <TunePara index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            A0        </scene>          <Enable index="1" type="double" size="[1 1]">             [1]          </Enable>          <AecRunInterval index="1" type="double" size="[1 1]">             [0]          </AecRunInterval>          <AecOpType index="1" type="char" size="[1 6]">             AUTO          </AecOpType>          <HistStatsMode index="1" type="char" size="[1 3]">             Y          </HistStatsMode>          <RawStatsMode index="1" type="char" size="[1 3]">             Y          </RawStatsMode>          <YRangeMode index="1" type="char" size="[1 10]">             FULL          </YRangeMode>    <AecSyncTest index="1" type="struct" size="[1 1]">       <Enable index="1" type="double" size="[1 1]">             [0]       </Enable>       <IntervalFrm index="1" type="double" size="[1 1]">             [60]       </IntervalFrm>       <AlterExp index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="cell" size="[1 2]">            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 1]">                         [0.02]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 1]">                         [1]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 1]">                         [1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 1]">                         [0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1]                      </PIrisGainValue>            </cell>            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 1]">                         [0.020]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 1]">                         [6]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 1]">                         [1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 1]">                         [0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [29]                      </PIrisGainValue>            </cell>                </LinearAE>                <HdrAE index="1" type="cell" size="[1 2]">            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 3]">                         [0.01 0.02 0.03]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 3]">                         [0 0 0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1]                      </PIrisGainValue>            </cell>            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 3]">                         [0.01 0.02 0.03]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 3]">                         [6 6 1]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 3]">                         [0 0 0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [29]                      </PIrisGainValue>            </cell>                </HdrAE>              </AlterExp>          </AecSyncTest>          <AecSpeed index="1" type="struct" size="[1 1]">            <DampOver index="1" type="double" size="[1 1]">               [0.15]            </DampOver>            <DampUnder index="1" type="double" size="[1 1]">               [0.45]            </DampUnder>            <DampDark2Bright index="1" type="double" size="[1 1]">               [0.15]            </DampDark2Bright>            <DampBright2Dark index="1" type="double" size="[1 1]">               [0.45]            </DampBright2Dark>          </AecSpeed>          <AecDelayFrmNum index="1" type="struct" size="[1 1]">             <BlackDelay index="1" type="double" size="[1 1]">                [2]             </BlackDelay>             <WhiteDelay index="1" type="double" size="[1 1]">                [2]             </WhiteDelay>          </AecDelayFrmNum>          <AecFrameRateMode index="1" type="struct" size="[1 1]">             <isFpsFix index="1" type="double" size="[1 1]">                [1]             </isFpsFix>             <FpsValue index="1" type="double" size="[1 1]">                [25]             </FpsValue>          </AecFrameRateMode>          <AecAntiFlicker index="1" type="struct" size="[1 1]">             <enable index="1" type="double" size="[1 1]">                [1]             </enable>             <Frequency index="1" type="char" size="[1 15]">                FLICKER_50HZ             </Frequency>             <Mode index="1" type="char" size="[1 10]">                AUTO             </Mode>          </AecAntiFlicker>    <AecInitValue index="1" type="struct" size="[1 1]">             <LinearAE index="1" type="struct" size="[1 1]">                   <InitTimeValue index="1" type="double" size="[1 1]">                      [0.003]                   </InitTimeValue>             <InitGainValue index="1" type="double" size="[1 1]">                      [1]                   </InitGainValue>             <InitIspDgainValue index="1" type="double" size="[1 1]">                      [1]                   </InitIspDgainValue>             <InitPIrisGainValue index="1" type="double" size="[1 1]">                      [512 ]               </InitPIrisGainValue>             <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                      [100]              </InitDCIrisDutyValue>             </LinearAE>             <HdrAE index="1" type="struct" size="[1 1]">                   <InitTimeValue index="1" type="double" size="[1 3]">                      [0.0005 0.003 0.003]                   </InitTimeValue>             <InitGainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </InitGainValue>             <InitIspDgainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </InitIspDgainValue>             <InitPIrisGainValue index="1" type="double" size="[1 1]">                      [512 ]               </InitPIrisGainValue>             <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                      [100]              </InitDCIrisDutyValue>             </HdrAE>          </AecInitValue>        <AecGridWeight index="1" type="double" size="[15 15]">                  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]          </AecGridWeight>    <AecRoute index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">        <TimeDot index="1" type="double" size="[1 6]">            [0 0.04 0.04 0.04 0.04 0.04]        </TimeDot>        <GainDot index="1" type="double" size="[1 6]">            [1 1 4 8 15.5 16]        </GainDot>        <IspDGainDot index="1" type="double" size="[1 6]">            [1 1 1 1 1 2]        </IspDGainDot>        <PIrisDot index="1" type="double" size="[1 6]">            [512 512 512 512 512 512]        </PIrisDot>                          </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">          <LTimeDot index="1" type="double" size="[1 6]">                   [0 0.030 0.030 0.030 0.030 0.030]                </LTimeDot>                <MTimeDot index="1" type="double" size="[1 6]">                   [0 0.030 0.030 0.030 0.030 0.030]                </MTimeDot>                <STimeDot index="1" type="double" size="[1 6]">                   [0 0.003 0.003 0.003 0.003 0.003]                </STimeDot>                <LGainDot index="1" type="double" size="[1 6]">                   [1 1 4 8 15.5 64]                </LGainDot>                <MGainDot index="1" type="double" size="[1 6]">                   [1 1 4 8 15.5 64]                </MGainDot>                <SGainDot index="1" type="double" size="[1 6]">                   [1 1 4 8 15.5 32]                </SGainDot>          <LIspDGainDot index="1" type="double" size="[1 6]">                   [1 1 1 1 1 1]                </LIspDGainDot>          <MIspDGainDot index="1" type="double" size="[1 6]">                   [1 1 1 1 1 1]                </MIspDGainDot>          <SIspDGainDot index="1" type="double" size="[1 6]">                   [1 1 1 1 1 1]                </SIspDGainDot>                    <PIrisDot index="1" type="double" size="[1 6]">                   [512 512 512 512 512 512]                </PIrisDot>             </HdrAE>          </AecRoute>          <AecDNSwitch index="1" type="struct" size="[1 1]">             <DNTrigger index="1" type="double" size="[1 1]">                [0]             </DNTrigger>             <DNMode index="1" type="char" size="[1 8]">                DAY             </DNMode>             <FillLightMode index="1" type="double" size="[1 1]">                [1]             </FillLightMode>             <D2NFacTh index="1" type="double" size="[1 1]">                [0.15]             </D2NFacTh>             <D2NFrmCnt index="1" type="double" size="[1 1]">                [15]             </D2NFrmCnt>             <VBNightMode index="1" type="struct" size="[1 1]">                <Enable index="1" type="double" size="[1 1]">                   [0]                </Enable>                <N2DFrmCnt index="1" type="double" size="[1 1]">                   [15]                </N2DFrmCnt>                <N2DFacTh index="1" type="double" size="[1 1]">                   [0.3]                </N2DFacTh>             </VBNightMode>             <IRNightMode index="1" type="struct" size="[1 1]">                <Enable index="1" type="double" size="[1 1]">                   [0]                </Enable>                <IR_rg index="1" type="double" size="[1 1]">                   [1]                </IR_rg>                <IR_bg index="1" type="double" size="[1 1]">                   [1]                </IR_bg>                <Max_Dis index="1" type="double" size="[1 1]">                   [0.8]                </Max_Dis>                <N2DFrmCnt index="1" type="double" size="[1 1]">                   [15]                </N2DFrmCnt>                <N2DFacTh index="1" type="double" size="[1 1]">                   [0.3]                </N2DFacTh>                <VBPercent index="1" type="double" size="[1 1]">                   [0.15]                </VBPercent>             </IRNightMode>          </AecDNSwitch>    <AecIrisCtrl index="1" type="struct" size="[1 1]">                <Enable index="1" type="double" size="[1 1]">                   [0]                </Enable>                <IrisType index="1" type="char" size="[1 3]">                   DC                </IrisType>          <PIrisAttr index="1" type="struct" size="[1 1]">                     <TotalStep index="1" type="double" size="[1 1]">                        [81]                    </TotalStep>                    <EffcStep index="1" type="double" size="[1 1]">                        [44]                    </EffcStep>                    <ZeroIsMax index="1" type="double" size="[1 1]">                        [1]                    </ZeroIsMax>                    <StepTable index="1" type="double" size="[1 81]">                        [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]                    </StepTable>           </PIrisAttr>          <DCIrisAttr index="1" type="struct" size="[1 1]">                     <Kp index="1" type="double" size="[1 1]">                        [0.5]                    </Kp>                    <Ki index="1" type="double" size="[1 1]">                        [0.2]                    </Ki>                    <Kd index="1" type="double" size="[1 1]">                        [0.3]                    </Kd>                    <MinPwmDuty index="1" type="double" size="[1 1]">                        [0]                    </MinPwmDuty>                    <MaxPwmDuty index="1" type="double" size="[1 1]">                        [100]                    </MaxPwmDuty>                    <OpenPwmDuty index="1" type="double" size="[1 1]">                        [40]                    </OpenPwmDuty>                    <ClosePwmDuty index="1" type="double" size="[1 1]">                        [22]                    </ClosePwmDuty>           </DCIrisAttr>          </AecIrisCtrl>    <AecManualCtrl index="1" type="struct" size="[1 1]">             <LinearAE index="1" type="struct" size="[1 1]">             <ManualTimeEn index="1" type="double" size="[1 1]">                      [1]                   </ManualTimeEn>             <ManualGainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualGainEn>             <ManualIspDgainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIspDgainEn>             <ManualIrisEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIrisEn>                   <TimeValue index="1" type="double" size="[1 1]">                      [0.01]                   </TimeValue>             <GainValue index="1" type="double" size="[1 1]">                      [1]                   </GainValue>             <IspDGainValue index="1" type="double" size="[1 1]">                      [1]                   </IspDGainValue>             <PIrisGainValue index="1" type="double" size="[1 1]">                      [1.4]                   </PIrisGainValue>             <DCIrisValue index="1" type="double" size="[1 1]">                      [30]                   </DCIrisValue>             </LinearAE>             <HdrAE index="1" type="struct" size="[1 1]">        <ManualTimeEn index="1" type="double" size="[1 1]">                      [1]                   </ManualTimeEn>             <ManualGainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualGainEn>             <ManualIspDgainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIspDgainEn>             <ManualIrisEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIrisEn>                   <TimeValue index="1" type="double" size="[1 3]">                      [0.01 0.02 0.03]                   </TimeValue>             <GainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </GainValue>             <IspDGainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </IspDGainValue>             <PIrisGainValue index="1" type="double" size="[1 1]">                      [1.4]                   </PIrisGainValue>             <DCIrisValue index="1" type="double" size="[1 1]">                      [30]                   </DCIrisValue>             </HdrAE>          </AecManualCtrl>    <LinearAECtrl index="1" type="struct" size="[1 1]">             <RawStatsEn index="1" type="double" size="[1 1]">                 [1]             </RawStatsEn>            <SetPoint index="1" type="double" size="[1 1]">               [55]            </SetPoint>            <NightSetpoint index="1" type="double" size="[1 1]">               [35]            </NightSetpoint>            <DySetPointEn index="1" type="double" size="[1 1]">               [1]            </DySetPointEn>               <DynamicSetpoint index="1" type="struct" size="[1 1]">                  <ExpLevel index="1" type="double" size="[1 6]">                     [0 0.05 0.1 0.3 0.5 0.7]                  </ExpLevel>                  <DySetpoint index="1" type="double" size="[1 6]">                     [35 35 30 23 18 15]                  </DySetpoint>            </DynamicSetpoint>            <Evbias index="1" type="double" size="[1 1]">               [0]            </Evbias>             <ToleranceIn index="1" type="double" size="[1 1]">                 [10.0000 ]             </ToleranceIn>             <ToleranceOut index="1" type="double" size="[1 1]">                 [15.0000 ]             </ToleranceOut>             <StrategyMode index="1" type="char" size="[1 20]">               LOWLIGHT_PRIOR            </StrategyMode>            <BackLightCtrl index="1" type="struct" size="[1 1]">               <Enable index="1" type="double" size="[1 1]">                  [0]               </Enable>               <MeasArea index="1" type="char" size="[1 8]">                  AUTO               </MeasArea>              <LumaDistTh index="1" type="double" size="[1 1]">                 [10]              </LumaDistTh>                            <OEROILowTh index="1" type="double" size="[1 1]">                 [150]              </OEROILowTh>              <LvHighTh index="1" type="double" size="[1 1]">                 [7.5]              </LvHighTh>              <LvLowTh index="1" type="double" size="[1 1]">                 [0.3125]              </LvLowTh>              <ExpLevel index="1" type="double" size="[1 6]">                 [0.05 0.1 0.2 0.3 0.5 0.7]              </ExpLevel>              <NonOEPdfTh index="1" type="double" size="[1 6]">                 [0.4 0.45 0.55 0.65 0.75 1]              </NonOEPdfTh>              <LowLightPdfTh index="1" type="double" size="[1 6]">                 [0.20 0.20 0.22 0.25 0.3 0.35]              </LowLightPdfTh>              <TargetLLLuma index="1" type="double" size="[1 6]">                 [25 22 20 18 15 12]              </TargetLLLuma>            </BackLightCtrl>            <OverExpCtrl index="1" type="struct" size="[1 1]">               <Enable index="1" type="double" size="[1 1]">                  [0]               </Enable>              <HighLightTh index="1" type="double" size="[1 1]">                 [150]              </HighLightTh>                            <LowLightTh index="1" type="double" size="[1 1]">                 [30]              </LowLightTh>              <MaxWeight index="1" type="double" size="[1 1]">                 [8]              </MaxWeight>              <OEpdf index="1" type="double" size="[1 6]">                 [0.01 0.02 0.03 0.04 0.05 0.07]              </OEpdf>              <HighLightWeight index="1" type="double" size="[1 6]">                 [4 3 3 3 2 2]              </HighLightWeight>              <LowLightWeight index="1" type="double" size="[1 6]">                 [1 1 1 1 1 1]              </LowLightWeight>            </OverExpCtrl>    </LinearAECtrl>          <HdrAECtrl index="1" type="struct" size="[1 1]">             <Evbias index="1" type="double" size="[1 1]">                [0]             </Evbias>             <ToleranceIn index="1" type="double" size="[1 1]">                 [10.0000 ]             </ToleranceIn>             <ToleranceOut index="1" type="double" size="[1 1]">                 [15.0000 ]             </ToleranceOut>              <LongFrmMode index="1" type="struct" size="[1 1]">          <mode index="1" type="char" size="[1 20]">             NORMAL          </mode>          <SfrmMinLine index="1" type="double" size="[1 1]">             [2]          </SfrmMinLine>                <LfrmModeExpTh index="1" type="double" size="[1 1]">                    [0.62]                </LfrmModeExpTh>             </LongFrmMode>              <StrategyMode index="1" type="char" size="[1 20]">                 LOWLIGHT_PRIOR             </StrategyMode>       <ExpRatioCtrl index="1" type="struct" size="[1 1]">               <ExpRatioType index="1" type="char" size="[1 8]">                  AUTO               </ExpRatioType>         <RatioExpDot index="1" type="double" size="[1 6]">            [0 0.1 0.3 0.5 0.7 1]         </RatioExpDot>         <M2SRatioFix index="1" type="double" size="[1 6]">            [4 4 4 4 4 4]         </M2SRatioFix>         <L2MRatioFix index="1" type="double" size="[1 6]">            [4 4 4 4 4 4]         </L2MRatioFix>                  <M2SRatioMax index="1" type="double" size="[1 6]">            [64 64 64 64 64 64]         </M2SRatioMax>         <L2MRatioMax index="1" type="double" size="[1 6]">            [32 32 30 28 26 24]         </L2MRatioMax>       </ExpRatioCtrl>             <LumaDistTh index="1" type="double" size="[1 1]">                [10]             </LumaDistTh>             <LframeCtrl index="1" type="struct" size="[1 1]">         <OEROILowTh index="1" type="double" size="[1 1]">                    [150.0]                </OEROILowTh>                <LvHighTh index="1" type="double" size="[1 1]">                    [7.5]                </LvHighTh>                <LvLowTh index="1" type="double" size="[1 1]">                    [0.3125]                </LvLowTh>                <LExpLevel index="1" type="double" size="[1 6]">                   [0 0.01 0.03 0.05 0.1 0.2]                </LExpLevel>                <LSetPoint index="1" type="double" size="[1 6]">                   [75 70 65 60 45 40]                </LSetPoint>                <TargetLLLuma index="1" type="double" size="[1 6]">                   [35 32 30 28 25 20]                </TargetLLLuma>                <NonOEPdfTh index="1" type="double" size="[1 6]">                    [0.4 0.45 0.55 0.65 0.75 1]                </NonOEPdfTh>                <LowLightPdfTh index="1" type="double" size="[1 6]">                    [0.20 0.22 0.25 0.3 0.35 0.4]                </LowLightPdfTh>              </LframeCtrl>             <MframeCtrl index="1" type="struct" size="[1 1]">                <MExpLevel index="1" type="double" size="[1 6]">                   [0.05 0.1 0.2 0.5 0.7 1]                </MExpLevel>                <MSetPoint index="1" type="double" size="[1 6]">                   [60 60 55 50 45 40]                </MSetPoint>             </MframeCtrl>             <SframeCtrl index="1" type="struct" size="[1 1]">                <SExpLevel index="1" type="double" size="[1 6]">                   [0 0.05 0.15 0.25 0.4 0.6]                </SExpLevel>                <TargetHLLuma index="1" type="double" size="[1 6]">                   [100 100 100 90 80 70]                </TargetHLLuma>                <SSetPoint index="1" type="double" size="[1 6]">                   [18 18 15 12 12 12]                </SSetPoint>                <HLLumaTolerance index="1" type="double" size="[1 1]">                   [12]                </HLLumaTolerance>                <HLROIExpandEn index="1" type="double" size="[1 1]">                   [0]                </HLROIExpandEn>             </SframeCtrl>          </HdrAECtrl>          </cell>          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            B0        </scene>             <Enable index="1" type="double" size="[1 1]">                [1]             </Enable>             <AecRunInterval index="1" type="double" size="[1 1]">                [0]             </AecRunInterval>             <AecOpType index="1" type="char" size="[1 6]">                AUTO             </AecOpType>             <HistStatsMode index="1" type="char" size="[1 3]">                Y             </HistStatsMode>             <RawStatsMode index="1" type="char" size="[1 3]">                Y             </RawStatsMode>             <YRangeMode index="1" type="char" size="[1 10]">                FULL             </YRangeMode>        <AecSyncTest index="1" type="struct" size="[1 1]">           <Enable index="1" type="double" size="[1 1]">                 [0]           </Enable>           <IntervalFrm index="1" type="double" size="[1 1]">                 [60]           </IntervalFrm>           <AlterExp index="1" type="struct" size="[1 1]">                    <LinearAE index="1" type="cell" size="[1 2]">                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 1]">                             [0.02]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 1]">                             [1]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 1]">                             [1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 1]">                             [0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [1]                          </PIrisGainValue>                </cell>                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 1]">                             [0.020]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 1]">                             [6]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 1]">                             [1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 1]">                             [0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [29]                          </PIrisGainValue>                </cell>                    </LinearAE>                    <HdrAE index="1" type="cell" size="[1 2]">                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 3]">                             [0.01 0.02 0.03]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 3]">                             [1 1 1]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 3]">                             [1 1 1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 3]">                             [0 0 0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [1]                          </PIrisGainValue>                </cell>                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 3]">                             [0.01 0.02 0.03]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 3]">                             [6 6 1]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 3]">                             [1 1 1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 3]">                             [0 0 0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [29]                          </PIrisGainValue>                </cell>                    </HdrAE>                 </AlterExp>             </AecSyncTest>             <AecSpeed index="1" type="struct" size="[1 1]">               <DampOver index="1" type="double" size="[1 1]">                  [0.15]               </DampOver>               <DampUnder index="1" type="double" size="[1 1]">                  [0.45]               </DampUnder>               <DampDark2Bright index="1" type="double" size="[1 1]">                  [0.15]               </DampDark2Bright>               <DampBright2Dark index="1" type="double" size="[1 1]">                  [0.45]               </DampBright2Dark>             </AecSpeed>             <AecDelayFrmNum index="1" type="struct" size="[1 1]">                <BlackDelay index="1" type="double" size="[1 1]">                   [2]                </BlackDelay>                <WhiteDelay index="1" type="double" size="[1 1]">                   [2]                </WhiteDelay>             </AecDelayFrmNum>             <AecFrameRateMode index="1" type="struct" size="[1 1]">                <isFpsFix index="1" type="double" size="[1 1]">                   [1]                </isFpsFix>                <FpsValue index="1" type="double" size="[1 1]">                   [0]                </FpsValue>             </AecFrameRateMode>             <AecAntiFlicker index="1" type="struct" size="[1 1]">                <enable index="1" type="double" size="[1 1]">                   [1]                </enable>                <Frequency index="1" type="char" size="[1 15]">                   FLICKER_50HZ                </Frequency>                <Mode index="1" type="char" size="[1 10]">                   AUTO                </Mode>             </AecAntiFlicker>        <AecInitValue index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">                      <InitTimeValue index="1" type="double" size="[1 1]">                         [0.003]                      </InitTimeValue>                 <InitGainValue index="1" type="double" size="[1 1]">                         [1]                      </InitGainValue>                 <InitIspDgainValue index="1" type="double" size="[1 1]">                         [1]                      </InitIspDgainValue>                 <InitPIrisGainValue index="1" type="double" size="[1 1]">                         [512 ]                  </InitPIrisGainValue>                 <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                         [100]                 </InitDCIrisDutyValue>                </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">                      <InitTimeValue index="1" type="double" size="[1 3]">                         [0.0005 0.003 0.003]                      </InitTimeValue>                 <InitGainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </InitGainValue>                 <InitIspDgainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </InitIspDgainValue>                 <InitPIrisGainValue index="1" type="double" size="[1 1]">                         [512 ]                  </InitPIrisGainValue>                 <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                         [100]                 </InitDCIrisDutyValue>                </HdrAE>             </AecInitValue>        <AecGridWeight index="1" type="double" size="[15 15]">                  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]             </AecGridWeight>        <AecRoute index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">            <TimeDot index="1" type="double" size="[1 6]">                [0 0.04 0.04 0.04 0.04 0.04]            </TimeDot>            <GainDot index="1" type="double" size="[1 6]">                [1 1 4 8 15.5 16]            </GainDot>            <IspDGainDot index="1" type="double" size="[1 6]">                [1 1 1 1 1 2]            </IspDGainDot>            <PIrisDot index="1" type="double" size="[1 6]">                [512 512 512 512 512 512]            </PIrisDot>                             </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">              <LTimeDot index="1" type="double" size="[1 6]">                      [0 0.030 0.030 0.030 0.030 0.030]                   </LTimeDot>                   <MTimeDot index="1" type="double" size="[1 6]">                      [0 0.030 0.030 0.030 0.030 0.030]                   </MTimeDot>                   <STimeDot index="1" type="double" size="[1 6]">                      [0 0.003 0.003 0.003 0.003 0.003]                   </STimeDot>                   <LGainDot index="1" type="double" size="[1 6]">                      [1 1 4 8 15.5 64]                   </LGainDot>                   <MGainDot index="1" type="double" size="[1 6]">                      [1 1 4 8 15.5 64]                   </MGainDot>                   <SGainDot index="1" type="double" size="[1 6]">                      [1 1 4 8 15.5 32]                   </SGainDot>              <LIspDGainDot index="1" type="double" size="[1 6]">                      [1 1 1 1 1 1]                   </LIspDGainDot>              <MIspDGainDot index="1" type="double" size="[1 6]">                      [1 1 1 1 1 1]                   </MIspDGainDot>              <SIspDGainDot index="1" type="double" size="[1 6]">                      [1 1 1 1 1 1]                   </SIspDGainDot>                        <PIrisDot index="1" type="double" size="[1 6]">                      [512 512 512 512 512 512]                   </PIrisDot>                </HdrAE>             </AecRoute>             <AecDNSwitch index="1" type="struct" size="[1 1]">                <DNTrigger index="1" type="double" size="[1 1]">                   [0]                </DNTrigger>                <DNMode index="1" type="char" size="[1 8]">                   DAY                </DNMode>                <FillLightMode index="1" type="double" size="[1 1]">                   [1]                </FillLightMode>                <D2NFacTh index="1" type="double" size="[1 1]">                   [0.15]                </D2NFacTh>                <D2NFrmCnt index="1" type="double" size="[1 1]">                   [15]                </D2NFrmCnt>                <VBNightMode index="1" type="struct" size="[1 1]">                   <Enable index="1" type="double" size="[1 1]">                      [0]                   </Enable>                   <N2DFrmCnt index="1" type="double" size="[1 1]">                      [15]                   </N2DFrmCnt>                   <N2DFacTh index="1" type="double" size="[1 1]">                      [0.3]                   </N2DFacTh>                </VBNightMode>                <IRNightMode index="1" type="struct" size="[1 1]">                   <Enable index="1" type="double" size="[1 1]">                      [0]                   </Enable>                   <IR_rg index="1" type="double" size="[1 1]">                      [1]                   </IR_rg>                   <IR_bg index="1" type="double" size="[1 1]">                      [1]                   </IR_bg>                   <Max_Dis index="1" type="double" size="[1 1]">                      [0.8]                   </Max_Dis>                   <N2DFrmCnt index="1" type="double" size="[1 1]">                      [15]                   </N2DFrmCnt>                   <N2DFacTh index="1" type="double" size="[1 1]">                      [0.3]                   </N2DFacTh>                   <VBPercent index="1" type="double" size="[1 1]">                      [0.15]                   </VBPercent>                </IRNightMode>             </AecDNSwitch>        <AecIrisCtrl index="1" type="struct" size="[1 1]">                   <Enable index="1" type="double" size="[1 1]">                      [0]                   </Enable>                   <IrisType index="1" type="char" size="[1 3]">                      DC                   </IrisType>              <PIrisAttr index="1" type="struct" size="[1 1]">                        <TotalStep index="1" type="double" size="[1 1]">                           [81]                       </TotalStep>                       <EffcStep index="1" type="double" size="[1 1]">                           [44]                       </EffcStep>                       <ZeroIsMax index="1" type="double" size="[1 1]">                           [1]                       </ZeroIsMax>                       <StepTable index="1" type="double" size="[1 81]">                           [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]                       </StepTable>               </PIrisAttr>              <DCIrisAttr index="1" type="struct" size="[1 1]">                        <Kp index="1" type="double" size="[1 1]">                           [0.5]                       </Kp>                       <Ki index="1" type="double" size="[1 1]">                           [0.2]                       </Ki>                       <Kd index="1" type="double" size="[1 1]">                           [0.3]                       </Kd>                       <MinPwmDuty index="1" type="double" size="[1 1]">                           [0]                       </MinPwmDuty>                       <MaxPwmDuty index="1" type="double" size="[1 1]">                           [100]                       </MaxPwmDuty>                       <OpenPwmDuty index="1" type="double" size="[1 1]">                           [40]                       </OpenPwmDuty>                       <ClosePwmDuty index="1" type="double" size="[1 1]">                           [22]                       </ClosePwmDuty>               </DCIrisAttr>             </AecIrisCtrl>        <AecManualCtrl index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">                 <ManualTimeEn index="1" type="double" size="[1 1]">                         [1]                      </ManualTimeEn>                 <ManualGainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualGainEn>                 <ManualIspDgainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIspDgainEn>                 <ManualIrisEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIrisEn>                      <TimeValue index="1" type="double" size="[1 1]">                         [0.01]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 1]">                         [1]                      </GainValue>                 <IspDGainValue index="1" type="double" size="[1 1]">                         [1]                      </IspDGainValue>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1.4]                      </PIrisGainValue>                 <DCIrisValue index="1" type="double" size="[1 1]">                         [30]                      </DCIrisValue>                </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">            <ManualTimeEn index="1" type="double" size="[1 1]">                         [1]                      </ManualTimeEn>                 <ManualGainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualGainEn>                 <ManualIspDgainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIspDgainEn>                 <ManualIrisEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIrisEn>                      <TimeValue index="1" type="double" size="[1 3]">                         [0.01 0.02 0.03]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </GainValue>                 <IspDGainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </IspDGainValue>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1.4]                      </PIrisGainValue>                 <DCIrisValue index="1" type="double" size="[1 1]">                         [30]                      </DCIrisValue>                </HdrAE>             </AecManualCtrl>        <LinearAECtrl index="1" type="struct" size="[1 1]">                <RawStatsEn index="1" type="double" size="[1 1]">                    [1]                </RawStatsEn>               <SetPoint index="1" type="double" size="[1 1]">                  [55]               </SetPoint>               <NightSetpoint index="1" type="double" size="[1 1]">                  [35]               </NightSetpoint>               <DySetPointEn index="1" type="double" size="[1 1]">                  [1]               </DySetPointEn>               <DynamicSetpoint index="1" type="struct" size="[1 1]">                     <ExpLevel index="1" type="double" size="[1 6]">                        [0 0.05 0.1 0.3 0.5 0.7]                     </ExpLevel>                     <DySetpoint index="1" type="double" size="[1 6]">                         [35 35 30 23 18 15]                     </DySetpoint>               </DynamicSetpoint>               <Evbias index="1" type="double" size="[1 1]">                  [0]               </Evbias>                <ToleranceIn index="1" type="double" size="[1 1]">                    [10.0000 ]                </ToleranceIn>                <ToleranceOut index="1" type="double" size="[1 1]">                    [15.0000 ]                </ToleranceOut>                <StrategyMode index="1" type="char" size="[1 20]">                  LOWLIGHT_PRIOR               </StrategyMode>               <BackLightCtrl index="1" type="struct" size="[1 1]">                  <Enable index="1" type="double" size="[1 1]">                     [0]                  </Enable>                  <MeasArea index="1" type="char" size="[1 8]">                     AUTO                  </MeasArea>                 <LumaDistTh index="1" type="double" size="[1 1]">                    [10]                 </LumaDistTh>                               <OEROILowTh index="1" type="double" size="[1 1]">                    [150]                 </OEROILowTh>                 <LvHighTh index="1" type="double" size="[1 1]">                    [7.5]                 </LvHighTh>                 <LvLowTh index="1" type="double" size="[1 1]">                    [0.3125]                 </LvLowTh>                 <ExpLevel index="1" type="double" size="[1 6]">                    [0.05 0.1 0.2 0.3 0.5 0.7]                 </ExpLevel>                 <NonOEPdfTh index="1" type="double" size="[1 6]">                    [0.4 0.45 0.55 0.65 0.75 1]                 </NonOEPdfTh>                 <LowLightPdfTh index="1" type="double" size="[1 6]">                    [0.20 0.20 0.22 0.25 0.3 0.35]                 </LowLightPdfTh>                 <TargetLLLuma index="1" type="double" size="[1 6]">                    [25 22 20 18 15 12]                 </TargetLLLuma>               </BackLightCtrl>               <OverExpCtrl index="1" type="struct" size="[1 1]">                  <Enable index="1" type="double" size="[1 1]">                     [0]                  </Enable>                 <HighLightTh index="1" type="double" size="[1 1]">                    [150]                 </HighLightTh>                               <LowLightTh index="1" type="double" size="[1 1]">                    [30]                 </LowLightTh>                 <MaxWeight index="1" type="double" size="[1 1]">                    [8]                 </MaxWeight>                 <OEpdf index="1" type="double" size="[1 6]">                    [0.01 0.02 0.03 0.04 0.05 0.07]                 </OEpdf>                 <HighLightWeight index="1" type="double" size="[1 6]">                    [4 3 3 3 2 2]                 </HighLightWeight>                 <LowLightWeight index="1" type="double" size="[1 6]">                    [1 1 1 1 1 1]                 </LowLightWeight>               </OverExpCtrl>        </LinearAECtrl>             <HdrAECtrl index="1" type="struct" size="[1 1]">                <Evbias index="1" type="double" size="[1 1]">                   [0]                </Evbias>                <ToleranceIn index="1" type="double" size="[1 1]">                    [10.0000 ]                </ToleranceIn>                <ToleranceOut index="1" type="double" size="[1 1]">                    [15.0000 ]                </ToleranceOut>                 <LongFrmMode index="1" type="struct" size="[1 1]">              <mode index="1" type="char" size="[1 20]">                 NORMAL              </mode>              <SfrmMinLine index="1" type="double" size="[1 1]">                 [2]              </SfrmMinLine>                   <LfrmModeExpTh index="1" type="double" size="[1 1]">                       [0.62]                   </LfrmModeExpTh>                </LongFrmMode>                 <StrategyMode index="1" type="char" size="[1 20]">                    LOWLIGHT_PRIOR                </StrategyMode>           <ExpRatioCtrl index="1" type="struct" size="[1 1]">                  <ExpRatioType index="1" type="char" size="[1 8]">                     AUTO                  </ExpRatioType>             <RatioExpDot index="1" type="double" size="[1 6]">                [0 0.1 0.3 0.5 0.7 1]             </RatioExpDot>             <M2SRatioFix index="1" type="double" size="[1 6]">                [4 4 4 4 4 4]             </M2SRatioFix>             <L2MRatioFix index="1" type="double" size="[1 6]">                [4 4 4 4 4 4]             </L2MRatioFix>                      <M2SRatioMax index="1" type="double" size="[1 6]">                [64 64 64 64 64 64]             </M2SRatioMax>             <L2MRatioMax index="1" type="double" size="[1 6]">                [32 32 30 28 26 24]             </L2MRatioMax>           </ExpRatioCtrl>                <LumaDistTh index="1" type="double" size="[1 1]">                   [10]                </LumaDistTh>                <LframeCtrl index="1" type="struct" size="[1 1]">             <OEROILowTh index="1" type="double" size="[1 1]">                       [150.0]                   </OEROILowTh>                   <LvHighTh index="1" type="double" size="[1 1]">                       [7.5]                   </LvHighTh>                   <LvLowTh index="1" type="double" size="[1 1]">                       [0.3125]                   </LvLowTh>                   <LExpLevel index="1" type="double" size="[1 6]">                      [0 0.01 0.03 0.05 0.1 0.2]                   </LExpLevel>                   <LSetPoint index="1" type="double" size="[1 6]">                      [75 70 65 60 45 40]                   </LSetPoint>                   <TargetLLLuma index="1" type="double" size="[1 6]">                      [35 32 30 28 25 20]                   </TargetLLLuma>                   <NonOEPdfTh index="1" type="double" size="[1 6]">                       [0.4 0.45 0.55 0.65 0.75 1]                   </NonOEPdfTh>                   <LowLightPdfTh index="1" type="double" size="[1 6]">                       [0.20 0.22 0.25 0.3 0.35 0.4]                   </LowLightPdfTh>                 </LframeCtrl>                <MframeCtrl index="1" type="struct" size="[1 1]">                   <MExpLevel index="1" type="double" size="[1 6]">                      [0.05 0.1 0.2 0.5 0.7 1]                   </MExpLevel>                   <MSetPoint index="1" type="double" size="[1 6]">                      [60 60 55 50 45 40]                   </MSetPoint>                </MframeCtrl>                <SframeCtrl index="1" type="struct" size="[1 1]">                   <SExpLevel index="1" type="double" size="[1 6]">                      [0 0.05 0.15 0.25 0.4 0.6]                   </SExpLevel>                   <TargetHLLuma index="1" type="double" size="[1 6]">                      [100 100 100 90 80 70]                   </TargetHLLuma>                   <SSetPoint index="1" type="double" size="[1 6]">                      [18 18 15 12 12 12]                   </SSetPoint>                   <HLLumaTolerance index="1" type="double" size="[1 1]">                      [12]                   </HLLumaTolerance>                   <HLROIExpandEn index="1" type="double" size="[1 1]">                      [0]                   </HLROIExpandEn>                </SframeCtrl>             </HdrAECtrl>          </cell>          </TunePara>       </AEC>       <AF index="1" type="struct" size="[1 1]">          <Window index="1" type="struct" size="[1 1]">             <h_offs index="1" type="double" size="[1 1]">                [0]             </h_offs>             <v_offs index="1" type="double" size="[1 1]">                [0]             </v_offs>             <h_size index="1" type="double" size="[1 1]">                [0]             </h_size>             <v_size index="1" type="double" size="[1 1]">                [0]             </v_size>          </Window>          <afmeas_iso index="1" type="cell" size="[1 13]">              <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                   <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                   <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>          </afmeas_iso>          <fixed_mode index="1" type="struct" size="[1 1]">             <code index="1" type="double" size="[1 1]">                [8]             </code>          </fixed_mode>          <macro_mode index="1" type="struct" size="[1 1]">             <code index="1" type="double" size="[1 1]">                [32]             </code>          </macro_mode>          <infinity_mode index="1" type="struct" size="[1 1]">             <code index="1" type="double" size="[1 1]">                [32]             </code>          </infinity_mode>          <contrast_af index="1" type="struct" size="[1 1]">             <enable index="1" type="double" size="[1 1]">                [1]             </enable>             <AfSearchStrategy index="1" type="char" size="[1 14]">                ADAPTIVE_RANGE             </AfSearchStrategy>             <FullDir index="1" type="char" size="[1 8]">                ADAPTIVE             </FullDir>             <FullRangeTbl index="1" type="double" size="[1 9]">                [0 8 16 24 32 40 48 56 64]             </FullRangeTbl>             <AdaptiveDir index="1" type="char" size="[1 8]">                ADAPTIVE             </AdaptiveDir>             <AdaptRangeTbl index="1" type="double" size="[1 9]">                [0 8 16 24 32 40 48 56 64]             </AdaptRangeTbl>             <TrigThers index="1" type="double" size="[1 1]">                [0.075]             </TrigThers>             <StableThers index="1" type="double" size="[1 1]">                [0.02]             </StableThers>             <StableFrames index="1" type="double" size="[1 1]">                [3]             </StableFrames>             <StableTime index="1" type="double" size="[1 1]">                [200]             </StableTime>             <OutFocusValue index="1" type="double" size="[1 1]">                [50]             </OutFocusValue>             <OutFocusPos index="1" type="double" size="[1 1]">                [30]             </OutFocusPos>          </contrast_af>          <laser_af index="1" type="struct" size="[1 3]">             <enable index="1" type="double" size="[1 1]">                [0]             </enable>             <vcmDot index="1" type="double" size="[1 7]">                [0 16 32 40 48 56 64]             </vcmDot>             <distanceDot index="1" type="double" size="[1 7]">                [0.2 0.24 0.34 0.4 0.66 1 3]             </distanceDot>          </laser_af>          <pdaf index="1" type="struct" size="[1 1]">             <enable index="1" type="double" size="[1 1]">                [0]             </enable>          </pdaf>          <vcmConfig index="1" type="struct" size="[1 1]">             <startCurrent index="1" type="double" size="[1 1]">                [-1]             </startCurrent>             <ratedCurrent index="1" type="double" size="[1 1]">                [-1]             </ratedCurrent>             <stepMode index="1" type="double" size="[1 1]">                [-1]             </stepMode>             <extraDelay index="1" type="double" size="[1 1]">                [0]             </extraDelay>          </vcmConfig>       </AF>          <MERGE index="1" type="struct" size="[1 1]">                 <EnvLv index="1" type="double" size="[1 13]">                     [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                 </EnvLv>                 <OECurve_smooth index="1" type="double" size="[1 13]">                     [0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4]                 </OECurve_smooth>                 <OECurve_offset index="1" type="double" size="[1 13]">                     [210 210 210 210 210 210 210 210 210 210 210 210 210]                 </OECurve_offset>                 <MoveCoef index="1" type="double" size="[1 13]">                     [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                 </MoveCoef>                 <MDCurveLM_smooth index="1" type="double" size="[1 13]">                     [0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4]                 </MDCurveLM_smooth>                 <MDCurveLM_offset index="1" type="double" size="[1 13]">                     [0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.38]                 </MDCurveLM_offset>                 <MDCurveMS_smooth index="1" type="double" size="[1 13]">                     [0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4]                 </MDCurveMS_smooth>                 <MDCurveMS_offset index="1" type="double" size="[1 13]">                     [0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.38]                 </MDCurveMS_offset>                 <OECurve_damp index="1" type="double" size="[1 1]">                   [0.3]                </OECurve_damp>                <MDCurveLM_damp index="1" type="double" size="[1 1]">                  [0.3]                </MDCurveLM_damp>                <MDCurveMS_damp index="1" type="double" size="[1 1]">                   [0.3]                </MDCurveMS_damp>          </MERGE>          <TMO index="1" type="struct" size="[1 1]">        <Enable index="1" type="cell" size="[1 3]">                    <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <En index="1" type="double" size="[1 1]">                         [1.0000 ]                     </En>        </cell>                    <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <En index="1" type="double" size="[1 1]">                         [1.0000 ]                     </En>        </cell>                     <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <En index="1" type="double" size="[1 1]">                         [0 ]                     </En>        </cell>                  </Enable>          <GlobalLuma index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <GlobalLumaMode index="1" type="double" size="[1 1]">                         [1.0000 ]                     </GlobalLumaMode>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <GlobalLuma index="1" type="double" size="[1 13]">                         [0.2500 0.2500 0.2500 0.2500 0.1700 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1]                     </GlobalLuma>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <GlobalLumaMode index="1" type="double" size="[1 1]">                         [1.0000 ]                     </GlobalLumaMode>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <GlobalLuma index="1" type="double" size="[1 13]">                         [0.2500 0.2500 0.2500 0.2500 0.1700 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1]                     </GlobalLuma>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <GlobalLumaMode index="1" type="double" size="[1 1]">                         [1.0000 ]                     </GlobalLumaMode>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <GlobalLuma index="1" type="double" size="[1 13]">                         [0.2500 0.2500 0.2500 0.2500 0.1700 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1]                     </GlobalLuma>        </cell>                 </GlobalLuma>                 <DetailsHighLight index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <DetailsHighLightMode index="1" type="double" size="[1 1]">                         [0.0000 ]                     </DetailsHighLightMode>                     <OEPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </OEPdf>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsHighLight index="1" type="double" size="[1 13]">                         [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </DetailsHighLight>                    </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <DetailsHighLightMode index="1" type="double" size="[1 1]">                         [0.0000 ]                     </DetailsHighLightMode>                     <OEPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </OEPdf>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsHighLight index="1" type="double" size="[1 13]">                         [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </DetailsHighLight>                    </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <DetailsHighLightMode index="1" type="double" size="[1 1]">                         [0.0000 ]                     </DetailsHighLightMode>                     <OEPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </OEPdf>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsHighLight index="1" type="double" size="[1 13]">                         [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </DetailsHighLight>                    </cell>                 </DetailsHighLight>                 <DetailsLowLight index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <DetailsLowLightMode index="1" type="double" size="[1 1]">                         [2.0000 ]                     </DetailsLowLightMode>                     <FocusLuma index="1" type="double" size="[1 13]">                         [1 15 20 25 30 35 40 50 60 70 80 90 100]                     </FocusLuma>                     <DarkPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </DarkPdf>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsLowLight index="1" type="double" size="[1 13]">                         [1 1 1 1 1 1 1 1 1 1 1 1 1]                     </DetailsLowLight>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <DetailsLowLightMode index="1" type="double" size="[1 1]">                         [2.0000 ]                     </DetailsLowLightMode>                     <FocusLuma index="1" type="double" size="[1 13]">                         [1 15 20 25 30 35 40 50 60 70 80 90 100]                     </FocusLuma>                     <DarkPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </DarkPdf>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsLowLight index="1" type="double" size="[1 13]">                         [1 1 1 1 1 1 1 1 1 1 1 1 1]                     </DetailsLowLight>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <DetailsLowLightMode index="1" type="double" size="[1 1]">                         [2.0000 ]                     </DetailsLowLightMode>                     <FocusLuma index="1" type="double" size="[1 13]">                         [1 15 20 25 30 35 40 50 60 70 80 90 100]                     </FocusLuma>                     <DarkPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </DarkPdf>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsLowLight index="1" type="double" size="[1 13]">                         [1 1 1 1 1 1 1 1 1 1 1 1 1]                     </DetailsLowLight>        </cell>                 </DetailsLowLight>          <GlobalTMO index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>        <Enable index="1" type="double" size="[1 1]">                   [0]                  </Enable>        <IIR index="1" type="double" size="[1 1]">                   [64]                  </IIR>                 <Mode index="1" type="double" size="[1 1]">                     [0]                  </Mode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <GlobalTMOStrength index="1" type="double" size="[1 13]">                     [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                  </GlobalTMOStrength>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>        <Enable index="1" type="double" size="[1 1]">                   [0]                  </Enable>        <IIR index="1" type="double" size="[1 1]">                   [64]                  </IIR>                 <Mode index="1" type="double" size="[1 1]">                     [0]                  </Mode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <GlobalTMOStrength index="1" type="double" size="[1 13]">                     [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                  </GlobalTMOStrength>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>        <Enable index="1" type="double" size="[1 1]">                   [0]                  </Enable>        <IIR index="1" type="double" size="[1 1]">                   [64]                  </IIR>                 <Mode index="1" type="double" size="[1 1]">                     [0]                  </Mode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <GlobalTMOStrength index="1" type="double" size="[1 13]">                     [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                  </GlobalTMOStrength>        </cell>          </GlobalTMO>          <LocalTMO index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                 <LocalTMOMode index="1" type="double" size="[1 1]">                     [0]                  </LocalTMOMode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <LocalTMOStrength index="1" type="double" size="[1 13]">                     [0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3]                  </LocalTMOStrength>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                 <LocalTMOMode index="1" type="double" size="[1 1]">                     [0]                  </LocalTMOMode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <LocalTMOStrength index="1" type="double" size="[1 13]">                     [0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3]                  </LocalTMOStrength>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                 <LocalTMOMode index="1" type="double" size="[1 1]">                     [0]                  </LocalTMOMode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <LocalTMOStrength index="1" type="double" size="[1 13]">                     [0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3]                  </LocalTMOStrength>        </cell>          </LocalTMO>    <Damp index="1" type="double" size="[1 1]">               [0.3]    </Damp>             </TMO>          <DRC index="1" type="struct" size="[1 1]">        <CalibPara index="1" type="cell" size="[1 1]">                    <cell index="1" type="struct" size="[1 1]">        <Scene index="1" type="char" size="[1 8]">                   A0                   </Scene>                     <sw_adrc_position index="1" type="int" size="[1 1]">                         [4096 ]                     </sw_adrc_position>                     <sw_adrc_offset_pow2 index="1" type="int" size="[1 1]">                         [8 ]                     </sw_adrc_offset_pow2>                     <sw_adrc_lpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_lpdetail_ratio>                     <sw_adrc_hpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_hpdetail_ratio>                     <sw_adrc_weipre_frame index="1" type="int" size="[1 1]">                         [255 ]                     </sw_adrc_weipre_frame>                     <sw_adrc_weicur_pix index="1" type="int" size="[1 1]">                         [96 ]                     </sw_adrc_weicur_pix>                     <sw_adrc_edge_scl index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_edge_scl>                     <sw_adrc_motion_scl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_motion_scl>                     <sw_adrc_force_sgm_inv0 index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_force_sgm_inv0>                     <sw_adrc_space_sgm_inv0 index="1" type="int" size="[1 1]">                         [3968 ]                     </sw_adrc_space_sgm_inv0>                     <sw_adrc_space_sgm_inv1 index="1" type="int" size="[1 1]">                         [4068 ]                     </sw_adrc_space_sgm_inv1>                     <sw_adrc_range_sgm_inv0 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv0>                     <sw_adrc_range_sgm_inv1 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv1>                     <sw_adrc_weig_bilat index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_weig_bilat>                     <sw_adrc_weig_maxl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_weig_maxl>                     <sw_adrc_min_ogain index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_min_ogain>                     <iir_frame index="1" type="int" size="[1 1]">                         [16 ]                     </iir_frame>                     <adrc_gain index="1" type="int" size="[1 1]">                         [1024 ]                     </adrc_gain>                     <sw_adrc_scale_y0 index="1" type="int" size="[1 17]">                         [0 2 20 76 193 381 631 772 919 1066 1211 1479 1700 1863 1968 2024 2048 ]                     </sw_adrc_scale_y0>        </cell>                  </CalibPara>          <TuningPara index="1" type="cell" size="[1 1]">                    <cell index="1" type="struct" size="[1 1]">        <Scene index="1" type="char" size="[1 8]">                   A0                   </Scene>                     <sw_adrc_position index="1" type="int" size="[1 1]">                         [4096 ]                     </sw_adrc_position>                     <sw_adrc_offset_pow2 index="1" type="int" size="[1 1]">                         [8 ]                     </sw_adrc_offset_pow2>                     <sw_adrc_lpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_lpdetail_ratio>                     <sw_adrc_hpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_hpdetail_ratio>                     <sw_adrc_weipre_frame index="1" type="int" size="[1 1]">                         [255 ]                     </sw_adrc_weipre_frame>                     <sw_adrc_weicur_pix index="1" type="int" size="[1 1]">                         [96 ]                     </sw_adrc_weicur_pix>                     <sw_adrc_edge_scl index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_edge_scl>                     <sw_adrc_motion_scl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_motion_scl>                     <sw_adrc_force_sgm_inv0 index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_force_sgm_inv0>                     <sw_adrc_space_sgm_inv0 index="1" type="int" size="[1 1]">                         [3968 ]                     </sw_adrc_space_sgm_inv0>                     <sw_adrc_space_sgm_inv1 index="1" type="int" size="[1 1]">                         [4068 ]                     </sw_adrc_space_sgm_inv1>                     <sw_adrc_range_sgm_inv0 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv0>                     <sw_adrc_range_sgm_inv1 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv1>                     <sw_adrc_weig_bilat index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_weig_bilat>                     <sw_adrc_weig_maxl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_weig_maxl>                     <sw_adrc_min_ogain index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_min_ogain>                     <iir_frame index="1" type="int" size="[1 1]">                         [16 ]                     </iir_frame>                     <adrc_gain index="1" type="int" size="[1 1]">                         [1024 ]                     </adrc_gain>                     <sw_adrc_scale_y0 index="1" type="int" size="[1 17]">                         [0 2 20 76 193 381 631 772 919 1066 1211 1479 1700 1863 1968 2024 2048 ]                     </sw_adrc_scale_y0>        </cell>                 </TuningPara>             </DRC>         <BLC index="1" type="struct" size="[1 1]">
            <Enable index="1" type="double" size="[1 1]">
                [1 ]
            </Enable>
            <Mode index="1" type="cell" size="[1 2]">
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 6]">
                        normal
                    </Name>
                    <ISO index="1" type="double" size="[1 13]">
                        [50.0000 100.0000 200.0000 400.0000 800.0000 1600.0000 3200.0000 10000.0000 12800.0000 25600.0000 51200.0000 102400.0000 204800.0000 ]
                    </ISO>
                    <black_level index="1" type="double" size="[4 13]">
                        [64.0000 63.2500 62.2500 61.7500  61.7500 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        64.0000 61.8750 62.9375 62.0625 62.0625 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        63.0000 62.1875 63.3750 61.8125 61.8125 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        65.0000 63.6875 64.1250 62.5625 62.5625 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 ]
                    </black_level>
                </cell>
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 3]">
                        hdr
                    </Name>
                    <ISO index="1" type="double" size="[1 13]">
                        [50.0000 100.0000 200.0000 400.0000 800.0000 1600.0000 3200.0000 10000.0000 12800.0000 25600.0000 51200.0000 102400.0000 204800.0000 ]
                    </ISO>
                    <black_level index="1" type="double" size="[4 13]">
                        [64.0000 63.2500 62.2500 61.7500  61.7500 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        64.0000 61.8750 62.9375 62.0625 62.0625 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        63.0000 62.1875 63.3750 61.8125 61.8125 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        65.0000 63.6875 64.1250 62.5625 62.5625 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 ]
                    </black_level>
                </cell>
            </Mode>
        </BLC>
      <DPCC index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">             [1]          </Enable>    <Version index="1" type="char" size="[1 2]">             V1          </Version>    <Fast_mode index="1" type="struct" size="[1 1]">    <Fast_mode_enable index="1" type="double" size="[1 1]">             [0]          </Fast_mode_enable>          <ISO index="1" type="double" size="[1 13]">             [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400  204800]          </ISO>          <Single_enable index="1" type="double" size="[1 1]">             [0]          </Single_enable>    <Single_level index="1" type="double" size="[1 13]">             [0 0 0 0 0 0 0 0 0 0 0 0 0]          </Single_level>    <Double_enable index="1" type="double" size="[1 1]">             [0]          </Double_enable>    <Double_level index="1" type="double" size="[1 13]">             [0 0 0 0 0 0 0 0 0 0 0 0 0]          </Double_level>    <Triple_enable index="1" type="double" size="[1 1]">             [0]          </Triple_enable>    <Triple_level index="1" type="double" size="[1 13]">             [0 0 0 0 0 0 0 0 0 0 0 0 0]          </Triple_level>    </Fast_mode>             <Expert_mode index="1" type="struct" size="[1 1]">                 <ISO index="1" type="double" size="[1 13]">                     [50.0000 100.0000 200.0000 400.0000 800.0000 1500.0000 1507.0000 1510.0000 3200.0000 6400.0000 12800.0000 102400.0000 204800.0000 ]                 </ISO>                 <Stage1_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </Stage1_enable>                 <grayscale_mode index="1" type="double" size="[1 1]">                     [0 ]                 </grayscale_mode>                 <rk_out_sel index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </rk_out_sel>                 <dpcc_out_sel index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </dpcc_out_sel>                 <stage1_rb_3x3 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 1 1 1 0 0 0 ]                 </stage1_rb_3x3>                 <stage1_g_3x3 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 1 1 1 0 0 0 ]                 </stage1_g_3x3>                 <stage1_inc_rb_center index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </stage1_inc_rb_center>                 <stage1_inc_g_center index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </stage1_inc_g_center>                 <stage1_use_fix_set index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </stage1_use_fix_set>                 <stage1_use_set1 index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </stage1_use_set1>                 <stage1_use_set2 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </stage1_use_set2>                 <stage1_use_set3 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </stage1_use_set3>                 <set_cell index="1" type="cell" size="[1 3]">                     <cell index="1" type="struct" size="[1 1]">             <RK index="1" type="struct" size="[1 1]">                 <RK_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RK_red_blue_enable>                 <RK_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RK_green_enable>                 <rb_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_sw_mindis>                 <g_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_sw_mindis>                 <sw_dis_scale_min index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_min>                 <sw_dis_scale_max index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_max>             </RK>             <LC index="1" type="struct" size="[1 1]">                 <LC_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </LC_red_blue_enable>                 <LC_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </LC_green_enable>                 <rb_line_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8  ]                 </rb_line_thr>                 <g_line_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8  ]                 </g_line_thr>                 <rb_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4]                 </rb_line_mad_fac>                 <g_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </g_line_mad_fac>             </LC>             <PG index="1" type="struct" size="[1 1]">                 <PG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </PG_red_blue_enable>                 <PG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </PG_green_enable>                 <rb_pg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_pg_fac>                 <g_pg_fac index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_pg_fac>             </PG>             <RND index="1" type="struct" size="[1 1]">                 <RND_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RND_red_blue_enable>                 <RND_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RND_green_enable>                 <rb_rnd_thr index="1" type="double" size="[1 13]">                     [10 10 10 10 10 10 10 10 10 10 10 10 10  ]                 </rb_rnd_thr>                 <g_rnd_thr index="1" type="double" size="[1 13]">                     [10 10 10 10 10 10 10 10 10 10 10 10 10  ]                 </g_rnd_thr>                 <rb_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </rb_rnd_offs>                 <g_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_rnd_offs>             </RND>             <RG index="1" type="struct" size="[1 1]">                 <RG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RG_red_blue_enable>                 <RG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RG_green_enable>                 <rb_rg_fac index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32 ]                 </rb_rg_fac>                 <g_rg_fac index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32 ]                 </g_rg_fac>             </RG>             <RO index="1" type="struct" size="[1 1]">                 <RO_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_red_blue_enable>                 <RO_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_green_enable>                 <rb_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2 ]                 </rb_ro_lim>                 <g_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2 ]                 </g_ro_lim>             </RO>                     </cell>                     <cell index="2" type="struct" size="[1 1]">            <RK index="1" type="struct" size="[1 1]">                 <RK_red_blue_enable index="1" type="double" size="[1 13]">                    [ 0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </RK_red_blue_enable>                 <RK_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RK_green_enable>                 <rb_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_sw_mindis>                 <g_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_sw_mindis>                 <sw_dis_scale_min index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_min>                 <sw_dis_scale_max index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_max>             </RK>             <LC index="1" type="struct" size="[1 1]">                 <LC_red_blue_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </LC_red_blue_enable>                 <LC_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </LC_green_enable>                 <rb_line_thr index="1" type="double" size="[1 13]">                     [16 16 16 16 16 16 16 16 16 16 16 16 16]                 </rb_line_thr>                 <g_line_thr index="1" type="double" size="[1 13]">                     [24 24 24 24 24 24 24 24 24 24 24 24 24 ]                 </g_line_thr>                 <rb_line_mad_fac index="1" type="double" size="[1 13]">                     [16 16 16 16 16 16 16 16 16 16 16 16 16]                 </rb_line_mad_fac>                 <g_line_mad_fac index="1" type="double" size="[1 13]">                     [12 12 8 1 1 1 1 1 1 1 1 1 1  ]                 </g_line_mad_fac>             </LC>             <PG index="1" type="struct" size="[1 1]">                 <PG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </PG_red_blue_enable>                 <PG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </PG_green_enable>                 <rb_pg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_pg_fac>                 <g_pg_fac index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_pg_fac>             </PG>             <RND index="1" type="struct" size="[1 1]">                 <RND_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RND_red_blue_enable>                 <RND_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RND_green_enable>                 <rb_rnd_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </rb_rnd_thr>                 <g_rnd_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </g_rnd_thr>                 <rb_rnd_offs index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_rnd_offs>                 <g_rnd_offs index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_rnd_offs>             </RND>             <RG index="1" type="struct" size="[1 1]">                 <RG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RG_red_blue_enable>                 <RG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RG_green_enable>                 <rb_rg_fac index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </rb_rg_fac>                 <g_rg_fac index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </g_rg_fac>             </RG>             <RO index="1" type="struct" size="[1 1]">                 <RO_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_red_blue_enable>                 <RO_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RO_green_enable>                 <rb_ro_lim index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </rb_ro_lim>                 <g_ro_lim index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_ro_lim>        </RO>                     </cell>                     <cell index="3" type="struct" size="[1 1]">        <RK index="1" type="struct" size="[1 1]">                 <RK_red_blue_enable index="1" type="double" size="[1 13]">                    [ 0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RK_red_blue_enable>                 <RK_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0   ]                 </RK_green_enable>                 <rb_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_sw_mindis>                 <g_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_sw_mindis>                 <sw_dis_scale_min index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </sw_dis_scale_min>                 <sw_dis_scale_max index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_max>             </RK>             <LC index="1" type="struct" size="[1 1]">                 <LC_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </LC_red_blue_enable>                 <LC_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </LC_green_enable>                 <rb_line_thr index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32 ]                 </rb_line_thr>                 <g_line_thr index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32  ]                 </g_line_thr>                 <rb_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_line_mad_fac>                 <g_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </g_line_mad_fac>             </LC>             <PG index="1" type="struct" size="[1 1]">                 <PG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </PG_red_blue_enable>                 <PG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </PG_green_enable>                 <rb_pg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_pg_fac>                 <g_pg_fac index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_pg_fac>             </PG>             <RND index="1" type="struct" size="[1 1]">                 <RND_red_blue_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </RND_red_blue_enable>                 <RND_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RND_green_enable>                 <rb_rnd_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8 ]                 </rb_rnd_thr>                 <g_rnd_thr index="1" type="double" size="[1 13]">                     [6 6 6 6 6 6 6 6 6 6 6 6 6]                 </g_rnd_thr>                 <rb_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3]                 </rb_rnd_offs>                 <g_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_rnd_offs>             </RND>             <RG index="1" type="struct" size="[1 1]">                 <RG_red_blue_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RG_red_blue_enable>                 <RG_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RG_green_enable>                 <rb_rg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_rg_fac>                 <g_rg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4]                 </g_rg_fac>             </RG>             <RO index="1" type="struct" size="[1 1]">                 <RO_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_red_blue_enable>                 <RO_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_green_enable>                 <rb_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2]                 </rb_ro_lim>                 <g_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2]                 </g_ro_lim>        </RO>                     </cell>                 </set_cell>             </Expert_mode>    <dpcc_pdaf index="1" type="struct" size="[1 1]">      <pdaf_en index="1" type="double" size="[1 1]">               [0]            </pdaf_en>      <pdaf_point_en index="1" type="double" size="[1 16]">               [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]            </pdaf_point_en>      <pdaf_offsetx index="1" type="double" size="[1 1]">               [0]            </pdaf_offsetx>      <pdaf_offsety index="1" type="double" size="[1 1]">               [0]            </pdaf_offsety>            <pdaf_wrapx_num index="1" type="double" size="[1 1]">               [0]            </pdaf_wrapx_num>      <pdaf_wrapy_num index="1" type="double" size="[1 1]">               [0]            </pdaf_wrapy_num>               <point_x index="1" type="double" size="[1 16]">               [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]            </point_x>       <point_y index="1" type="double" size="[1 16]">               [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]            </point_y>       <point_forword_med index="1" type="double" size="[1 1]">               [0]            </point_forword_med>    </dpcc_pdaf>             <sensor_dpcc index="1" type="struct" size="[1 1]">               <sensor_dpcc_auto_en index="1" type="double" size="[1 1]">                     [0]               </sensor_dpcc_auto_en>               <max_level index="1" type="double" size="[1 1]">               [20]               </max_level>             <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1500 1507 1510 3200 6400 12800 102400  204800]                </ISO>             <level_single index="1" type="double" size="[1 13]">                      [19 19 19 19 19 19 19 19 19 19 19 19  19]              </level_single>             <level_multiple index="1" type="double" size="[1 13]">                 [19 19 19 19 19 19 19 19 19 19 19 19  19]              </level_multiple>             </sensor_dpcc>       </DPCC>       <BAYERNR index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">             [0]          </Enable>    <Version index="1" type="char" size="[1 2]">             V1          </Version>    <Mode index="1" type="cell" size="[1 3]">      <cell index="1" type="struct" size="[1 1]">              <Name index="1" type="char" size="[1 8]">                   normal              </Name>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>         <cell index="2" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>       </Setting>      </cell>      <cell index="1" type="struct" size="[1 1]">              <Name index="1" type="char" size="[1 8]">                   hdr              </Name>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>         <cell index="2" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>       </Setting>      </cell>      <cell index="1" type="struct" size="[1 1]">              <Name index="1" type="char" size="[1 8]">                   gray              </Name>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>         <cell index="2" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>       </Setting>      </cell>    </Mode>       </BAYERNR>         <LSC index="1" type="struct" size="[1 1]">
            <enable index="1" type="char" size="[1 1]">
                [1]
            </enable>
            <damp_enable index="1" type="char" size="[1 1]">
                [1]
            </damp_enable>
            <alscCoef index="1" type="struct" size="[1 1]">
                <resolutionAlll index="1" type="cell" size="[1 2]">
                    <cell index="1" type="struct" size="[1 1]">
                        <name index="1" type="char" size="[1 9]">
                            3264x2448
                        </name>
                    </cell>
                    <cell index="1" type="struct" size="[1 1]">
                        <name index="1" type="char" size="[1 9]">
                            2560x1440
                        </name>
                    </cell>
                </resolutionAlll>
                <illAll index="1" type="cell" size="[1 8]">
                    <cell index="1" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 1]">
                            A
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.0156 2.2634 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 10]">
                            A_100 A_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="5" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            CWF
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.3608 2.0207 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            CWF_100 CWF_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="2" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            D50
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.5445 1.7495 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            D50_100 D50_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="3" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            D65
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.6131 1.5081 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            D75_100 D75_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="4" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            D75
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.6585 1.2778 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            D75_100 D75_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="4" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 2]">
                            HZ
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [0.8653 2.5599 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 12]">
                            HZ_100 HZ_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="6" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 4]">
                            TL84
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.2400 1.9951 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 16]">
                            TL84_100 TL84_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="6" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [2 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 4]">
                            GRAY
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.0000 1.0000 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 6]">
                            GRAY_0 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 10.0000 31.0000 64.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [90.0000 60.0000 25.0000 0.0000 ]
                        </vig>
                    </cell>
                </illAll>
            </alscCoef>
            <tableAll index="1" type="cell" size="[1 30]">
                <cell index="1" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        2560x1440_A_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [3488 2679 2181 1892 1691 1543 1456 1392 1384 1404 1450 1536 1674 1871 2153 2690 3470 
                        3220 2499 2048 1776 1606 1459 1381 1318 1303 1316 1370 1456 1579 1772 2036 2480 3189 
                        2990 2342 1947 1717 1532 1395 1311 1271 1238 1254 1313 1392 1522 1695 1947 2333 2990 
                        2862 2247 1886 1654 1478 1358 1261 1213 1196 1211 1259 1347 1469 1645 1865 2225 2814 
                        2711 2153 1825 1598 1434 1305 1229 1175 1155 1167 1215 1303 1428 1595 1820 2140 2711 
                        2596 2086 1772 1561 1389 1273 1185 1129 1109 1126 1177 1261 1384 1547 1776 2080 2586 
                        2537 2023 1722 1512 1353 1238 1149 1098 1072 1092 1139 1229 1350 1508 1730 2036 2508 
                        2480 1987 1691 1485 1326 1207 1116 1063 1046 1060 1112 1198 1321 1475 1678 1976 2444 
                        2435 1952 1658 1462 1293 1183 1096 1038 1024 1043 1091 1175 1293 1453 1658 1936 2400 
                        2392 1936 1649 1446 1293 1173 1091 1032 1012 1030 1085 1165 1285 1443 1654 1924 2392 
                        2444 1941 1658 1456 1295 1181 1098 1035 1019 1038 1087 1175 1298 1450 1645 1930 2418 
                        2480 1976 1687 1482 1329 1209 1122 1070 1051 1065 1107 1200 1316 1475 1683 1993 2453 
                        2606 2054 1735 1515 1367 1249 1165 1101 1085 1103 1151 1236 1361 1519 1739 2054 2556 
                        2711 2146 1810 1587 1419 1300 1209 1159 1133 1153 1200 1288 1416 1576 1815 2140 2733 
                        2912 2270 1892 1662 1492 1367 1273 1218 1202 1202 1266 1361 1482 1658 1897 2278 2899 
                        3115 2418 1999 1758 1576 1434 1345 1293 1268 1290 1347 1440 1572 1758 2005 2409 3115 
                        3332 2596 2140 1840 1666 1505 1413 1356 1326 1361 1416 1529 1658 1840 2119 2606 3332 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3272 2528 2064 1807 1629 1497 1416 1370 1361 1356 1418 1508 1632 1799 2059 2504 3233 
                        2994 2359 1950 1715 1557 1428 1352 1300 1283 1294 1343 1431 1548 1711 1950 2338 2973 
                        2818 2229 1873 1659 1499 1375 1292 1242 1225 1240 1287 1370 1477 1652 1869 2217 2798 
                        2660 2146 1803 1597 1446 1330 1244 1200 1184 1200 1250 1325 1443 1606 1815 2118 2652 
                        2592 2054 1752 1557 1406 1298 1209 1169 1147 1160 1205 1289 1401 1554 1760 2054 2568 
                        2481 2013 1715 1525 1370 1252 1177 1122 1105 1119 1175 1254 1365 1522 1719 2003 2451 
                        2408 1955 1683 1480 1336 1223 1144 1092 1076 1083 1137 1216 1336 1488 1690 1964 2400 
                        2345 1918 1652 1454 1304 1198 1117 1063 1045 1064 1111 1196 1298 1451 1649 1909 2325 
                        2311 1891 1616 1428 1287 1174 1097 1045 1024 1044 1086 1170 1285 1428 1616 1882 2298 
                        2305 1873 1609 1421 1281 1169 1092 1036 1020 1033 1083 1167 1273 1418 1606 1882 2298 
                        2305 1873 1616 1431 1285 1170 1097 1046 1027 1040 1095 1170 1287 1431 1613 1891 2318 
                        2393 1918 1642 1464 1315 1209 1125 1074 1056 1077 1113 1193 1312 1454 1652 1918 2359 
                        2474 1988 1693 1505 1356 1240 1160 1111 1090 1113 1160 1236 1356 1499 1704 1988 2474 
                        2609 2080 1775 1563 1413 1298 1214 1164 1144 1165 1214 1294 1416 1563 1771 2080 2634 
                        2779 2217 1856 1652 1483 1368 1281 1233 1211 1220 1271 1356 1480 1645 1861 2199 2760 
                        3017 2359 1964 1726 1563 1446 1354 1296 1277 1306 1352 1436 1563 1730 1964 2359 2983 
                        3195 2512 2064 1795 1635 1505 1418 1363 1352 1372 1425 1505 1635 1807 2075 2497 3170 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3228 2512 2093 1814 1629 1503 1412 1363 1360 1372 1420 1495 1633 1810 2062 2512 3280 
                        3002 2353 1948 1722 1558 1435 1345 1308 1285 1298 1349 1432 1552 1715 1953 2339 3002 
                        2826 2237 1864 1652 1489 1376 1296 1244 1227 1246 1291 1372 1489 1659 1877 2225 2796 
                        2668 2132 1802 1601 1450 1334 1256 1202 1190 1198 1248 1331 1447 1607 1822 2137 2668 
                        2568 2067 1759 1570 1402 1293 1213 1166 1148 1164 1213 1285 1402 1561 1767 2062 2568 
                        2489 2001 1726 1523 1374 1254 1181 1129 1106 1123 1176 1256 1369 1523 1737 2021 2482 
                        2401 1953 1694 1484 1340 1225 1146 1094 1071 1091 1140 1227 1340 1487 1694 1962 2401 
                        2339 1916 1642 1445 1314 1193 1120 1064 1045 1065 1115 1197 1310 1455 1649 1921 2353 
                        2313 1885 1616 1435 1291 1176 1098 1038 1024 1046 1091 1178 1285 1427 1623 1890 2300 
                        2306 1877 1607 1424 1279 1174 1090 1036 1018 1036 1090 1171 1275 1424 1616 1872 2300 
                        2313 1890 1620 1435 1291 1178 1100 1046 1023 1038 1087 1176 1289 1429 1616 1894 2326 
                        2380 1930 1649 1465 1323 1198 1127 1072 1057 1072 1112 1200 1308 1458 1652 1925 2373 
                        2489 1981 1701 1509 1360 1239 1163 1107 1094 1115 1161 1244 1351 1503 1711 1986 2467 
                        2634 2083 1759 1576 1415 1291 1216 1159 1146 1161 1211 1291 1415 1564 1771 2077 2609 
                        2796 2201 1851 1642 1487 1363 1285 1229 1215 1224 1275 1360 1479 1639 1860 2207 2787 
                        2991 2380 1953 1733 1564 1429 1351 1300 1281 1300 1349 1437 1564 1722 1958 2360 3002 
                        3178 2544 2072 1822 1639 1506 1417 1354 1345 1363 1427 1509 1636 1826 2093 2520 3215 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3141 2447 1987 1722 1592 1453 1392 1351 1321 1336 1384 1471 1592 1788 2039 2447 3141 
                        2870 2257 1905 1684 1519 1417 1336 1299 1277 1284 1336 1409 1529 1709 1921 2301 2870 
                        2735 2172 1830 1626 1471 1359 1291 1243 1223 1243 1291 1367 1490 1660 1860 2214 2735 
                        2583 2075 1774 1571 1435 1321 1243 1198 1180 1198 1256 1328 1453 1603 1816 2113 2612 
                        2447 2057 1735 1550 1392 1291 1217 1168 1151 1162 1223 1299 1417 1581 1774 2094 2554 
                        2396 1987 1697 1519 1367 1263 1186 1134 1107 1128 1168 1277 1400 1560 1748 2021 2447 
                        2324 1905 1660 1490 1336 1230 1151 1096 1071 1102 1134 1230 1351 1509 1709 1970 2372 
                        2257 1890 1637 1444 1313 1198 1112 1076 1047 1066 1118 1211 1306 1481 1660 1937 2372 
                        2193 1830 1614 1435 1291 1174 1096 1052 1024 1042 1091 1180 1299 1453 1626 1875 2301 
                        2193 1816 1592 1426 1284 1162 1086 1024 1015 1038 1091 1168 1291 1426 1626 1875 2301 
                        2214 1845 1603 1417 1284 1162 1096 1038 1015 1033 1076 1180 1284 1435 1637 1890 2257 
                        2279 1875 1637 1435 1313 1192 1128 1071 1047 1066 1107 1192 1313 1462 1672 1921 2324 
                        2324 1937 1684 1490 1336 1236 1156 1091 1076 1096 1162 1236 1375 1500 1722 1987 2421 
                        2499 2039 1722 1550 1400 1277 1204 1134 1118 1151 1192 1277 1426 1571 1788 2094 2554 
                        2641 2152 1802 1626 1471 1336 1256 1204 1192 1180 1243 1351 1481 1649 1860 2172 2672 
                        2801 2279 1905 1684 1509 1409 1321 1277 1250 1277 1336 1435 1571 1722 1953 2324 2942 
                        3059 2421 2039 1774 1603 1471 1384 1306 1299 1336 1417 1519 1637 1816 2057 2473 3059 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="2" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 14]">
                        2560x1440_A_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2442 2000 1709 1541 1421 1328 1275 1231 1228 1242 1269 1322 1407 1524 1687 2008 2429 
                        2343 1926 1653 1490 1389 1292 1244 1199 1189 1197 1234 1290 1366 1486 1643 1911 2321 
                        2239 1853 1612 1477 1359 1267 1210 1185 1158 1169 1212 1264 1350 1458 1612 1846 2239 
                        2193 1818 1596 1452 1338 1259 1188 1155 1142 1152 1186 1249 1330 1445 1578 1799 2157 
                        2117 1773 1571 1428 1320 1230 1177 1137 1121 1129 1165 1228 1315 1425 1567 1761 2117 
                        2055 1741 1546 1413 1296 1216 1151 1107 1091 1103 1142 1204 1291 1400 1550 1736 2047 
                        2029 1705 1516 1382 1274 1193 1125 1086 1064 1081 1116 1184 1271 1378 1524 1715 2006 
                        1995 1684 1498 1365 1256 1169 1100 1058 1044 1054 1096 1161 1251 1356 1487 1674 1966 
                        1963 1658 1471 1346 1227 1149 1082 1035 1024 1040 1076 1141 1227 1338 1471 1644 1935 
                        1924 1640 1461 1329 1224 1137 1075 1027 1010 1025 1069 1129 1217 1326 1465 1631 1924 
                        1955 1636 1460 1330 1220 1138 1076 1024 1012 1027 1065 1132 1222 1325 1449 1626 1933 
                        1964 1649 1472 1341 1240 1154 1089 1049 1034 1044 1074 1146 1227 1335 1468 1663 1942 
                        2034 1691 1493 1354 1258 1178 1116 1066 1054 1068 1103 1164 1253 1357 1497 1691 1995 
                        2078 1736 1531 1394 1285 1205 1139 1103 1082 1097 1131 1193 1282 1384 1536 1730 2095 
                        2180 1796 1567 1429 1323 1241 1175 1135 1125 1121 1169 1236 1314 1426 1571 1802 2171 
                        2267 1863 1614 1474 1363 1270 1211 1176 1158 1174 1214 1276 1360 1474 1619 1856 2267 
                        2332 1938 1676 1499 1400 1295 1237 1199 1177 1204 1240 1316 1393 1499 1660 1946 2332 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2291 1887 1617 1472 1369 1288 1239 1212 1208 1200 1242 1298 1372 1465 1613 1870 2263 
                        2179 1818 1574 1439 1347 1265 1218 1183 1172 1177 1210 1267 1339 1436 1574 1802 2163 
                        2110 1764 1552 1427 1329 1248 1192 1158 1146 1156 1188 1244 1310 1421 1548 1754 2095 
                        2039 1736 1525 1402 1309 1232 1172 1142 1130 1142 1178 1228 1307 1411 1535 1713 2032 
                        2024 1691 1508 1391 1294 1223 1158 1131 1114 1123 1155 1215 1290 1388 1515 1691 2005 
                        1965 1680 1496 1380 1278 1195 1143 1100 1087 1097 1141 1197 1274 1378 1499 1672 1941 
                        1925 1647 1482 1353 1258 1179 1121 1080 1068 1071 1114 1172 1258 1360 1488 1655 1920 
                        1887 1625 1463 1336 1235 1161 1101 1058 1043 1059 1094 1159 1229 1334 1460 1618 1870 
                        1863 1606 1434 1315 1221 1140 1083 1042 1024 1040 1072 1136 1219 1315 1434 1598 1853 
                        1854 1588 1426 1305 1213 1133 1075 1030 1018 1028 1067 1131 1206 1303 1423 1595 1849 
                        1843 1579 1423 1307 1210 1128 1075 1035 1019 1029 1072 1128 1212 1307 1420 1593 1854 
                        1895 1600 1433 1325 1226 1154 1092 1053 1039 1056 1080 1139 1224 1316 1441 1600 1867 
                        1931 1637 1458 1345 1249 1169 1112 1075 1058 1077 1112 1165 1249 1340 1467 1637 1931 
                        2000 1682 1502 1373 1279 1203 1144 1107 1092 1109 1144 1199 1282 1373 1499 1682 2019 
                        2081 1754 1537 1421 1315 1242 1183 1149 1132 1137 1173 1231 1312 1415 1541 1740 2067 
                        2195 1818 1586 1448 1352 1281 1220 1179 1166 1188 1218 1272 1352 1451 1586 1818 2171 
                        2237 1876 1617 1462 1374 1295 1242 1206 1200 1214 1248 1295 1374 1472 1626 1864 2219 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2260 1876 1640 1478 1369 1294 1236 1205 1207 1213 1243 1287 1372 1475 1615 1876 2296 
                        2185 1813 1573 1445 1348 1271 1211 1190 1173 1181 1215 1268 1342 1439 1577 1803 2185 
                        2116 1770 1544 1421 1321 1249 1196 1160 1148 1162 1192 1245 1321 1427 1554 1760 2094 
                        2045 1724 1525 1406 1313 1236 1183 1144 1136 1141 1176 1234 1310 1411 1542 1728 2045 
                        2004 1701 1514 1402 1291 1219 1162 1128 1114 1127 1162 1211 1291 1394 1521 1697 2004 
                        1971 1670 1506 1379 1282 1197 1147 1107 1088 1101 1142 1199 1278 1379 1515 1686 1965 
                        1920 1646 1492 1356 1262 1181 1123 1082 1063 1080 1117 1183 1262 1359 1492 1654 1920 
                        1882 1624 1455 1328 1245 1156 1103 1059 1043 1060 1098 1160 1241 1337 1461 1628 1893 
                        1864 1601 1434 1321 1225 1142 1084 1035 1024 1043 1077 1143 1219 1314 1440 1605 1854 
                        1855 1590 1423 1309 1211 1138 1073 1030 1016 1030 1073 1135 1208 1309 1432 1587 1850 
                        1850 1592 1426 1311 1216 1135 1078 1035 1015 1027 1065 1133 1214 1306 1424 1596 1860 
                        1885 1611 1439 1327 1234 1144 1094 1051 1040 1051 1079 1146 1220 1320 1442 1607 1879 
                        1943 1631 1464 1348 1253 1167 1114 1072 1062 1079 1112 1173 1244 1343 1473 1635 1926 
                        2019 1684 1488 1384 1281 1197 1146 1103 1094 1105 1141 1197 1281 1373 1498 1680 1999 
                        2094 1741 1533 1413 1318 1237 1186 1146 1136 1141 1177 1235 1311 1410 1540 1746 2087 
                        2177 1834 1577 1454 1353 1266 1217 1183 1170 1183 1215 1273 1353 1445 1581 1818 2185 
                        2224 1899 1623 1484 1378 1296 1241 1197 1193 1205 1249 1299 1375 1488 1640 1882 2251 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2199 1827 1557 1403 1338 1251 1219 1195 1172 1182 1211 1266 1338 1457 1598 1827 2199 
                        2088 1739 1538 1413 1314 1255 1203 1182 1166 1168 1203 1248 1323 1434 1551 1774 2088 
                        2048 1719 1516 1398 1305 1234 1192 1159 1144 1159 1192 1241 1321 1428 1540 1752 2048 
                        1979 1679 1501 1379 1299 1224 1171 1140 1127 1140 1184 1231 1315 1408 1536 1709 2002 
                        1910 1693 1493 1385 1282 1217 1166 1130 1117 1125 1172 1224 1305 1413 1527 1724 1994 
                        1897 1658 1480 1375 1276 1206 1151 1112 1089 1106 1134 1219 1306 1412 1525 1687 1937 
                        1859 1605 1462 1362 1258 1185 1127 1085 1063 1090 1111 1185 1273 1379 1505 1660 1897 
                        1816 1602 1450 1327 1244 1161 1096 1071 1045 1061 1101 1173 1237 1361 1471 1642 1908 
                        1768 1554 1433 1321 1225 1140 1082 1048 1024 1039 1077 1146 1232 1338 1443 1592 1855 
                        1764 1539 1410 1311 1216 1126 1070 1019 1013 1032 1075 1132 1223 1311 1440 1589 1852 
                        1770 1554 1412 1295 1209 1120 1074 1027 1008 1022 1054 1137 1209 1311 1442 1592 1805 
                        1804 1564 1428 1299 1225 1138 1095 1050 1030 1045 1074 1138 1225 1324 1459 1603 1840 
                        1815 1595 1450 1331 1230 1165 1108 1056 1045 1061 1114 1165 1266 1340 1482 1635 1890 
                        1916 1649 1457 1361 1268 1184 1135 1079 1067 1095 1123 1184 1291 1379 1513 1694 1958 
                        1978 1703 1492 1398 1305 1213 1160 1123 1115 1100 1147 1227 1313 1418 1540 1719 2001 
                        2038 1756 1538 1413 1306 1248 1190 1162 1141 1162 1203 1271 1359 1444 1577 1791 2141 
                        2141 1808 1598 1446 1347 1266 1211 1155 1152 1182 1241 1308 1376 1479 1612 1847 2141 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="3" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_D50_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2554 2063 1760 1586 1496 1387 1342 1330 1317 1342 1396 1480 1649 1805 2084 2538 3298 
                        2421 1939 1669 1512 1387 1330 1273 1250 1239 1265 1317 1420 1529 1703 1939 2366 3057 
                        2240 1829 1592 1454 1338 1265 1221 1200 1186 1210 1258 1351 1470 1630 1853 2216 2811 
                        2126 1752 1551 1415 1313 1239 1186 1154 1147 1167 1214 1301 1405 1563 1790 2126 2685 
                        2014 1716 1507 1378 1293 1207 1163 1123 1111 1132 1170 1261 1378 1534 1745 2073 2585 
                        1966 1682 1480 1364 1273 1190 1129 1094 1077 1099 1154 1228 1351 1512 1716 2004 2493 
                        1921 1636 1475 1347 1250 1183 1111 1068 1060 1077 1123 1203 1325 1470 1682 1966 2421 
                        1887 1611 1454 1330 1239 1157 1091 1044 1034 1050 1102 1193 1305 1454 1649 1930 2393 
                        1837 1599 1434 1321 1228 1141 1074 1027 1024 1039 1082 1167 1281 1429 1623 1912 2353 
                        1805 1586 1429 1317 1232 1141 1068 1022 1009 1024 1079 1144 1269 1410 1617 1878 2314 
                        1829 1586 1434 1325 1228 1144 1068 1022 1007 1027 1071 1147 1265 1415 1611 1870 2327 
                        1837 1605 1464 1355 1246 1160 1094 1047 1032 1047 1096 1170 1285 1434 1623 1895 2366 
                        1895 1655 1507 1382 1285 1193 1123 1071 1063 1082 1123 1207 1313 1464 1669 1966 2478 
                        1976 1716 1580 1439 1325 1239 1176 1132 1117 1132 1173 1254 1373 1529 1745 2063 2538 
                        2115 1821 1662 1523 1396 1293 1235 1186 1170 1190 1243 1321 1449 1605 1829 2159 2737 
                        2252 1957 1752 1617 1490 1382 1317 1265 1250 1261 1305 1396 1517 1703 1939 2327 2970 
                        2435 2126 1853 1703 1574 1470 1387 1347 1325 1342 1405 1496 1611 1805 2043 2508 3247 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2770 2189 1851 1648 1522 1429 1361 1336 1323 1346 1393 1460 1593 1761 2012 2475 3119 
                        2563 2052 1748 1562 1431 1348 1295 1263 1248 1272 1321 1398 1519 1663 1900 2272 2893 
                        2409 1941 1663 1503 1382 1300 1237 1206 1190 1208 1254 1333 1452 1607 1805 2163 2708 
                        2279 1870 1618 1460 1346 1261 1196 1159 1146 1171 1212 1295 1403 1552 1752 2058 2563 
                        2156 1814 1589 1431 1321 1231 1172 1130 1114 1139 1182 1256 1374 1522 1727 1995 2467 
                        2106 1782 1562 1417 1302 1210 1148 1106 1089 1102 1156 1233 1348 1491 1694 1962 2417 
                        2081 1752 1538 1398 1281 1192 1127 1076 1066 1079 1134 1208 1323 1469 1667 1941 2377 
                        2052 1714 1522 1382 1272 1178 1106 1060 1045 1062 1114 1194 1295 1452 1644 1900 2308 
                        1995 1690 1503 1364 1256 1163 1086 1042 1024 1048 1091 1172 1279 1426 1622 1865 2251 
                        1989 1674 1494 1361 1246 1157 1087 1034 1021 1033 1079 1159 1270 1412 1593 1846 2258 
                        1989 1674 1497 1366 1250 1159 1083 1039 1021 1039 1084 1157 1272 1406 1593 1861 2265 
                        2017 1706 1509 1387 1270 1172 1104 1056 1040 1056 1104 1180 1290 1423 1604 1870 2316 
                        2081 1765 1562 1423 1300 1210 1139 1096 1081 1096 1139 1210 1326 1457 1651 1915 2377 
                        2209 1846 1629 1475 1364 1267 1196 1146 1134 1139 1190 1265 1377 1522 1718 2012 2527 
                        2316 1946 1718 1562 1429 1323 1254 1214 1196 1212 1256 1333 1440 1604 1796 2124 2688 
                        2510 2100 1828 1648 1509 1406 1333 1286 1265 1283 1331 1414 1529 1686 1905 2265 2905 
                        2688 2272 1941 1739 1589 1488 1414 1356 1348 1364 1412 1494 1625 1787 2034 2467 3132 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2748 2180 1848 1629 1519 1414 1350 1323 1318 1332 1395 1472 1586 1779 1997 2431 3146 
                        2534 2037 1732 1548 1425 1342 1280 1251 1242 1260 1301 1392 1503 1663 1877 2255 2881 
                        2367 1922 1652 1490 1371 1292 1227 1193 1181 1207 1253 1323 1442 1593 1801 2128 2696 
                        2241 1848 1597 1451 1332 1258 1183 1149 1136 1160 1215 1282 1392 1542 1753 2049 2561 
                        2166 1784 1562 1425 1313 1221 1160 1118 1110 1127 1166 1258 1358 1506 1711 1997 2439 
                        2115 1766 1552 1400 1292 1207 1136 1101 1084 1094 1149 1230 1342 1487 1691 1938 2407 
                        2072 1736 1525 1387 1278 1185 1118 1067 1051 1075 1127 1203 1313 1460 1652 1927 2336 
                        2031 1703 1516 1376 1258 1171 1098 1046 1036 1051 1106 1187 1292 1434 1629 1887 2306 
                        1964 1667 1494 1353 1247 1152 1080 1028 1024 1037 1088 1167 1276 1417 1604 1858 2262 
                        1959 1660 1481 1353 1232 1145 1068 1020 1014 1027 1076 1152 1267 1406 1590 1834 2262 
                        1970 1671 1475 1355 1238 1147 1073 1027 1014 1028 1075 1151 1267 1400 1583 1843 2277 
                        1992 1695 1509 1371 1260 1164 1091 1051 1034 1051 1094 1175 1282 1417 1597 1867 2277 
                        2061 1732 1545 1414 1287 1199 1124 1081 1070 1081 1127 1209 1313 1451 1641 1917 2375 
                        2180 1815 1615 1466 1342 1251 1179 1136 1120 1134 1179 1255 1368 1506 1699 2009 2490 
                        2313 1927 1703 1545 1414 1318 1245 1205 1185 1201 1245 1328 1428 1586 1797 2128 2666 
                        2456 2084 1806 1629 1500 1389 1325 1273 1258 1278 1320 1400 1506 1679 1897 2269 2869 
                        2647 2248 1922 1723 1586 1472 1389 1348 1337 1350 1403 1472 1600 1766 2003 2448 3119 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2354 1909 1637 1486 1421 1333 1270 1275 1275 1301 1350 1453 1566 1716 1943 2389 2987 
                        2194 1792 1558 1427 1322 1265 1236 1226 1231 1231 1290 1355 1486 1646 1865 2209 2781 
                        2029 1698 1493 1373 1285 1231 1190 1173 1173 1195 1236 1317 1434 1589 1782 2095 2601 
                        1920 1654 1466 1344 1265 1208 1169 1132 1132 1156 1208 1280 1384 1522 1734 2003 2444 
                        1843 1605 1440 1338 1250 1195 1144 1116 1105 1124 1173 1250 1367 1507 1698 1955 2444 
                        1822 1597 1434 1327 1241 1177 1128 1090 1086 1101 1144 1231 1333 1486 1671 1931 2354 
                        1772 1566 1427 1317 1236 1164 1112 1068 1061 1086 1128 1213 1311 1460 1646 1886 2304 
                        1772 1551 1409 1301 1231 1148 1101 1058 1041 1065 1112 1190 1290 1440 1621 1875 2256 
                        1707 1507 1390 1306 1222 1140 1072 1031 1024 1044 1090 1164 1285 1427 1597 1843 2240 
                        1680 1493 1373 1290 1213 1132 1068 1024 1011 1034 1075 1156 1260 1409 1589 1833 2194 
                        1689 1493 1378 1301 1213 1132 1068 1031 1021 1027 1079 1156 1255 1390 1573 1802 2179 
                        1716 1529 1415 1322 1241 1156 1086 1041 1034 1047 1090 1173 1275 1409 1589 1833 2240 
                        1763 1558 1453 1350 1255 1190 1120 1082 1072 1079 1124 1204 1311 1453 1629 1875 2288 
                        1833 1629 1514 1415 1322 1241 1169 1136 1120 1132 1177 1241 1361 1507 1680 1979 2425 
                        1955 1725 1605 1486 1378 1295 1236 1199 1182 1190 1241 1311 1434 1581 1782 2095 2580 
                        2042 1854 1698 1573 1453 1361 1311 1270 1245 1265 1317 1390 1507 1663 1886 2225 2829 
                        2225 2003 1812 1671 1543 1440 1384 1350 1317 1355 1390 1460 1605 1763 1991 2425 3015 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="4" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_D50_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [1788 1541 1379 1292 1257 1194 1175 1176 1169 1187 1222 1274 1386 1471 1633 1895 2308 
                        1762 1494 1347 1268 1200 1178 1147 1138 1131 1151 1186 1258 1322 1428 1565 1823 2225 
                        1677 1447 1319 1251 1186 1149 1127 1119 1110 1129 1161 1226 1303 1402 1535 1753 2105 
                        1629 1417 1312 1243 1189 1148 1118 1098 1096 1110 1144 1205 1272 1373 1514 1719 2058 
                        1572 1413 1297 1231 1190 1137 1115 1087 1079 1095 1121 1189 1269 1371 1502 1707 2018 
                        1557 1404 1291 1235 1188 1136 1096 1072 1059 1078 1120 1173 1260 1369 1497 1672 1974 
                        1536 1379 1299 1231 1177 1140 1088 1057 1053 1065 1100 1160 1248 1343 1481 1657 1936 
                        1518 1365 1288 1222 1173 1121 1074 1039 1032 1044 1086 1156 1235 1336 1461 1636 1925 
                        1481 1357 1273 1216 1165 1108 1060 1023 1024 1036 1068 1133 1215 1316 1441 1624 1897 
                        1452 1345 1266 1210 1166 1106 1053 1016 1007 1019 1063 1109 1202 1296 1432 1592 1862 
                        1463 1337 1263 1211 1157 1103 1047 1011 10 1016 1049 1106 1191 1293 1419 1575 1861 
                        1454 1339 1278 1227 1163 1108 1061 1026 1015 1026 1064 1117 1199 1298 1416 1581 1874 
                        1479 1363 1297 1235 1183 1125 1076 1037 1032 1047 1076 1137 1209 1308 1436 1619 1935 
                        1514 1388 1337 1264 1200 1148 1108 1077 1066 1077 1105 1162 1243 1343 1476 1669 1945 
                        1584 1441 1376 1310 1238 1173 1140 1106 1094 1109 1147 1199 1285 1380 1515 1708 2050 
                        1639 1508 1415 1356 1289 1224 1186 1151 1141 1148 1175 1237 1313 1428 1565 1793 2161 
                        1704 1587 1452 1387 1323 1265 1214 1191 1176 1187 1231 1288 1354 1471 1601 1873 2273 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [1939 1635 1450 1342 1279 1230 1192 1181 1174 1190 1219 1257 1339 1434 1576 1848 2183 
                        1865 1581 1411 1310 1238 1194 1166 1149 1139 1157 1190 1238 1314 1395 1534 1751 2105 
                        1804 1536 1377 1293 1225 1180 1142 1124 1113 1126 1158 1210 1287 1382 1495 1711 2028 
                        1747 1513 1369 1283 1218 1168 1127 1103 1095 1114 1142 1200 1271 1363 1482 1664 1964 
                        1683 1493 1368 1279 1216 1160 1123 1094 1082 1102 1133 1184 1265 1360 1486 1642 1926 
                        1667 1487 1363 1283 1215 1155 1114 1084 1071 1081 1122 1177 1258 1350 1478 1637 1914 
                        1665 1476 1355 1278 1206 1149 1104 1065 1059 1068 1111 1164 1246 1343 1468 1636 1901 
                        1651 1453 1348 1270 1204 1142 1089 1055 1043 1056 1098 1157 1226 1334 1456 1610 1857 
                        1608 1435 1334 1256 1192 1129 1072 1038 1024 1044 1077 1138 1213 1313 1439 1584 1814 
                        1600 1419 1323 1251 1179 1122 1071 1029 1019 1028 1063 1123 1202 1297 1411 1565 1816 
                        1591 1411 1318 1248 1177 1117 1061 1028 1014 1028 1062 1115 1198 1285 1403 1568 1811 
                        1597 1424 1317 1256 1185 1119 1072 1035 1023 1035 1072 1127 1204 1288 1399 1561 1834 
                        1625 1453 1344 1271 1197 1140 1091 1060 1049 1060 1091 1140 1221 1302 1422 1577 1856 
                        1693 1493 1378 1296 1234 1175 1127 1091 1082 1084 1121 1173 1246 1337 1454 1627 1937 
                        1734 1540 1423 1343 1267 1201 1158 1132 1119 1130 1160 1210 1277 1379 1487 1681 2013 
                        1826 1618 1476 1382 1306 1246 1201 1170 1155 1168 1199 1253 1322 1414 1538 1745 2114 
                        1881 1696 1521 1417 1336 1281 1238 1199 1196 1206 1236 1286 1366 1456 1594 1842 2193 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [1924 1628 1448 1327 1277 1217 1182 1170 1169 1179 1221 1267 1333 1449 1565 1815 2202 
                        1844 1570 1398 1299 1233 1189 1153 1138 1134 1146 1172 1233 1300 1395 1515 1738 2096 
                        1772 1521 1368 1282 1215 1173 1133 1112 1105 1125 1157 1201 1279 1370 1492 1684 2019 
                        1717 1495 1351 1275 1206 1165 1115 1093 1085 1104 1145 1188 1260 1354 1483 1657 1963 
                        1691 1468 1345 1273 1209 1151 1111 1082 1077 1091 1117 1185 1250 1346 1473 1644 1904 
                        1675 1474 1354 1268 1205 1152 1103 1079 1067 1073 1115 1174 1252 1347 1475 1617 1905 
                        1657 1463 1343 1267 1203 1142 1096 1055 1043 1063 1104 1159 1236 1334 1455 1624 1868 
                        1634 1443 1343 1265 1191 1135 1081 1041 1034 1046 1090 1150 1223 1318 1443 1599 1855 
                        1584 1416 1325 1245 1183 1119 1065 1025 1024 1034 1074 1133 1210 1305 1423 1577 1824 
                        1576 1407 1312 1243 1166 1110 1052 1014 1012 1022 1060 1117 1199 1292 1408 1554 1820 
                        1575 1408 1299 1238 1166 1105 1051 1016 1006 1018 1053 1109 1193 1280 1394 1553 1821 
                        1577 1414 1317 1241 1175 1111 1059 1030 1017 1030 1062 1122 1196 1283 1393 1558 1803 
                        1609 1426 1330 1263 1185 1130 1077 1046 1039 1046 1080 1139 1209 1297 1412 1578 1854 
                        1670 1468 1366 1288 1215 1159 1111 1081 1069 1079 1111 1163 1239 1323 1437 1624 1908 
                        1732 1525 1410 1329 1254 1196 1149 1123 1108 1119 1149 1205 1266 1364 1488 1684 1997 
                        1787 1606 1458 1367 1297 1231 1194 1159 1148 1163 1189 1240 1303 1408 1531 1749 2088 
                        1853 1679 1506 1404 1333 1267 1216 1192 1187 1194 1228 1267 1345 1439 1569 1828 2183 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1648 1425 1283 1211 1194 1147 1112 1128 1131 1150 1182 1251 1316 1398 1522 1784 2091 
                        1597 1381 1258 1197 1144 1120 1113 1116 1124 1120 1162 1200 1286 1380 1505 1703 2023 
                        1519 1343 1237 1181 1139 1118 1099 1094 1097 1114 1141 1195 1271 1367 1476 1657 1948 
                        1471 1338 1240 1180 1145 1120 1101 1077 1081 1100 1138 1186 1253 1336 1467 1620 1873 
                        1439 1321 1240 1196 1151 1126 1096 1080 1072 1088 1124 1178 1258 1347 1461 1609 1908 
                        1443 1333 1251 1202 1157 1124 1095 1068 1068 1079 1110 1175 1243 1346 1458 1612 1864 
                        1417 1319 1257 1203 1164 1122 1090 1057 1053 1075 1105 1169 1235 1334 1449 1589 1843 
                        1426 1314 1248 1195 1166 1112 1085 1052 1039 1059 1096 1153 1222 1323 1436 1589 1815 
                        1376 1280 1234 1202 1159 1107 1058 1027 1024 1040 1076 1131 1219 1314 1417 1565 1806 
                        1352 1266 1216 1186 1148 1097 1052 1019 1009 1029 1059 1120 1193 1295 1407 1553 1765 
                        1351 1258 1214 1189 1142 1091 1046 1020 1013 1016 1057 1114 1182 1271 1386 1518 1743 
                        1358 1276 1234 1197 1157 1104 1054 1020 1017 1027 1058 1120 1189 1275 1386 1529 1774 
                        1376 1283 1251 1206 1156 1122 1073 1047 1040 1044 1077 1134 1207 1298 1402 1544 1786 
                        1405 1318 1281 1243 1197 1150 1101 1081 1069 1077 1109 1150 1232 1324 1421 1600 1859 
                        1464 1365 1329 1278 1222 1176 1141 1118 1105 1110 1145 1190 1271 1360 1476 1657 1932 
                        1486 1429 1371 1320 1257 1206 1181 1155 1137 1151 1186 1232 1304 1395 1523 1714 2059 
                        1557 1496 1420 1362 1297 1240 1212 1194 1168 1199 1217 1256 1349 1436 1560 1811 2110 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="5" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_D65_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [3452 2627 2158 1878 1686 1562 1456 1394 1378 1394 1438 1530 1655 1869 2132 2608 3388 
                        3125 2466 2014 1768 1590 1468 1373 1323 1295 1313 1368 1450 1549 1751 1992 2417 3125 
                        2923 2294 1898 1678 1510 1389 1309 1263 1237 1246 1299 1368 1492 1678 1888 2266 2877 
                        2746 2171 1831 1618 1444 1333 1241 1200 1185 1200 1246 1323 1427 1611 1840 2158 2788 
                        2589 2095 1777 1556 1405 1281 1204 1147 1129 1147 1185 1272 1389 1549 1751 2083 2589 
                        2483 2025 1710 1510 1353 1233 1158 1109 1085 1098 1147 1246 1343 1492 1710 2003 2483 
                        2466 1949 1678 1474 1323 1208 1129 1076 1057 1072 1126 1204 1318 1474 1663 1938 2417 
                        2385 1938 1655 1462 1313 1189 1112 1051 1036 1054 1098 1181 1285 1444 1633 1928 2417 
                        2385 1918 1640 1438 1290 1189 1092 1042 1024 1045 1092 1173 1281 1427 1640 1918 2354 
                        2354 1908 1648 1450 1285 1185 1098 1045 1027 1036 1092 1173 1272 1422 1626 1908 2354 
                        2369 1938 1655 1468 1304 1192 1109 1057 1030 1054 1098 1173 1290 1450 1648 1918 2369 
                        2466 1970 1702 1486 1323 1216 1129 1076 1060 1072 1122 1196 1318 1474 1663 1970 2449 
                        2553 2014 1734 1517 1368 1241 1162 1109 1095 1102 1154 1233 1343 1504 1726 2014 2500 
                        2665 2095 1777 1556 1405 1285 1204 1151 1136 1158 1200 1276 1400 1556 1768 2095 2646 
                        2810 2210 1849 1633 1468 1343 1259 1208 1192 1204 1246 1338 1433 1611 1840 2171 2788 
                        2971 2339 1949 1726 1536 1405 1328 1281 1254 1267 1323 1400 1530 1702 1938 2324 2971 
                        3237 2517 2071 1812 1611 1492 1405 1338 1323 1343 1394 1498 1626 1795 2071 2500 3295 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3205 2502 2052 1799 1634 1496 1426 1380 1347 1370 1426 1496 1608 1781 2052 2485 3177 
                        2958 2349 1932 1706 1544 1423 1340 1304 1279 1295 1340 1429 1534 1706 1922 2311 2899 
                        2757 2187 1821 1616 1475 1357 1281 1227 1219 1229 1268 1357 1469 1619 1821 2187 2746 
                        2590 2087 1764 1560 1418 1297 1229 1180 1165 1181 1217 1304 1402 1557 1760 2057 2572 
                        2502 2006 1710 1518 1370 1257 1180 1132 1110 1127 1174 1252 1362 1509 1706 1985 2451 
                        2372 1942 1663 1475 1335 1223 1146 1096 1075 1086 1141 1219 1323 1463 1663 1932 2372 
                        2341 1897 1634 1440 1302 1189 1113 1066 1048 1057 1111 1185 1295 1432 1630 1882 2311 
                        2275 1858 1608 1423 1283 1185 1093 1046 1025 1045 1090 1172 1277 1418 1605 1858 2283 
                        2268 1849 1591 1418 1277 1163 1080 1033 1024 1030 1082 1161 1263 1407 1601 1840 2247 
                        2275 1840 1601 1418 1274 1168 1088 1039 1023 1036 1082 1159 1274 1399 1598 1844 2283 
                        2319 1873 1619 1426 1288 1181 1105 1058 1033 1046 1095 1174 1277 1412 1616 1868 2283 
                        2372 1907 1637 1455 1316 1203 1130 1080 1061 1074 1118 1203 1306 1452 1637 1897 2341 
                        2451 1958 1675 1496 1352 1242 1159 1115 1098 1111 1152 1229 1337 1484 1671 1942 2403 
                        2563 2040 1743 1541 1391 1281 1205 1159 1139 1152 1201 1274 1391 1531 1726 2023 2510 
                        2716 2148 1799 1616 1452 1337 1257 1207 1195 1207 1250 1330 1437 1588 1790 2136 2686 
                        2888 2290 1902 1671 1521 1402 1325 1277 1257 1265 1311 1402 1515 1667 1897 2254 2865 
                        3109 2451 2023 1768 1608 1472 1394 1342 1311 1342 1375 1460 1581 1743 2018 2419 3122 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3208 2518 2072 1812 1642 1508 1426 1386 1371 1383 1437 1505 1614 1808 2083 2526 3222 
                        2975 2342 1946 1711 1559 1437 1353 1312 1289 1305 1348 1437 1549 1711 1941 2334 2963 
                        2763 2195 1839 1635 1487 1376 1289 1235 1223 1243 1291 1368 1481 1639 1848 2202 2763 
                        2616 2083 1760 1576 1421 1312 1235 1191 1168 1187 1233 1307 1418 1566 1777 2083 2625 
                        2492 2010 1723 1520 1381 1267 1183 1140 1126 1136 1187 1263 1365 1517 1719 1999 2475 
                        2403 1946 1668 1490 1333 1229 1150 1104 1086 1102 1148 1223 1336 1478 1668 1946 2411 
                        2334 1896 1631 1457 1317 1203 1124 1072 1050 1073 1124 1195 1303 1454 1653 1896 2334 
                        2284 1867 1617 1432 1294 1189 1102 1053 1040 1055 1100 1180 1287 1426 1631 1881 2298 
                        2298 1872 1610 1426 1287 1182 1096 1041 1024 1044 1087 1168 1276 1410 1614 1862 2284 
                        2284 1867 1610 1429 1294 1176 1099 1049 1028 1046 1086 1170 1278 1418 1607 1872 2284 
                        2305 1891 1617 1437 1294 1183 1114 1056 1036 1058 1100 1180 1287 1435 1624 1891 2320 
                        2372 1926 1646 1466 1321 1215 1134 1079 1064 1076 1131 1203 1312 1466 1657 1921 2372 
                        2451 1983 1688 1508 1353 1245 1167 1119 1102 1115 1163 1233 1346 1499 1691 1977 2451 
                        2597 2054 1748 1549 1405 1291 1211 1168 1143 1161 1209 1282 1394 1543 1752 2054 2570 
                        2732 2169 1825 1610 1463 1346 1265 1215 1193 1217 1260 1343 1452 1600 1812 2144 2683 
                        2916 2298 1911 1695 1533 1407 1333 1285 1263 1278 1317 1405 1520 1688 1896 2277 2893 
                        3167 2475 2032 1790 1603 1478 1402 1350 1331 1350 1399 1475 1596 1764 2026 2442 3087 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3089 2394 1995 1749 1596 1484 1403 1353 1358 1358 1398 1496 1596 1757 2016 2439 3064 
                        2837 2280 1896 1695 1526 1418 1344 1294 1285 1289 1334 1418 1526 1695 1896 2280 2858 
                        2641 2128 1815 1630 1456 1353 1277 1231 1224 1235 1281 1353 1467 1616 1824 2128 2660 
                        2520 2070 1757 1551 1424 1303 1224 1178 1171 1182 1231 1303 1408 1551 1749 2048 2520 
                        2379 1984 1687 1520 1368 1268 1189 1147 1126 1136 1189 1268 1363 1514 1702 1984 2394 
                        2335 1905 1651 1462 1330 1224 1150 1104 1088 1101 1150 1220 1330 1473 1658 1934 2321 
                        2253 1868 1616 1456 1312 1197 1120 1067 1052 1079 1126 1201 1303 1451 1630 1887 2280 
                        2266 1832 1596 1424 1294 1189 1110 1049 1035 1052 1104 1178 1281 1434 1609 1859 2240 
                        2227 1832 1589 1424 1285 1178 1097 1044 1024 1046 1088 1164 1277 1418 1602 1841 2227 
                        2201 1832 1596 1418 1289 1175 1094 1046 1035 1046 1091 1171 1277 1413 1602 1850 2253 
                        2253 1850 1602 1424 1303 1189 1113 1058 1041 1061 1104 1186 1289 1434 1616 1868 2240 
                        2293 1887 1630 1462 1325 1212 1133 1088 1070 1076 1130 1212 1325 1456 1651 1905 2321 
                        2350 1944 1672 1496 1344 1243 1168 1120 1104 1117 1171 1243 1349 1484 1680 1964 2394 
                        2503 2026 1733 1538 1408 1285 1212 1171 1143 1161 1197 1298 1393 1544 1725 2026 2503 
                        2623 2128 1798 1602 1451 1334 1264 1216 1201 1216 1252 1334 1445 1596 1806 2116 2641 
                        2795 2253 1887 1687 1520 1403 1325 1281 1260 1272 1316 1393 1514 1680 1887 2240 2795 
                        2992 2424 2016 1757 1596 1479 1388 1349 1334 1349 1383 1473 1609 1749 2016 2424 3016 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="6" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_D65_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2417 1961 1691 1530 1417 1345 1275 1233 1223 1233 1259 1317 1391 1522 1671 1947 2371 
                        2274 1900 1626 1483 1375 1300 1237 1204 1182 1195 1232 1284 1340 1469 1608 1862 2274 
                        2189 1815 1572 1443 1339 1261 1208 1178 1157 1161 1199 1242 1323 1443 1564 1793 2154 
                        2105 1756 1549 1421 1307 1235 1170 1142 1131 1142 1174 1226 1292 1415 1557 1745 2137 
                        2021 1725 1530 1390 1294 1207 1154 1110 1096 1110 1135 1199 1279 1384 1507 1715 2021 
                        1966 1690 1492 1367 1262 1177 1124 1087 1067 1077 1113 1189 1252 1351 1492 1671 1966 
                        1972 1642 1478 1347 1246 1164 1106 1064 1049 1061 1103 1161 1241 1347 1465 1633 1933 
                        1919 1643 1466 1343 1244 1152 1095 1045 1034 1048 1082 1144 1217 1327 1446 1634 1944 
                        1922 1629 1456 1324 1224 1154 1078 1038 1024 1041 1078 1139 1215 1314 1456 1629 1897 
                        1894 1617 1459 1333 1217 1148 1082 1039 1025 1030 1076 1137 1204 1306 1440 1617 1894 
                        1895 1633 1458 1341 1228 1149 1086 1046 1022 1043 1076 1131 1215 1325 1451 1616 1895 
                        1953 1644 1485 1345 1234 1161 1096 1054 1042 1051 1089 1142 1230 1334 1451 1644 1939 
                        1993 1658 1493 1355 1260 1170 1113 1073 1063 1066 1106 1162 1236 1344 1486 1658 1952 
                        2043 1695 1503 1366 1272 1191 1135 1095 1085 1102 1131 1183 1267 1366 1496 1695 2028 
                        2104 1749 1532 1404 1301 1219 1162 1127 1115 1123 1150 1214 1270 1386 1524 1718 2088 
                        2162 1802 1573 1448 1329 1245 1196 1165 1145 1153 1192 1240 1323 1428 1565 1791 2162 
                        2266 1880 1623 1477 1354 1284 1230 1183 1174 1187 1221 1289 1366 1462 1623 1867 2307 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2243 1868 1607 1465 1373 1288 1249 1221 1196 1212 1249 1288 1352 1451 1607 1855 2224 
                        2152 1810 1560 1431 1335 1261 1207 1186 1167 1178 1207 1266 1327 1431 1552 1781 2110 
                        2064 1730 1508 1390 1308 1232 1182 1144 1140 1146 1170 1232 1303 1393 1508 1730 2057 
                        1985 1688 1492 1371 1284 1202 1158 1123 1112 1124 1147 1208 1269 1368 1489 1664 1971 
                        1953 1652 1472 1356 1261 1184 1130 1095 1077 1090 1125 1180 1254 1348 1469 1634 1914 
                        1878 1621 1451 1336 1245 1168 1113 1075 1058 1065 1107 1164 1234 1325 1451 1612 1878 
                        1872 1598 1439 1316 1226 1146 1090 1055 1040 1045 1089 1142 1219 1308 1436 1586 1849 
                        1831 1575 1425 1308 1215 1149 1077 1041 1024 1039 1074 1136 1209 1303 1422 1575 1836 
                        1829 1570 1412 1306 1211 1129 1066 1029 1024 1026 1068 1127 1198 1295 1421 1562 1812 
                        1831 1559 1419 1303 1207 1132 1072 1033 1021 1030 1066 1123 1207 1286 1415 1563 1836 
                        1854 1578 1426 1303 1213 1139 1082 1047 1025 1035 1072 1131 1202 1291 1423 1574 1825 
                        1878 1591 1428 1317 1227 1149 1097 1059 1044 1053 1085 1149 1219 1314 1428 1583 1854 
                        1914 1612 1442 1337 1245 1170 1110 1079 1066 1075 1103 1158 1231 1326 1439 1599 1876 
                        1964 1650 1475 1353 1259 1187 1135 1103 1088 1096 1132 1181 1259 1345 1461 1636 1924 
                        2034 1700 1490 1390 1287 1214 1160 1125 1118 1125 1154 1207 1275 1365 1482 1690 2011 
                        2101 1765 1536 1402 1316 1241 1194 1161 1147 1151 1181 1241 1311 1399 1532 1737 2085 
                        2176 1830 1585 1441 1352 1267 1220 1187 1163 1187 1204 1257 1328 1420 1581 1806 2186 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2246 1880 1623 1476 1380 1298 1249 1226 1216 1224 1259 1295 1356 1472 1632 1886 2255 
                        2165 1805 1571 1435 1349 1273 1219 1194 1177 1187 1214 1273 1340 1435 1567 1799 2156 
                        2069 1737 1523 1406 1318 1249 1190 1151 1144 1159 1192 1242 1313 1409 1531 1742 2069 
                        2005 1685 1489 1384 1286 1216 1164 1134 1116 1130 1162 1212 1284 1375 1503 1685 2012 
                        1945 1654 1483 1358 1271 1194 1134 1103 1093 1099 1138 1190 1257 1356 1480 1645 1932 
                        1902 1624 1456 1349 1244 1173 1117 1082 1068 1080 1115 1167 1246 1338 1456 1624 1909 
                        1867 1598 1437 1332 1240 1159 1101 1060 1043 1062 1101 1152 1227 1329 1456 1598 1867 
                        1837 1582 1432 1316 1225 1152 1086 1048 1038 1049 1084 1143 1219 1311 1445 1594 1849 
                        1852 1589 1429 1313 1221 1147 1081 1038 1024 1041 1073 1134 1210 1298 1432 1581 1841 
                        1837 1582 1426 1313 1225 1140 1082 1043 1026 1040 1070 1134 1210 1303 1423 1586 1837 
                        1843 1593 1424 1314 1218 1141 1091 1045 1028 1047 1078 1137 1212 1311 1431 1593 1855 
                        1878 1607 1436 1327 1233 1160 1101 1058 1046 1055 1098 1148 1224 1327 1446 1603 1878 
                        1913 1632 1453 1347 1246 1174 1118 1083 1070 1079 1114 1162 1239 1339 1456 1628 1913 
                        1991 1662 1479 1361 1272 1197 1141 1112 1091 1105 1139 1188 1262 1355 1482 1662 1970 
                        2046 1716 1512 1385 1297 1221 1167 1132 1116 1134 1163 1219 1287 1376 1501 1697 2009 
                        2122 1771 1543 1422 1326 1246 1201 1169 1153 1163 1186 1244 1315 1416 1531 1754 2105 
                        2217 1848 1592 1458 1347 1272 1227 1194 1181 1194 1225 1270 1341 1437 1587 1824 2161 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2162 1787 1563 1425 1341 1278 1228 1197 1205 1201 1224 1288 1341 1431 1579 1821 2145 
                        2064 1757 1531 1421 1320 1256 1210 1177 1173 1173 1202 1256 1320 1421 1531 1757 2080 
                        1978 1684 1503 1402 1291 1228 1178 1148 1145 1152 1182 1228 1301 1390 1510 1684 1992 
                        1931 1674 1486 1362 1289 1207 1153 1121 1118 1125 1160 1207 1275 1362 1480 1656 1931 
                        1857 1634 1452 1358 1259 1195 1140 1110 1094 1100 1140 1195 1255 1352 1465 1634 1869 
                        1849 1590 1440 1323 1241 1168 1116 1082 1070 1079 1116 1165 1241 1334 1446 1614 1838 
                        1802 1574 1423 1331 1235 1153 1097 1055 1044 1067 1104 1157 1227 1326 1435 1590 1823 
                        1823 1553 1413 1308 1225 1153 1094 1044 1033 1047 1087 1142 1213 1318 1425 1576 1802 
                        1795 1556 1410 1311 1219 1144 1083 1040 1024 1043 1074 1130 1211 1306 1422 1563 1795 
                        1771 1553 1413 1304 1221 1138 1078 1041 1033 1041 1075 1135 1209 1299 1419 1568 1812 
                        1802 1559 1411 1301 1227 1146 1091 1047 1033 1050 1081 1143 1214 1311 1423 1574 1791 
                        1816 1574 1422 1323 1236 1157 1100 1067 1052 1055 1097 1157 1236 1318 1440 1590 1838 
                        1834 1600 1440 1337 1237 1172 1119 1084 1072 1080 1122 1172 1242 1326 1446 1617 1869 
                        1918 1639 1466 1351 1275 1191 1142 1115 1092 1104 1128 1203 1261 1356 1460 1639 1918 
                        1964 1684 1489 1378 1286 1211 1167 1134 1123 1134 1155 1211 1281 1372 1496 1674 1978 
                        2034 1736 1523 1415 1315 1243 1194 1165 1150 1158 1185 1234 1309 1409 1523 1726 2034 
                        2094 1810 1579 1431 1341 1273 1215 1193 1184 1193 1211 1268 1352 1425 1579 1810 2111 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="7" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_D75_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [3439 2661 2209 1889 1688 1545 1452 1397 1376 1391 1408 1506 1613 1805 2048 2480 3255 
                        3170 2480 2037 1787 1606 1458 1376 1311 1293 1302 1340 1413 1538 1688 1929 2293 2964 
                        2940 2307 1939 1688 1525 1397 1307 1253 1223 1232 1275 1340 1452 1606 1805 2132 2741 
                        2783 2196 1860 1627 1458 1326 1244 1187 1168 1168 1211 1279 1386 1538 1736 2037 2567 
                        2642 2107 1787 1565 1402 1270 1191 1132 1111 1118 1168 1236 1345 1470 1665 1960 2447 
                        2567 2048 1736 1538 1360 1244 1146 1095 1069 1079 1125 1191 1302 1441 1620 1879 2337 
                        2532 2003 1696 1500 1345 1211 1136 1066 1042 1051 1098 1176 1275 1402 1599 1850 2278 
                        2480 1981 1696 1482 1326 1211 1111 1057 1036 1039 1085 1150 1261 1397 1585 1832 2223 
                        2480 1981 1703 1470 1326 1207 1108 1045 1024 1039 1075 1154 1253 1402 1565 1832 2250 
                        2497 2025 1703 1494 1316 1191 1108 1045 1024 1039 1075 1146 1257 1402 1565 1814 2250 
                        2532 2003 1711 1506 1330 1207 1122 1057 1033 1042 1082 1165 1261 1397 1571 1823 2278 
                        2567 2048 1744 1513 1350 1227 1125 1075 1048 1060 1098 1168 1275 1418 1606 1850 2278 
                        2642 2095 1753 1532 1376 1240 1154 1098 1075 1082 1118 1191 1293 1430 1613 1879 2337 
                        2762 2170 1814 1585 1408 1288 1191 1136 1118 1118 1157 1219 1335 1470 1657 1939 2430 
                        2916 2264 1899 1657 1464 1326 1248 1176 1165 1161 1207 1270 1370 1532 1703 2025 2514 
                        3143 2414 1981 1728 1532 1391 1302 1244 1219 1227 1266 1335 1447 1578 1796 2157 2720 
                        3344 2642 2132 1832 1613 1470 1386 1311 1279 1293 1330 1418 1513 1680 1909 2278 2940 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3236 2580 2116 1849 1659 1531 1438 1391 1372 1381 1432 1490 1604 1760 2017 2404 3082 
                        3046 2389 1976 1741 1565 1443 1360 1307 1287 1294 1332 1411 1516 1662 1884 2231 2804 
                        2824 2238 1862 1659 1493 1364 1289 1238 1213 1224 1260 1332 1438 1584 1773 2093 2615 
                        2641 2116 1789 1584 1424 1307 1228 1171 1153 1164 1203 1273 1376 1504 1699 1981 2450 
                        2538 2038 1729 1519 1374 1256 1173 1123 1104 1117 1153 1221 1329 1454 1641 1884 2339 
                        2481 1976 1688 1496 1343 1234 1147 1084 1066 1077 1120 1189 1287 1417 1591 1844 2238 
                        2434 1956 1662 1465 1320 1205 1117 1062 1040 1049 1098 1167 1268 1394 1578 1806 2181 
                        2412 1936 1659 1462 1309 1196 1106 1050 1028 1040 1086 1155 1256 1389 1553 1797 2175 
                        2397 1936 1670 1459 1309 1192 1098 1042 1024 1038 1081 1150 1254 1379 1540 1785 2163 
                        2427 1946 1670 1465 1313 1191 1110 1048 1029 1034 1077 1155 1252 1376 1556 1781 2175 
                        2457 1961 1677 1476 1320 1196 1118 1055 1035 1048 1084 1162 1262 1386 1553 1797 2169 
                        2481 2001 1703 1493 1334 1217 1130 1071 1055 1062 1103 1167 1268 1396 1572 1810 2206 
                        2555 2049 1725 1519 1360 1234 1155 1101 1077 1087 1127 1191 1298 1422 1588 1840 2257 
                        2706 2110 1785 1556 1396 1277 1181 1135 1112 1118 1157 1224 1325 1456 1631 1898 2353 
                        2804 2212 1853 1617 1446 1322 1238 1185 1162 1173 1200 1264 1369 1507 1684 1971 2473 
                        3022 2375 1946 1695 1516 1384 1298 1242 1221 1219 1256 1327 1427 1565 1757 2082 2624 
                        3264 2546 2071 1789 1597 1465 1364 1300 1279 1296 1325 1394 1490 1652 1857 2251 2824 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3245 2570 2110 1840 1656 1532 1444 1395 1368 1380 1433 1508 1618 1777 2017 2418 3066 
                        3054 2410 1976 1741 1566 1449 1363 1304 1289 1302 1340 1415 1526 1667 1889 2244 2852 
                        2821 2237 1876 1646 1488 1365 1286 1233 1216 1224 1263 1335 1433 1595 1777 2087 2622 
                        2658 2121 1794 1576 1423 1306 1222 1169 1155 1163 1203 1270 1375 1508 1707 1981 2464 
                        2545 2043 1726 1523 1373 1259 1179 1126 1098 1113 1156 1222 1326 1460 1639 1913 2338 
                        2464 1981 1692 1488 1340 1218 1141 1087 1063 1081 1121 1188 1297 1423 1595 1845 2270 
                        2418 1946 1667 1474 1324 1203 1115 1066 1036 1053 1096 1169 1268 1402 1582 1827 2199 
                        2403 1941 1653 1469 1308 1186 1112 1049 1034 1042 1084 1158 1257 1387 1560 1798 2193 
                        2396 1951 1667 1455 1302 1188 1105 1043 1024 1038 1076 1153 1255 1382 1547 1798 2163 
                        2403 1961 1656 1463 1308 1194 1105 1046 1027 1036 1076 1153 1259 1380 1560 1794 2187 
                        2441 1971 1674 1477 1315 1201 1117 1059 1029 1040 1088 1158 1261 1397 1560 1794 2199 
                        2496 2006 1700 1488 1337 1212 1130 1070 1049 1060 1101 1176 1272 1397 1572 1815 2237 
                        2578 2038 1730 1520 1361 1241 1150 1099 1076 1088 1131 1197 1286 1418 1602 1858 2263 
                        2658 2110 1781 1554 1397 1272 1190 1135 1118 1118 1155 1230 1326 1463 1635 1903 2345 
                        2771 2218 1827 1612 1447 1319 1231 1179 1153 1165 1199 1268 1368 1503 1689 1976 2472 
                        2995 2352 1936 1692 1511 1385 1299 1237 1212 1222 1261 1328 1423 1560 1765 2098 2622 
                        3259 2528 2060 1798 1592 1460 1361 1302 1274 1284 1319 1390 1503 1639 1871 2244 2821 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3131 2533 2048 1789 1641 1496 1437 1374 1344 1361 1396 1481 1577 1732 1965 2382 2961 
                        2902 2331 1939 1725 1549 1437 1353 1304 1278 1297 1332 1391 1506 1666 1849 2191 2739 
                        2739 2191 1841 1635 1481 1361 1289 1228 1211 1217 1263 1328 1418 1565 1746 2038 2504 
                        2548 2077 1774 1549 1423 1304 1228 1178 1144 1166 1194 1259 1370 1491 1679 1948 2356 
                        2462 1992 1699 1517 1370 1256 1178 1124 1107 1115 1147 1221 1320 1446 1617 1873 2295 
                        2382 1939 1666 1491 1336 1217 1147 1090 1074 1077 1124 1191 1281 1405 1582 1819 2180 
                        2344 1914 1660 1476 1324 1204 1115 1064 1044 1054 1096 1166 1263 1396 1549 1767 2138 
                        2307 1906 1648 1456 1312 1194 1107 1054 1034 1048 1090 1156 1256 1378 1538 1774 2097 
                        2344 1931 1654 1451 1316 1185 1104 1051 1024 1039 1082 1156 1252 1383 1532 1767 2128 
                        2331 1922 1648 1461 1320 1194 1107 1046 1031 1044 1090 1163 1256 1383 1538 1767 2107 
                        2382 1939 1654 1466 1324 1204 1118 1061 1031 1048 1082 1156 1263 1387 1543 1782 2138 
                        2382 1957 1673 1496 1328 1217 1130 1072 1051 1061 1101 1166 1270 1391 1549 1782 2148 
                        2448 2001 1712 1501 1353 1231 1153 1098 1079 1082 1124 1194 1281 1405 1571 1819 2191 
                        2563 2067 1753 1554 1387 1274 1181 1132 1112 1118 1153 1221 1316 1446 1611 1857 2271 
                        2656 2170 1811 1600 1428 1312 1224 1172 1153 1153 1191 1263 1357 1486 1641 1939 2382 
                        2846 2307 1897 1666 1486 1374 1293 1224 1197 1204 1252 1316 1405 1538 1732 2038 2533 
                        3086 2435 2010 1767 1577 1442 1340 1301 1270 1274 1308 1396 1481 1629 1826 2170 2656 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="8" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_D75_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2407 1987 1731 1539 1418 1330 1272 1235 1221 1231 1232 1297 1356 1470 1605 1852 2278 
                        2307 1911 1644 1499 1389 1292 1239 1193 1180 1185 1207 1252 1331 1416 1557 1767 2157 
                        2202 1826 1606 1452 1352 1268 1206 1168 1144 1148 1177 1217 1288 1381 1495 1687 2053 
                        2133 1776 1574 1429 1320 1228 1172 1130 1116 1112 1141 1185 1255 1351 1469 1647 1968 
                        2062 1735 1538 1398 1291 1197 1141 1096 1079 1082 1120 1165 1239 1313 1433 1613 1910 
                        2033 1709 1514 1393 1269 1188 1113 1073 1051 1057 1092 1137 1215 1304 1413 1568 1850 
                        2025 1688 1493 1371 1267 1167 1113 1055 1034 1039 1076 1133 1200 1281 1408 1559 1822 
                        1995 1679 1502 1362 1255 1174 1095 1051 1034 1033 1069 1114 1194 1284 1404 1553 1788 
                        1999 1682 1512 1353 1258 1172 1094 1041 1024 1035 1061 1120 1188 1291 1388 1556 1814 
                        2009 1716 1509 1373 1246 1154 1092 1039 1022 1033 1059 1111 1190 1289 1386 1537 1810 
                        2025 1688 1507 1377 1253 1163 1099 1045 1025 1031 1060 1122 1188 1276 1384 1536 1822 
                        2033 1709 1522 1369 1260 1172 1092 1054 1030 1039 1066 1116 1189 1284 1401 1544 1804 
                        2062 1725 1509 1368 1267 1169 1105 1063 1044 1047 1071 1123 1190 1277 1389 1547 1824 
                        2117 1755 1534 1392 1274 1194 1123 1081 1068 1064 1090 1130 1209 1291 1402 1568 1863 
                        2184 1792 1573 1425 1298 1203 1152 1096 1089 1082 1114 1153 1215 1317 1411 1602 1883 
                        2287 1860 1600 1449 1325 1232 1173 1132 1113 1117 1140 1183 1251 1324 1450 1662 1980 
                        2341 1973 1670 1492 1356 1265 1214 1160 1135 1143 1165 1221 1271 1369 1495 1701 2058 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2266 1927 1658 1506 1394 1318 1259 1230 1217 1222 1254 1283 1348 1434 1580 1795 2158 
                        2216 1841 1595 1460 1354 1278 1225 1189 1175 1177 1199 1250 1312 1394 1521 1720 2040 
                        2115 1771 1542 1427 1324 1238 1190 1154 1135 1141 1163 1209 1275 1363 1468 1656 1958 
                        2024 1711 1514 1392 1290 1211 1157 1114 1101 1107 1134 1179 1246 1321 1437 1602 1877 
                        1981 1678 1488 1357 1265 1184 1123 1087 1072 1081 1105 1150 1224 1299 1413 1551 1826 
                        1964 1649 1472 1354 1253 1178 1113 1063 1049 1055 1087 1135 1201 1282 1388 1539 1772 
                        1947 1648 1464 1339 1243 1162 1094 1051 1033 1038 1076 1125 1194 1274 1390 1521 1744 
                        1940 1641 1469 1344 1240 1159 1089 1045 1026 1035 1069 1119 1189 1276 1375 1523 1750 
                        1932 1644 1482 1344 1242 1158 1084 1038 1024 1034 1067 1116 1190 1270 1367 1516 1744 
                        1952 1649 1479 1346 1244 1154 1094 1042 1028 1028 1061 1119 1186 1265 1378 1509 1750 
                        1965 1652 1477 1349 1243 1153 1096 1043 1027 1036 1062 1120 1189 1267 1367 1514 1735 
                        1964 1670 1485 1352 1244 1162 1097 1050 1037 1041 1070 1114 1183 1264 1371 1510 1747 
                        1994 1686 1485 1357 1252 1163 1107 1065 1045 1052 1079 1122 1195 1270 1367 1515 1762 
                        2074 1706 1510 1366 1264 1183 1113 1080 1062 1064 1090 1135 1199 1279 1380 1535 1803 
                        2100 1750 1535 1391 1282 1200 1143 1105 1087 1093 1107 1148 1214 1296 1395 1559 1852 
                        2199 1830 1571 1422 1312 1226 1169 1130 1114 1109 1131 1175 1234 1313 1418 1604 1909 
                        2285 1901 1622 1457 1343 1261 1194 1150 1135 1146 1160 1200 1252 1346 1455 1681 1977 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2271 1919 1653 1499 1392 1319 1264 1234 1214 1221 1255 1299 1360 1448 1580 1806 2146 
                        2222 1858 1595 1461 1355 1284 1228 1186 1176 1184 1207 1254 1320 1398 1525 1729 2076 
                        2113 1770 1554 1415 1320 1240 1187 1150 1138 1141 1166 1212 1271 1372 1472 1651 1963 
                        2037 1716 1518 1384 1288 1210 1151 1112 1103 1107 1133 1177 1245 1325 1444 1602 1888 
                        1986 1682 1486 1361 1264 1187 1130 1090 1066 1077 1108 1151 1221 1305 1411 1575 1825 
                        1951 1653 1476 1347 1250 1163 1108 1066 1046 1060 1089 1134 1210 1288 1392 1539 1797 
                        1934 1640 1468 1347 1246 1159 1092 1055 1029 1042 1074 1126 1194 1282 1393 1540 1759 
                        1933 1645 1464 1350 1239 1150 1095 1043 1032 1037 1068 1122 1191 1275 1382 1524 1764 
                        1931 1657 1479 1340 1235 1154 1091 1040 1024 1034 1062 1119 1191 1273 1373 1527 1743 
                        1933 1662 1467 1345 1239 1157 1089 1041 1025 1031 1060 1117 1193 1268 1382 1520 1759 
                        1952 1661 1474 1350 1238 1157 1094 1048 1022 1029 1066 1116 1188 1277 1374 1511 1759 
                        1976 1674 1483 1347 1248 1157 1096 1049 1032 1039 1069 1122 1186 1265 1372 1514 1771 
                        2013 1678 1489 1358 1253 1170 1101 1064 1045 1053 1084 1128 1185 1267 1379 1529 1767 
                        2037 1706 1507 1365 1265 1179 1121 1080 1068 1064 1088 1139 1200 1285 1384 1539 1797 
                        2075 1755 1513 1386 1283 1198 1137 1099 1079 1086 1107 1151 1213 1292 1398 1563 1851 
                        2179 1813 1563 1419 1307 1227 1170 1126 1107 1112 1136 1176 1231 1308 1425 1617 1908 
                        2281 1888 1614 1465 1338 1257 1191 1151 1130 1136 1155 1196 1263 1335 1466 1675 1975 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2191 1892 1605 1457 1380 1288 1258 1215 1193 1204 1222 1275 1325 1411 1540 1779 2073 
                        2112 1797 1566 1447 1340 1273 1218 1187 1166 1180 1200 1232 1303 1398 1493 1689 1993 
                        2051 1734 1525 1407 1313 1236 1190 1145 1133 1135 1166 1206 1258 1346 1446 1613 1875 
                        1953 1680 1501 1360 1288 1209 1157 1121 1093 1109 1125 1167 1240 1309 1421 1575 1806 
                        1922 1640 1462 1355 1261 1183 1129 1087 1075 1079 1099 1151 1215 1292 1392 1542 1791 
                        1886 1618 1454 1350 1247 1162 1114 1069 1057 1056 1091 1137 1196 1272 1380 1518 1726 
                        1874 1613 1462 1349 1247 1160 1093 1052 1036 1042 1073 1123 1189 1276 1364 1489 1710 
                        1856 1615 1459 1338 1243 1157 1090 1048 1032 1043 1074 1121 1189 1267 1362 1504 1687 
                        1889 1639 1468 1336 1249 1150 1090 1048 1024 1035 1068 1123 1188 1273 1360 1501 1715 
                        1876 1629 1459 1343 1250 1157 1090 1041 1029 1038 1074 1127 1189 1271 1362 1498 1695 
                        1905 1634 1457 1340 1247 1160 1095 1050 1024 1037 1060 1114 1189 1267 1359 1501 1710 
                        1886 1633 1459 1354 1239 1162 1096 1050 1034 1040 1069 1113 1185 1260 1351 1487 1701 
                        1911 1647 1474 1341 1246 1160 1105 1063 1048 1047 1077 1125 1180 1255 1352 1497 1711 
                        1964 1672 1483 1365 1256 1181 1113 1078 1062 1064 1087 1131 1192 1270 1363 1502 1740 
                        1989 1717 1500 1376 1266 1191 1130 1093 1079 1075 1099 1147 1203 1278 1359 1534 1784 
                        2071 1778 1532 1398 1285 1217 1165 1114 1093 1096 1128 1166 1215 1290 1399 1571 1843 
                        2160 1818 1575 1440 1325 1241 1173 1150 1127 1127 1145 1202 1244 1327 1431 1620 1859 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="9" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_CWF_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [3350 2619 2129 1847 1649 1532 1450 1389 1363 1372 1417 1516 1631 1831 2098 2572 3350 
                        3065 2414 1982 1742 1560 1436 1359 1302 1298 1302 1350 1436 1554 1729 1964 2374 3087 
                        2900 2262 1879 1656 1500 1376 1294 1249 1228 1242 1282 1367 1485 1643 1855 2239 2806 
                        2701 2161 1808 1595 1436 1313 1231 1181 1162 1181 1228 1309 1421 1566 1808 2108 2684 
                        2572 2048 1742 1538 1385 1253 1181 1137 1111 1137 1177 1264 1372 1527 1735 2038 2512 
                        2483 1973 1681 1485 1330 1228 1149 1100 1080 1091 1140 1221 1334 1475 1675 1947 2428 
                        2387 1921 1656 1465 1313 1207 1117 1064 1044 1064 1111 1194 1309 1455 1643 1921 2336 
                        2349 1904 1643 1440 1294 1174 1097 1046 1031 1044 1091 1171 1282 1421 1631 1895 2299 
                        2323 1895 1618 1436 1286 1171 1086 1034 1024 1034 1091 1171 1282 1421 1625 1871 2323 
                        2336 1895 1637 1440 1286 1177 1091 1039 1029 1034 1088 1165 1278 1417 1625 1887 2323 
                        2374 1921 1643 1440 1306 1184 1105 1046 1036 1054 1097 1181 1290 1440 1625 1912 2336 
                        2455 1955 1668 1465 1317 1204 1125 1078 1057 1072 1122 1197 1306 1475 1662 1929 2387 
                        2512 2010 1695 1506 1346 1235 1159 1108 1094 1102 1162 1235 1346 1500 1695 1982 2483 
                        2619 2098 1757 1554 1394 1278 1200 1152 1131 1149 1194 1282 1389 1543 1750 2068 2603 
                        2788 2171 1816 1618 1455 1330 1253 1214 1187 1204 1253 1334 1445 1606 1808 2161 2735 
                        2980 2299 1921 1675 1527 1403 1317 1267 1253 1264 1309 1389 1516 1688 1904 2299 2960 
                        3225 2498 2048 1793 1625 1470 1394 1350 1317 1326 1385 1460 1595 1764 2019 2455 3177 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3236 2531 2079 1804 1637 1513 1427 1379 1367 1372 1427 1493 1631 1800 2062 2499 3170 
                        2999 2355 1939 1702 1546 1425 1344 1303 1284 1299 1344 1420 1546 1706 1934 2334 2976 
                        2795 2196 1843 1627 1473 1353 1288 1225 1221 1233 1278 1355 1462 1620 1825 2184 2755 
                        2608 2084 1763 1559 1414 1297 1225 1175 1158 1168 1214 1292 1402 1562 1756 2073 2565 
                        2499 1989 1702 1505 1360 1251 1174 1126 1107 1125 1175 1249 1353 1502 1698 1983 2452 
                        2414 1939 1655 1468 1325 1218 1138 1088 1070 1085 1131 1210 1325 1465 1648 1925 2377 
                        2341 1892 1634 1438 1297 1184 1110 1060 1040 1059 1105 1181 1290 1435 1624 1883 2313 
                        2306 1869 1610 1422 1280 1174 1098 1040 1024 1045 1087 1165 1275 1412 1600 1865 2293 
                        2293 1874 1604 1417 1271 1172 1087 1035 1024 1035 1084 1161 1267 1409 1594 1851 2247 
                        2300 1869 1610 1417 1278 1174 1093 1040 1023 1038 1087 1165 1271 1407 1604 1865 2266 
                        2327 1878 1620 1438 1288 1188 1102 1053 1035 1047 1096 1183 1288 1427 1600 1883 2313 
                        2384 1920 1655 1457 1314 1210 1129 1079 1065 1078 1120 1201 1308 1457 1637 1897 2362 
                        2467 1978 1687 1496 1348 1237 1151 1112 1096 1107 1155 1235 1346 1485 1683 1954 2444 
                        2565 2051 1744 1543 1394 1282 1203 1153 1143 1156 1197 1275 1397 1528 1728 2030 2556 
                        2726 2165 1804 1610 1449 1339 1253 1206 1195 1201 1247 1330 1438 1594 1800 2124 2698 
                        2942 2293 1892 1673 1516 1397 1321 1267 1249 1269 1319 1387 1510 1669 1892 2253 2867 
                        3170 2459 2009 1771 1594 1471 1389 1339 1325 1332 1384 1471 1578 1732 1999 2436 3107 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3248 2543 2090 1819 1637 1514 1431 1383 1361 1380 1439 1511 1633 1810 2068 2519 3208 
                        3011 2381 1959 1719 1559 1439 1354 1309 1290 1305 1354 1436 1562 1715 1949 2345 2988 
                        2797 2220 1853 1643 1477 1368 1283 1237 1223 1241 1286 1354 1474 1637 1853 2176 2757 
                        2619 2101 1773 1571 1418 1305 1231 1179 1164 1179 1223 1303 1418 1565 1769 2090 2593 
                        2519 2004 1715 1516 1371 1259 1179 1132 1114 1132 1176 1253 1361 1514 1715 2009 2463 
                        2403 1954 1675 1474 1329 1223 1145 1095 1073 1095 1142 1220 1329 1477 1675 1940 2410 
                        2345 1912 1643 1449 1309 1196 1119 1066 1047 1066 1113 1194 1296 1447 1637 1912 2332 
                        2304 1871 1623 1426 1292 1183 1106 1049 1040 1051 1097 1178 1283 1423 1616 1879 2284 
                        2304 1879 1603 1433 1283 1176 1092 1040 1024 1042 1089 1172 1279 1423 1613 1884 2264 
                        2318 1884 1613 1433 1290 1178 1098 1040 1031 1046 1097 1176 1283 1431 1610 1875 2291 
                        2345 1902 1630 1441 1298 1192 1114 1057 1042 1057 1106 1188 1298 1441 1630 1889 2325 
                        2374 1926 1643 1468 1327 1210 1130 1083 1064 1080 1128 1208 1318 1460 1657 1935 2374 
                        2456 1989 1697 1505 1359 1241 1164 1120 1103 1119 1155 1241 1350 1493 1689 1969 2463 
                        2576 2068 1746 1549 1400 1292 1208 1158 1143 1157 1207 1281 1400 1540 1746 2051 2560 
                        2738 2164 1814 1613 1447 1347 1261 1212 1194 1212 1259 1336 1444 1597 1814 2147 2682 
                        2921 2304 1912 1679 1519 1408 1325 1277 1257 1273 1314 1403 1514 1675 1902 2271 2868 
                        3208 2471 2025 1769 1613 1479 1390 1345 1322 1340 1390 1474 1593 1765 2009 2440 3144 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3153 2496 2066 1788 1608 1498 1401 1354 1346 1361 1426 1479 1608 1775 2084 2470 3112 
                        2958 2372 1964 1712 1546 1426 1346 1295 1275 1295 1354 1418 1536 1699 1948 2282 2922 
                        2754 2178 1843 1641 1488 1354 1281 1248 1216 1235 1281 1361 1470 1619 1829 2159 2692 
                        2577 2102 1775 1566 1410 1295 1229 1180 1163 1180 1229 1295 1418 1556 1762 2066 2522 
                        2470 2014 1712 1526 1377 1255 1180 1136 1120 1136 1180 1248 1361 1507 1712 1980 2420 
                        2372 1948 1664 1470 1324 1223 1146 1094 1089 1099 1146 1223 1317 1488 1653 1917 2372 
                        2304 1917 1630 1470 1309 1204 1114 1070 1051 1075 1120 1192 1302 1443 1641 1887 2282 
                        2261 1857 1619 1426 1288 1192 1109 1046 1037 1060 1104 1180 1295 1435 1608 1857 2219 
                        2282 1857 1619 1435 1288 1180 1094 1046 1024 1051 1094 1175 1288 1426 1608 1857 2239 
                        2282 1857 1608 1443 1295 1186 1099 1046 1033 1056 1104 1180 1288 1426 1619 1887 2282 
                        2282 1917 1641 1452 1302 1198 1109 1065 1046 1060 1114 1198 1302 1443 1619 1887 2304 
                        2326 1932 1664 1470 1331 1223 1146 1089 1075 1084 1130 1216 1324 1470 1653 1917 2349 
                        2470 1997 1687 1507 1361 1248 1158 1120 1109 1130 1158 1261 1354 1498 1676 1964 2396 
                        2549 2066 1749 1546 1401 1288 1216 1163 1146 1158 1210 1281 1401 1546 1749 2031 2522 
                        2662 2139 1815 1619 1452 1339 1255 1210 1186 1210 1255 1339 1452 1566 1802 2120 2633 
                        2853 2282 1887 1664 1517 1385 1331 1275 1255 1275 1309 1393 1507 1664 1887 2282 2853 
                        3072 2420 2014 1762 1587 1470 1410 1346 1302 1331 1401 1488 1587 1762 2014 2420 3072 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="10" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_CWF_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2345 1956 1668 1504 1386 1319 1270 1229 1210 1213 1240 1305 1370 1492 1644 1921 2345 
                        2230 1860 1600 1462 1349 1272 1224 1184 1185 1184 1216 1272 1345 1450 1586 1830 2246 
                        2172 1790 1556 1424 1330 1249 1194 1164 1148 1158 1184 1241 1317 1413 1536 1772 2101 
                        2070 1747 1530 1401 1300 1217 1160 1124 1109 1124 1157 1214 1287 1375 1530 1705 2057 
                        2008 1686 1500 1374 1275 1180 1131 1100 1079 1100 1128 1191 1263 1364 1494 1678 1961 
                        1966 1647 1467 1344 1240 1172 1116 1078 1063 1070 1107 1166 1244 1335 1461 1624 1922 
                        1909 1618 1458 1339 1237 1163 1094 1053 1036 1053 1088 1150 1233 1330 1447 1618 1868 
                        1889 1613 1455 1324 1225 1138 1080 1041 1029 1038 1075 1135 1214 1306 1444 1606 1849 
                        1873 1609 1436 1322 1220 1137 1072 1030 1024 1030 1077 1137 1216 1309 1442 1588 1873 
                        1879 1606 1450 1324 1218 1141 1075 1033 1027 1029 1072 1129 1211 1302 1439 1599 1869 
                        1899 1618 1447 1316 1229 1141 1083 1035 1029 1043 1075 1138 1215 1316 1431 1611 1868 
                        1944 1632 1456 1326 1229 1149 1092 1056 1039 1051 1089 1143 1218 1335 1450 1610 1890 
                        1961 1655 1459 1345 1240 1164 1110 1072 1062 1067 1113 1164 1240 1341 1459 1632 1939 
                        2007 1697 1486 1365 1262 1185 1131 1097 1080 1094 1125 1188 1258 1356 1480 1672 1995 
                        2088 1718 1504 1392 1290 1207 1156 1132 1110 1122 1156 1211 1281 1382 1497 1710 2048 
                        2169 1771 1551 1405 1321 1243 1187 1153 1143 1150 1180 1231 1312 1416 1537 1771 2154 
                        2257 1865 1605 1461 1365 1265 1220 1194 1169 1172 1213 1257 1340 1437 1582 1833 2224 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2265 1890 1629 1470 1376 1303 1250 1220 1213 1214 1250 1285 1370 1466 1616 1866 2219 
                        2182 1815 1565 1428 1338 1262 1210 1186 1172 1182 1210 1257 1338 1431 1562 1799 2166 
                        2093 1738 1526 1400 1306 1228 1189 1142 1143 1150 1179 1230 1297 1394 1512 1728 2063 
                        1998 1686 1492 1369 1281 1202 1155 1119 1106 1112 1144 1198 1269 1372 1485 1677 1966 
                        1951 1637 1465 1344 1252 1179 1125 1090 1075 1088 1126 1177 1246 1342 1462 1633 1914 
                        1911 1618 1444 1329 1236 1163 1104 1067 1053 1064 1098 1155 1236 1326 1438 1606 1882 
                        1872 1594 1439 1314 1221 1141 1088 1049 1033 1048 1083 1138 1215 1312 1430 1586 1850 
                        1856 1584 1426 1307 1212 1137 1081 1035 1022 1039 1071 1129 1208 1298 1418 1580 1845 
                        1848 1591 1423 1305 1206 1138 1073 1031 1024 1031 1070 1128 1202 1298 1414 1572 1811 
                        1850 1584 1426 1302 1210 1137 1077 1035 1021 1032 1071 1129 1204 1293 1421 1580 1823 
                        1861 1583 1427 1314 1213 1145 1080 1042 1027 1036 1074 1140 1213 1304 1410 1586 1850 
                        1888 1602 1444 1319 1226 1155 1096 1058 1047 1057 1087 1146 1220 1319 1429 1583 1871 
                        1926 1629 1452 1337 1242 1166 1103 1076 1064 1071 1106 1164 1239 1326 1449 1608 1908 
                        1966 1659 1475 1356 1262 1188 1133 1097 1091 1100 1128 1182 1264 1342 1462 1642 1959 
                        2042 1713 1494 1385 1285 1216 1157 1125 1118 1120 1151 1207 1275 1371 1491 1681 2020 
                        2141 1767 1527 1403 1312 1237 1190 1153 1140 1155 1188 1228 1307 1400 1527 1736 2086 
                        2219 1836 1574 1443 1340 1266 1216 1184 1176 1178 1212 1266 1326 1411 1566 1819 2175 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2273 1899 1637 1481 1375 1303 1253 1223 1208 1221 1260 1300 1373 1475 1620 1881 2246 
                        2191 1835 1582 1442 1348 1274 1220 1191 1177 1187 1220 1272 1351 1439 1574 1807 2174 
                        2094 1756 1535 1413 1309 1242 1185 1153 1144 1157 1187 1229 1307 1408 1535 1722 2065 
                        2007 1699 1500 1380 1284 1209 1160 1122 1111 1122 1153 1207 1284 1374 1497 1690 1988 
                        1966 1650 1477 1355 1262 1186 1130 1095 1082 1095 1127 1181 1253 1352 1477 1654 1923 
                        1903 1631 1461 1334 1240 1168 1111 1074 1055 1074 1108 1165 1240 1337 1461 1619 1908 
                        1876 1611 1447 1324 1233 1152 1096 1054 1040 1054 1090 1150 1221 1322 1441 1611 1865 
                        1854 1585 1438 1310 1223 1146 1090 1043 1038 1046 1081 1141 1215 1308 1432 1593 1838 
                        1857 1596 1423 1320 1218 1142 1078 1037 1024 1038 1075 1138 1214 1310 1431 1600 1825 
                        1865 1597 1429 1317 1221 1141 1082 1035 1029 1040 1081 1139 1215 1315 1426 1589 1843 
                        1876 1603 1435 1317 1223 1149 1091 1046 1034 1046 1084 1145 1223 1317 1435 1591 1859 
                        1880 1607 1434 1329 1238 1156 1097 1062 1047 1059 1095 1154 1229 1322 1446 1615 1880 
                        1917 1637 1461 1344 1251 1169 1115 1084 1071 1083 1107 1169 1243 1334 1454 1621 1923 
                        1975 1672 1477 1361 1268 1197 1139 1102 1092 1101 1137 1187 1268 1353 1477 1659 1962 
                        2050 1713 1503 1387 1283 1223 1164 1130 1117 1130 1162 1213 1280 1373 1503 1699 2008 
                        2126 1776 1543 1408 1314 1247 1193 1162 1147 1158 1183 1242 1309 1405 1536 1750 2087 
                        2246 1845 1586 1441 1356 1273 1217 1190 1174 1186 1217 1269 1339 1438 1574 1822 2201 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2207 1864 1618 1457 1352 1289 1227 1197 1195 1204 1249 1273 1352 1446 1632 1845 2178 
                        2153 1828 1586 1436 1337 1263 1213 1178 1164 1178 1219 1256 1329 1426 1573 1759 2126 
                        2063 1724 1527 1412 1320 1229 1183 1164 1138 1152 1183 1236 1303 1393 1515 1708 2016 
                        1975 1700 1502 1376 1276 1200 1158 1123 1111 1123 1158 1200 1284 1367 1491 1671 1933 
                        1928 1658 1473 1364 1268 1182 1131 1099 1087 1099 1131 1176 1254 1346 1473 1630 1890 
                        1878 1626 1452 1331 1235 1167 1113 1073 1071 1078 1113 1167 1228 1347 1442 1600 1878 
                        1843 1615 1436 1343 1233 1160 1092 1058 1043 1063 1097 1149 1226 1319 1445 1590 1825 
                        1819 1574 1434 1311 1220 1155 1093 1041 1035 1055 1088 1144 1226 1319 1424 1574 1785 
                        1840 1577 1437 1321 1222 1146 1080 1043 1024 1048 1080 1140 1222 1313 1427 1577 1805 
                        1836 1574 1424 1327 1226 1150 1083 1041 1031 1050 1088 1144 1220 1311 1434 1599 1836 
                        1825 1615 1445 1327 1226 1155 1087 1054 1039 1049 1092 1155 1226 1319 1426 1590 1843 
                        1842 1613 1452 1331 1242 1167 1113 1068 1057 1063 1097 1161 1235 1331 1442 1600 1860 
                        1928 1644 1453 1346 1254 1176 1109 1084 1077 1094 1109 1189 1246 1338 1442 1617 1871 
                        1954 1671 1480 1358 1269 1194 1146 1107 1095 1102 1140 1187 1269 1358 1480 1642 1933 
                        1994 1693 1503 1393 1288 1215 1158 1128 1110 1128 1158 1215 1288 1347 1492 1678 1972 
                        2076 1759 1523 1396 1312 1227 1199 1160 1145 1160 1179 1234 1304 1396 1523 1759 2076 
                        2150 1807 1578 1435 1334 1265 1234 1191 1156 1177 1227 1281 1334 1435 1578 1807 2150 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="11" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 18]">
                        2560x1440_TL84_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [3341 2591 2107 1834 1644 1530 1423 1369 1358 1373 1427 1503 1623 1795 2107 2502 3277 
                        3078 2362 1976 1733 1563 1443 1358 1306 1296 1302 1347 1431 1548 1716 1953 2341 3005 
                        2886 2257 1881 1654 1498 1380 1296 1242 1230 1236 1289 1365 1485 1633 1860 2189 2791 
                        2702 2125 1807 1592 1431 1319 1239 1195 1178 1187 1224 1316 1423 1587 1776 2107 2645 
                        2578 2048 1751 1539 1392 1276 1198 1147 1126 1136 1187 1270 1376 1534 1733 2024 2527 
                        2478 2000 1693 1507 1351 1239 1144 1104 1085 1102 1149 1227 1333 1489 1676 1953 2407 
                        2385 1946 1654 1476 1316 1192 1121 1078 1049 1072 1116 1201 1306 1455 1644 1909 2341 
                        2351 1902 1633 1443 1292 1178 1104 1047 1037 1049 1099 1178 1279 1427 1623 1874 2330 
                        2298 1881 1612 1423 1286 1170 1085 1039 1024 1047 1088 1165 1270 1419 1618 1867 2288 
                        2298 1895 1618 1435 1279 1170 1092 1039 1024 1039 1090 1162 1273 1407 1612 1867 2278 
                        2351 1895 1633 1439 1289 1189 1107 1047 1034 1054 1099 1181 1289 1431 1623 1881 2309 
                        2396 1931 1665 1459 1319 1218 1131 1078 1063 1076 1124 1206 1309 1451 1649 1931 2362 
                        2478 2000 1710 1512 1358 1248 1168 1114 1095 1116 1168 1248 1347 1494 1693 1992 2454 
                        2605 2082 1764 1563 1407 1292 1218 1168 1154 1170 1212 1286 1392 1553 1751 2056 2578 
                        2760 2199 1840 1633 1459 1351 1270 1215 1204 1227 1267 1340 1459 1612 1834 2161 2760 
                        2988 2330 1946 1710 1539 1415 1340 1279 1260 1286 1330 1411 1525 1699 1924 2298 2919 
                        3235 2490 2048 1788 1607 1494 1403 1358 1340 1347 1407 1481 1607 1788 2032 2454 3215 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3279 2544 2095 1803 1642 1520 1426 1391 1360 1371 1429 1511 1635 1794 2072 2518 3208 
                        3024 2364 1956 1727 1556 1437 1360 1305 1289 1307 1346 1432 1549 1695 1931 2334 2963 
                        2805 2228 1867 1653 1487 1371 1289 1241 1227 1237 1294 1363 1484 1635 1848 2208 2763 
                        2663 2119 1786 1586 1432 1317 1243 1183 1170 1187 1229 1307 1421 1576 1777 2072 2607 
                        2526 2043 1727 1527 1383 1269 1191 1141 1122 1136 1187 1263 1373 1520 1715 2004 2509 
                        2442 1967 1676 1496 1346 1239 1157 1105 1084 1096 1148 1227 1331 1481 1688 1946 2403 
                        2379 1926 1650 1452 1310 1205 1121 1070 1053 1073 1121 1197 1303 1449 1646 1906 2327 
                        2320 1896 1628 1440 1298 1180 1105 1052 1037 1050 1102 1180 1282 1432 1628 1867 2270 
                        2305 1881 1617 1429 1291 1174 1096 1038 1024 1044 1084 1167 1276 1418 1603 1867 2277 
                        2334 1886 1617 1437 1285 1174 1096 1044 1028 1044 1086 1163 1276 1413 1607 1867 2312 
                        2334 1896 1635 1443 1298 1187 1110 1058 1041 1055 1104 1180 1287 1426 1624 1886 2327 
                        2387 1941 1665 1472 1331 1207 1136 1087 1069 1086 1129 1209 1312 1463 1657 1916 2357 
                        2492 2004 1711 1502 1368 1254 1168 1124 1107 1122 1168 1243 1350 1493 1699 1977 2467 
                        2616 2083 1764 1569 1415 1298 1219 1167 1157 1172 1221 1294 1407 1552 1748 2060 2597 
                        2763 2202 1844 1628 1472 1348 1280 1225 1207 1225 1267 1350 1457 1610 1830 2157 2712 
                        2975 2342 1936 1707 1536 1421 1343 1289 1271 1285 1331 1415 1520 1688 1911 2284 2951 
                        3208 2501 2043 1773 1614 1493 1415 1360 1341 1360 1407 1481 1593 1773 2043 2451 3140 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3317 2535 2116 1816 1657 1515 1436 1383 1372 1375 1425 1522 1632 1811 2074 2501 3216 
                        3020 2373 1975 1723 1577 1445 1357 1319 1298 1309 1362 1439 1560 1715 1959 2358 2983 
                        2835 2244 1875 1661 1500 1380 1303 1246 1231 1244 1296 1372 1491 1650 1866 2197 2793 
                        2662 2122 1798 1593 1439 1323 1246 1194 1173 1192 1237 1316 1425 1570 1789 2110 2625 
                        2518 2046 1735 1534 1393 1271 1196 1142 1127 1147 1190 1265 1380 1531 1723 2024 2493 
                        2451 1975 1695 1503 1350 1235 1158 1108 1087 1102 1149 1233 1338 1494 1688 1965 2412 
                        2388 1924 1657 1470 1321 1213 1130 1079 1055 1078 1121 1197 1312 1456 1654 1909 2343 
                        2336 1894 1636 1450 1303 1186 1110 1056 1041 1056 1103 1186 1289 1436 1628 1890 2292 
                        2321 1890 1621 1436 1285 1177 1100 1041 1024 1047 1095 1177 1280 1425 1614 1885 2307 
                        2343 1880 1625 1431 1289 1178 1100 1047 1033 1044 1093 1175 1285 1422 1618 1866 2307 
                        2350 1919 1632 1447 1307 1194 1111 1061 1046 1055 1110 1190 1293 1442 1628 1909 2321 
                        2427 1934 1672 1473 1333 1223 1142 1085 1070 1090 1135 1207 1321 1467 1657 1939 2373 
                        2501 2007 1715 1512 1370 1252 1175 1123 1113 1128 1175 1246 1352 1509 1711 1991 2468 
                        2615 2098 1764 1570 1406 1298 1223 1177 1160 1171 1223 1291 1409 1557 1772 2074 2606 
                        2782 2191 1852 1632 1473 1355 1274 1229 1213 1233 1276 1352 1467 1625 1843 2165 2741 
                        2972 2328 1934 1715 1547 1422 1343 1293 1280 1293 1340 1417 1544 1707 1929 2328 2972 
                        3244 2501 2063 1798 1625 1491 1417 1352 1343 1350 1412 1470 1614 1789 2035 2509 3202 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3085 2493 2006 1775 1613 1478 1402 1349 1349 1363 1410 1469 1582 1750 2023 2443 3164 
                        2938 2350 1943 1702 1533 1418 1341 1292 1279 1299 1341 1426 1523 1714 1928 2285 2870 
                        2742 2203 1828 1645 1487 1371 1285 1246 1228 1234 1292 1356 1469 1624 1842 2165 2742 
                        2571 2109 1763 1582 1435 1313 1234 1192 1181 1186 1228 1306 1418 1582 1775 2091 2544 
                        2493 2023 1750 1533 1379 1266 1198 1148 1127 1137 1186 1266 1363 1505 1714 1990 2443 
                        2350 1928 1679 1487 1334 1240 1153 1102 1082 1097 1148 1216 1334 1478 1656 1943 2350 
                        2306 1898 1634 1460 1313 1198 1122 1073 1055 1078 1122 1198 1313 1443 1634 1884 2285 
                        2264 1884 1613 1435 1292 1181 1102 1050 1028 1050 1102 1181 1279 1418 1602 1884 2264 
                        2264 1856 1602 1410 1279 1170 1092 1041 1024 1046 1082 1175 1272 1418 1592 1856 2243 
                        2243 1870 1613 1435 1292 1181 1102 1037 1033 1041 1092 1159 1272 1418 1613 1856 2264 
                        2285 1870 1634 1460 1306 1186 1102 1064 1041 1059 1107 1181 1292 1435 1624 1870 2264 
                        2373 1943 1656 1469 1341 1210 1137 1078 1073 1082 1132 1222 1313 1452 1645 1898 2306 
                        2443 1990 1702 1505 1356 1253 1164 1127 1107 1122 1164 1253 1349 1496 1690 1959 2419 
                        2571 2074 1763 1552 1418 1292 1216 1170 1153 1159 1210 1279 1386 1542 1738 2023 2493 
                        2712 2165 1828 1624 1469 1349 1272 1228 1210 1222 1259 1341 1443 1592 1828 2146 2654 
                        2870 2285 1928 1714 1523 1402 1327 1279 1259 1285 1327 1402 1505 1667 1913 2264 2837 
                        3085 2468 2023 1775 1602 1487 1402 1349 1341 1349 1394 1487 1602 1763 1990 2443 3124 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="12" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_TL84_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2339 1935 1651 1494 1381 1317 1246 1211 1205 1214 1249 1294 1364 1462 1651 1868 2294 
                        2240 1820 1596 1454 1352 1278 1223 1188 1183 1185 1214 1267 1339 1439 1577 1804 2187 
                        2161 1786 1558 1423 1328 1253 1196 1158 1150 1152 1190 1239 1317 1405 1541 1732 2090 
                        2071 1719 1529 1398 1295 1223 1167 1137 1125 1129 1153 1219 1288 1394 1503 1704 2027 
                        2013 1686 1508 1375 1281 1203 1148 1109 1093 1100 1137 1197 1267 1371 1492 1666 1973 
                        1962 1669 1477 1364 1260 1183 1110 1082 1067 1080 1115 1171 1244 1348 1462 1630 1906 
                        1907 1640 1457 1349 1239 1149 1098 1067 1042 1060 1094 1157 1229 1330 1448 1609 1872 
                        1892 1612 1447 1326 1224 1142 1088 1042 1035 1044 1083 1142 1211 1311 1437 1588 1874 
                        1853 1597 1431 1310 1220 1136 1071 1035 1024 1044 1073 1131 1205 1306 1435 1586 1844 
                        1849 1606 1433 1319 1211 1134 1076 1033 1022 1033 1074 1126 1205 1293 1428 1583 1832 
                        1880 1597 1438 1315 1214 1146 1084 1036 1027 1043 1077 1138 1214 1307 1429 1585 1846 
                        1897 1612 1453 1321 1231 1163 1098 1057 1045 1055 1091 1152 1221 1314 1439 1612 1870 
                        1934 1646 1472 1351 1250 1176 1119 1078 1063 1080 1119 1176 1240 1335 1457 1640 1915 
                        1996 1684 1492 1373 1274 1198 1148 1111 1102 1114 1142 1192 1260 1364 1482 1663 1976 
                        2067 1740 1524 1405 1294 1226 1172 1133 1126 1144 1169 1217 1294 1387 1519 1710 2067 
                        2174 1795 1571 1434 1331 1253 1207 1164 1151 1170 1198 1250 1319 1425 1553 1771 2124 
                        2265 1859 1605 1457 1351 1286 1228 1201 1189 1192 1232 1275 1351 1457 1592 1832 2250 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2296 1899 1642 1469 1380 1309 1249 1231 1207 1212 1251 1301 1374 1462 1623 1880 2246 
                        2200 1822 1579 1449 1346 1273 1225 1187 1177 1190 1212 1268 1340 1422 1559 1799 2156 
                        2101 1763 1546 1422 1318 1244 1190 1157 1148 1153 1194 1237 1316 1406 1531 1747 2069 
                        2041 1714 1511 1393 1296 1220 1172 1126 1117 1130 1158 1212 1286 1384 1503 1676 1998 
                        1972 1682 1487 1364 1274 1196 1141 1104 1090 1099 1138 1190 1264 1358 1476 1650 1959 
                        1934 1641 1462 1354 1255 1183 1124 1084 1066 1074 1115 1171 1242 1341 1472 1624 1902 
                        1903 1623 1453 1327 1233 1161 1098 1059 1046 1062 1098 1154 1227 1324 1450 1606 1861 
                        1866 1607 1442 1324 1229 1143 1089 1046 1035 1045 1086 1143 1214 1316 1442 1582 1826 
                        1858 1598 1435 1316 1225 1140 1081 1035 1024 1041 1070 1133 1210 1306 1423 1585 1835 
                        1878 1599 1432 1321 1216 1138 1079 1039 1026 1039 1070 1127 1208 1298 1423 1582 1860 
                        1867 1598 1440 1319 1222 1144 1088 1047 1034 1044 1081 1137 1212 1303 1431 1589 1861 
                        1890 1620 1452 1332 1242 1152 1103 1066 1051 1064 1096 1154 1224 1325 1446 1599 1866 
                        1945 1650 1473 1342 1260 1182 1120 1088 1075 1086 1120 1172 1243 1334 1463 1628 1926 
                        2005 1685 1493 1378 1281 1203 1148 1110 1105 1116 1150 1199 1274 1364 1479 1666 1991 
                        2069 1742 1527 1400 1305 1224 1182 1142 1129 1142 1169 1226 1292 1385 1516 1706 2031 
                        2165 1805 1563 1432 1329 1258 1210 1173 1161 1169 1199 1254 1315 1416 1543 1760 2147 
                        2246 1867 1601 1444 1356 1285 1239 1203 1190 1203 1232 1275 1339 1444 1601 1830 2198 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2322 1893 1658 1479 1393 1304 1257 1223 1218 1216 1248 1310 1372 1475 1625 1867 2251 
                        2198 1829 1595 1445 1364 1280 1223 1200 1185 1191 1227 1275 1349 1439 1582 1817 2171 
                        2123 1775 1553 1429 1330 1253 1202 1161 1152 1159 1196 1246 1322 1419 1545 1739 2091 
                        2040 1716 1521 1400 1303 1226 1174 1136 1120 1134 1166 1220 1290 1379 1514 1706 2012 
                        1966 1684 1494 1371 1283 1198 1146 1105 1094 1110 1140 1192 1271 1368 1483 1666 1946 
                        1941 1648 1479 1361 1259 1180 1124 1086 1069 1080 1116 1178 1248 1353 1472 1639 1909 
                        1910 1621 1460 1344 1244 1169 1107 1068 1047 1066 1099 1154 1235 1331 1457 1609 1874 
                        1879 1606 1449 1333 1233 1149 1093 1051 1039 1051 1087 1149 1221 1320 1442 1601 1844 
                        1871 1605 1439 1322 1219 1142 1086 1038 1024 1044 1081 1142 1214 1312 1433 1600 1859 
                        1885 1593 1439 1315 1221 1142 1084 1042 1031 1039 1077 1138 1216 1307 1433 1581 1856 
                        1880 1617 1437 1323 1231 1150 1089 1049 1038 1043 1087 1147 1218 1318 1434 1609 1856 
                        1922 1614 1459 1334 1244 1168 1109 1064 1052 1069 1102 1153 1232 1328 1446 1618 1879 
                        1952 1652 1476 1351 1261 1180 1126 1087 1081 1092 1126 1174 1245 1348 1473 1639 1926 
                        2004 1697 1492 1379 1273 1203 1152 1120 1108 1114 1152 1197 1276 1367 1499 1678 1997 
                        2083 1734 1534 1404 1306 1230 1176 1146 1135 1150 1178 1228 1301 1397 1526 1713 2053 
                        2162 1794 1561 1439 1338 1260 1209 1177 1169 1177 1207 1255 1335 1432 1557 1794 2162 
                        2271 1867 1616 1465 1366 1283 1241 1196 1192 1194 1236 1266 1357 1458 1594 1874 2242 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2159 1861 1572 1446 1356 1272 1228 1193 1197 1206 1235 1264 1330 1426 1585 1825 2215 
                        2138 1811 1569 1428 1326 1256 1208 1176 1167 1182 1208 1264 1318 1438 1557 1761 2088 
                        2053 1743 1514 1415 1318 1245 1186 1162 1148 1150 1193 1231 1303 1396 1525 1713 2053 
                        1970 1706 1491 1389 1299 1216 1163 1135 1127 1129 1157 1210 1284 1389 1502 1691 1950 
                        1946 1665 1507 1369 1269 1193 1148 1111 1094 1100 1137 1193 1255 1344 1475 1638 1908 
                        1861 1609 1465 1346 1244 1184 1119 1080 1065 1075 1114 1161 1244 1338 1445 1622 1861 
                        1844 1600 1439 1334 1236 1154 1099 1062 1047 1066 1099 1154 1236 1319 1439 1587 1827 
                        1821 1597 1429 1319 1223 1144 1085 1045 1026 1045 1085 1144 1211 1303 1419 1597 1821 
                        1825 1576 1422 1298 1213 1136 1078 1038 1024 1042 1068 1141 1207 1306 1413 1576 1809 
                        1805 1584 1429 1319 1223 1144 1085 1032 1031 1036 1076 1123 1205 1303 1429 1573 1821 
                        1827 1575 1439 1334 1230 1143 1079 1052 1034 1048 1084 1138 1217 1311 1430 1575 1811 
                        1879 1622 1445 1330 1251 1155 1104 1056 1055 1061 1099 1166 1225 1314 1435 1584 1826 
                        1908 1638 1465 1344 1249 1181 1115 1090 1074 1085 1115 1181 1242 1336 1455 1612 1889 
                        1970 1677 1491 1363 1284 1197 1145 1113 1101 1103 1140 1185 1255 1355 1470 1636 1910 
                        2031 1713 1514 1396 1303 1224 1174 1145 1132 1139 1162 1218 1280 1369 1514 1698 1987 
                        2088 1761 1557 1438 1318 1242 1195 1163 1149 1169 1195 1242 1302 1399 1545 1745 2064 
                        2159 1843 1585 1446 1347 1280 1228 1193 1190 1193 1221 1280 1347 1436 1559 1825 2187 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="13" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_HZ_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [3288 2526 2095 1803 1640 1507 1426 1380 1374 1394 1443 1548 1697 1925 2195 2695 3524 
                        3014 2361 1958 1718 1541 1434 1345 1301 1296 1311 1358 1453 1609 1799 2070 2499 3241 
                        2782 2195 1857 1632 1462 1358 1277 1236 1225 1243 1299 1383 1517 1709 1958 2353 2987 
                        2653 2095 1780 1562 1408 1296 1216 1171 1161 1191 1240 1337 1462 1640 1872 2209 2782 
                        2490 2003 1701 1500 1353 1249 1169 1136 1123 1134 1183 1275 1405 1583 1808 2134 2695 
                        2411 1919 1648 1459 1311 1212 1130 1087 1082 1098 1153 1243 1363 1527 1753 2063 2545 
                        2321 1872 1609 1428 1284 1179 1110 1062 1047 1070 1115 1212 1334 1497 1709 1997 2490 
                        2283 1847 1598 1402 1263 1163 1089 1044 1032 1049 1103 1193 1319 1478 1680 1974 2419 
                        2260 1837 1572 1394 1254 1145 1079 1032 1024 1043 1087 1181 1304 1465 1672 1952 2419 
                        2253 1832 1583 1388 1258 1153 1080 1030 1022 1041 1096 1175 1311 1459 1680 1958 2428 
                        2268 1847 1591 1399 1270 1159 1089 1047 1029 1055 1106 1189 1314 1474 1684 1974 2454 
                        2306 1882 1613 1426 1294 1183 1115 1075 1059 1075 1125 1214 1345 1500 1705 2015 2499 
                        2386 1919 1648 1462 1319 1212 1141 1101 1087 1112 1161 1252 1369 1530 1753 2057 2583 
                        2445 1980 1688 1510 1355 1252 1181 1139 1132 1151 1205 1289 1423 1583 1813 2134 2674 
                        2603 2076 1753 1562 1414 1304 1229 1191 1187 1191 1249 1339 1465 1648 1872 2238 2828 
                        2748 2188 1832 1628 1484 1366 1294 1247 1245 1263 1326 1414 1548 1726 1952 2369 3054 
                        2899 2329 1936 1697 1548 1434 1366 1311 1304 1334 1383 1497 1644 1813 2095 2554 3335 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3088 2404 2001 1763 1604 1471 1408 1361 1354 1359 1423 1513 1646 1832 2105 2563 3217 
                        2847 2248 1877 1657 1510 1403 1323 1283 1281 1300 1343 1429 1560 1736 1984 2355 3008 
                        2672 2111 1781 1589 1435 1333 1258 1222 1212 1225 1274 1370 1497 1657 1887 2233 2836 
                        2499 2013 1710 1533 1378 1276 1210 1161 1157 1177 1229 1313 1432 1585 1794 2111 2651 
                        2379 1929 1653 1471 1330 1238 1161 1120 1111 1134 1175 1267 1378 1536 1740 2031 2526 
                        2308 1867 1607 1438 1293 1197 1127 1076 1070 1090 1148 1229 1338 1500 1702 1979 2429 
                        2233 1818 1585 1400 1272 1169 1104 1055 1044 1063 1109 1197 1320 1465 1669 1935 2331 
                        2191 1799 1557 1394 1258 1157 1081 1041 1026 1052 1107 1189 1300 1447 1646 1908 2331 
                        2177 1799 1550 1380 1249 1150 1076 1033 1024 1046 1092 1175 1295 1441 1626 1913 2315 
                        2164 1794 1553 1378 1249 1146 1080 1042 1026 1044 1093 1169 1295 1444 1626 1887 2308 
                        2184 1809 1560 1389 1269 1161 1097 1046 1032 1057 1109 1189 1303 1459 1638 1913 2347 
                        2248 1832 1585 1417 1286 1183 1118 1081 1060 1078 1122 1210 1330 1462 1673 1929 2404 
                        2300 1882 1619 1441 1318 1212 1146 1107 1090 1113 1163 1249 1364 1506 1706 1984 2481 
                        2387 1945 1677 1484 1354 1258 1187 1142 1140 1155 1203 1288 1403 1568 1754 2067 2592 
                        2499 2013 1727 1547 1403 1305 1238 1199 1185 1203 1253 1340 1453 1615 1823 2164 2724 
                        2703 2137 1799 1604 1471 1364 1298 1262 1249 1269 1313 1411 1523 1690 1913 2292 2907 
                        2859 2270 1908 1686 1533 1441 1370 1323 1325 1333 1386 1484 1607 1790 2031 2463 3102 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3092 2431 2014 1753 1605 1487 1412 1365 1358 1384 1432 1532 1666 1850 2142 2573 3295 
                        2843 2259 1894 1658 1506 1409 1334 1290 1288 1302 1355 1441 1580 1753 1996 2422 3026 
                        2660 2129 1789 1587 1441 1350 1265 1230 1223 1238 1288 1382 1509 1674 1900 2259 2831 
                        2500 2014 1719 1532 1387 1286 1213 1172 1166 1182 1236 1319 1438 1616 1812 2129 2640 
                        2406 1936 1654 1477 1345 1243 1168 1124 1120 1136 1186 1274 1395 1559 1757 2067 2536 
                        2303 1869 1620 1441 1305 1202 1136 1087 1084 1097 1153 1243 1360 1509 1723 1996 2465 
                        2245 1821 1587 1409 1283 1182 1106 1061 1053 1074 1124 1202 1332 1480 1682 1941 2414 
                        2203 1802 1562 1404 1270 1161 1094 1044 1041 1055 1106 1198 1315 1465 1662 1936 2342 
                        2182 1798 1559 1387 1256 1159 1087 1041 1024 1048 1106 1186 1302 1450 1666 1926 2326 
                        2189 1798 1562 1390 1265 1157 1086 1045 1035 1047 1110 1190 1305 1456 1654 1926 2342 
                        2209 1821 1566 1401 1274 1165 1103 1056 1038 1063 1111 1198 1322 1471 1658 1926 2381 
                        2245 1835 1598 1421 1298 1194 1124 1087 1066 1087 1135 1219 1340 1493 1690 1963 2447 
                        2288 1874 1620 1453 1324 1223 1153 1113 1103 1118 1174 1254 1376 1532 1736 2025 2500 
                        2414 1963 1670 1493 1360 1263 1194 1151 1142 1163 1213 1298 1412 1580 1780 2091 2620 
                        2526 2025 1731 1545 1421 1317 1247 1206 1194 1209 1263 1352 1468 1631 1850 2189 2754 
                        2691 2136 1802 1620 1480 1371 1302 1272 1256 1279 1329 1415 1542 1702 1931 2326 2937 
                        2854 2281 1884 1698 1545 1429 1373 1327 1312 1342 1401 1493 1620 1789 2049 2482 3205 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2546 2014 1729 1527 1466 1338 1273 1255 1282 1319 1368 1490 1637 1833 2107 2477 3107 
                        2350 1929 1651 1455 1348 1309 1238 1214 1222 1247 1300 1389 1580 1762 1971 2350 2909 
                        2235 1815 1580 1421 1300 1255 1190 1167 1175 1198 1255 1358 1527 1697 1909 2263 2736 
                        2083 1729 1540 1389 1264 1190 1146 1111 1131 1160 1214 1319 1466 1637 1851 2156 2656 
                        2014 1651 1478 1358 1222 1160 1104 1085 1098 1125 1167 1273 1421 1580 1797 2083 2511 
                        1909 1622 1466 1328 1190 1131 1078 1047 1072 1078 1138 1247 1389 1567 1746 1992 2380 
                        1909 1594 1432 1282 1190 1111 1072 1024 1041 1066 1098 1214 1368 1527 1746 1992 2350 
                        1870 1580 1410 1273 1183 1091 1047 1024 1030 1053 1118 1222 1348 1502 1697 1971 2320 
                        1833 1567 1389 1264 1183 1085 1041 1018 1024 1047 1104 1198 1348 1502 1713 1929 2320 
                        1815 1567 1389 1273 1183 1098 1047 1018 1018 1047 1111 1206 1338 1490 1713 1950 2320 
                        1851 1580 1432 1282 1190 1111 1060 1036 1041 1060 1125 1214 1348 1502 1713 1971 2412 
                        1851 1594 1421 1291 1206 1125 1085 1047 1060 1085 1131 1230 1368 1527 1713 1992 2380 
                        1890 1608 1443 1309 1222 1153 1104 1098 1098 1118 1183 1291 1421 1580 1746 2060 2444 
                        1909 1637 1455 1348 1255 1183 1138 1125 1118 1146 1214 1319 1443 1608 1815 2107 2546 
                        2014 1697 1502 1378 1291 1222 1198 1160 1175 1183 1255 1368 1478 1637 1890 2182 2656 
                        2083 1762 1553 1432 1328 1264 1230 1214 1222 1255 1328 1443 1553 1729 1950 2291 2820 
                        2182 1833 1622 1478 1389 1309 1300 1273 1282 1309 1410 1490 1637 1797 2060 2444 3107 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        2560x1440_HZ_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2301 1886 1641 1469 1378 1297 1248 1220 1220 1233 1264 1332 1426 1568 1720 2012 2467 
                        2193 1820 1580 1441 1333 1271 1211 1184 1184 1193 1223 1287 1392 1509 1671 1925 2358 
                        2083 1737 1538 1404 1296 1233 1179 1152 1146 1158 1199 1255 1345 1470 1621 1862 2237 
                        2033 1694 1506 1372 1275 1201 1146 1114 1108 1133 1169 1239 1324 1440 1584 1787 2132 
                        1943 1649 1464 1340 1245 1177 1120 1099 1090 1097 1133 1201 1294 1414 1557 1757 2104 
                        1909 1602 1437 1321 1223 1157 1097 1066 1064 1076 1119 1186 1272 1382 1529 1722 2015 
                        1856 1578 1417 1305 1209 1136 1087 1051 1040 1059 1093 1168 1256 1368 1505 1683 1991 
                        1836 1565 1415 1289 1196 1127 1073 1039 1030 1044 1087 1156 1249 1358 1488 1673 1946 
                        1822 1560 1395 1283 1190 1112 1065 1028 1024 1039 1073 1146 1237 1349 1484 1658 1950 
                        1812 1553 1402 1276 1192 1117 1064 1025 1021 1036 1080 1138 1242 1341 1488 1659 1953 
                        1814 1556 1401 1279 1196 1117 1067 1036 1021 1044 1084 1146 1237 1347 1483 1664 1963 
                        1826 1571 1407 1291 1207 1129 1083 1054 1041 1054 1092 1159 1254 1358 1487 1681 1978 
                        1863 1580 1418 1306 1214 1142 1094 1066 1056 1076 1112 1180 1260 1367 1509 1693 2017 
                        1874 1601 1428 1326 1227 1160 1112 1084 1081 1095 1136 1195 1288 1391 1534 1726 2049 
                        1949 1643 1452 1343 1254 1184 1135 1110 1110 1110 1153 1216 1299 1417 1551 1771 2117 
                        2000 1686 1479 1366 1284 1210 1166 1135 1136 1149 1195 1252 1339 1448 1576 1826 2222 
                        2029 1739 1516 1382 1301 1235 1196 1160 1157 1180 1210 1289 1382 1477 1641 1907 2335 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2162 1795 1568 1436 1348 1266 1233 1204 1201 1202 1246 1302 1383 1493 1649 1914 2252 
                        2072 1732 1515 1390 1306 1243 1191 1168 1170 1183 1210 1266 1350 1456 1602 1815 2189 
                        2001 1670 1475 1367 1272 1210 1161 1140 1133 1142 1176 1243 1327 1425 1563 1767 2123 
                        1915 1628 1447 1346 1247 1183 1140 1105 1105 1120 1158 1216 1296 1393 1518 1707 2032 
                        1857 1588 1423 1314 1225 1166 1112 1084 1079 1098 1126 1194 1269 1373 1498 1672 1972 
                        1827 1558 1402 1302 1206 1143 1094 1055 1052 1068 1114 1173 1248 1358 1485 1651 1923 
                        1786 1532 1396 1279 1197 1126 1081 1044 1036 1052 1087 1154 1243 1339 1470 1630 1864 
                        1763 1525 1379 1281 1191 1121 1065 1036 1024 1047 1091 1152 1231 1329 1458 1617 1875 
                        1755 1528 1376 1271 1185 1116 1062 1030 1024 1042 1077 1141 1229 1326 1443 1625 1866 
                        1741 1521 1376 1266 1183 1110 1064 1037 1024 1039 1077 1133 1227 1327 1441 1599 1857 
                        1747 1524 1374 1269 1195 1119 1075 1035 1024 1046 1087 1146 1227 1333 1442 1612 1877 
                        1780 1529 1383 1283 1200 1129 1085 1060 1043 1057 1089 1155 1241 1323 1460 1610 1903 
                        1796 1549 1393 1287 1213 1142 1098 1072 1058 1077 1114 1177 1256 1346 1469 1633 1937 
                        1829 1573 1419 1303 1225 1166 1118 1087 1089 1099 1134 1194 1270 1377 1484 1672 1987 
                        1871 1593 1431 1330 1244 1185 1142 1118 1108 1122 1157 1217 1288 1389 1510 1712 2040 
                        1967 1647 1453 1345 1273 1208 1169 1149 1140 1155 1182 1250 1317 1417 1545 1767 2115 
                        2001 1695 1495 1373 1288 1240 1199 1170 1176 1179 1213 1277 1351 1458 1591 1839 2171 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2165 1815 1578 1428 1349 1280 1236 1208 1205 1224 1254 1319 1400 1507 1678 1921 2306 
                        2068 1741 1529 1391 1302 1248 1202 1174 1176 1185 1221 1276 1367 1470 1612 1867 2202 
                        1992 1685 1481 1365 1278 1225 1168 1146 1144 1154 1189 1254 1338 1440 1573 1787 2120 
                        1916 1629 1454 1345 1256 1192 1143 1116 1114 1125 1165 1223 1302 1420 1533 1722 2023 
                        1878 1594 1424 1320 1238 1171 1120 1087 1087 1100 1136 1201 1285 1393 1513 1701 1979 
                        1824 1560 1413 1305 1217 1148 1103 1066 1066 1076 1119 1186 1269 1366 1503 1666 1951 
                        1795 1534 1398 1288 1208 1139 1084 1050 1045 1063 1101 1159 1254 1353 1481 1636 1930 
                        1772 1527 1384 1290 1202 1125 1078 1038 1039 1049 1090 1161 1245 1346 1472 1641 1884 
                        1759 1527 1383 1277 1191 1125 1073 1037 1024 1045 1092 1152 1236 1335 1478 1635 1875 
                        1761 1524 1384 1277 1198 1121 1069 1040 1033 1041 1093 1153 1236 1338 1465 1632 1884 
                        1767 1534 1379 1280 1200 1122 1080 1045 1030 1051 1089 1155 1245 1344 1460 1622 1904 
                        1777 1531 1394 1286 1211 1140 1091 1066 1048 1066 1101 1164 1250 1352 1474 1638 1938 
                        1786 1543 1394 1298 1219 1153 1105 1077 1070 1082 1125 1182 1267 1369 1494 1667 1951 
                        1850 1588 1413 1311 1231 1170 1125 1096 1090 1106 1143 1202 1278 1388 1506 1691 2008 
                        1892 1602 1434 1329 1260 1196 1151 1125 1117 1127 1166 1228 1302 1403 1532 1732 2062 
                        1958 1646 1455 1359 1281 1214 1173 1157 1147 1163 1198 1253 1334 1428 1559 1793 2138 
                        1998 1703 1476 1383 1299 1230 1203 1174 1164 1187 1226 1285 1361 1457 1605 1853 2243 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1782 1504 1355 1244 1232 1152 1114 1110 1138 1166 1198 1283 1375 1493 1651 1850 2175 
                        1710 1487 1333 1220 1166 1160 1116 1104 1116 1135 1171 1230 1367 1478 1591 1811 2117 
                        1674 1436 1309 1222 1153 1140 1099 1088 1099 1117 1159 1233 1354 1460 1581 1791 2049 
                        1596 1399 1303 1220 1144 1103 1079 1057 1080 1104 1144 1222 1328 1437 1566 1744 2036 
                        1572 1359 1272 1213 1125 1093 1058 1050 1066 1088 1119 1200 1308 1412 1547 1715 1960 
                        1512 1354 1279 1202 1110 1080 1047 1027 1054 1057 1105 1191 1295 1418 1523 1663 1885 
                        1527 1343 1261 1171 1121 1071 1050 1013 1034 1054 1075 1170 1288 1396 1537 1679 1879 
                        1505 1339 1249 1170 1120 1057 1032 1019 1028 1048 1101 1184 1276 1381 1503 1670 1867 
                        1478 1330 1232 1164 1122 1053 1028 1015 1024 1044 1090 1163 1279 1383 1520 1638 1870 
                        1460 1328 1230 1170 1120 1064 1032 1013 1016 1042 1094 1169 1267 1370 1517 1653 1867 
                        1481 1331 1261 1171 1121 1071 1038 1025 1034 1048 1102 1170 1269 1373 1509 1661 1929 
                        1466 1330 1240 1169 1125 1074 1053 1027 1042 1063 1098 1175 1276 1383 1494 1663 1885 
                        1475 1324 1242 1170 1125 1086 1058 1062 1066 1082 1133 1217 1308 1412 1503 1695 1908 
                        1463 1324 1231 1184 1137 1096 1073 1070 1067 1090 1144 1222 1307 1412 1535 1704 1951 
                        1508 1343 1244 1185 1145 1109 1106 1082 1099 1103 1159 1242 1311 1408 1565 1727 1989 
                        1516 1358 1254 1201 1149 1120 1108 1104 1116 1142 1196 1278 1344 1451 1574 1766 2052 
                        1527 1369 1271 1204 1167 1127 1138 1126 1138 1158 1234 1283 1375 1464 1614 1825 2175 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="1" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        3264x2448_A_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [6459    5223    4442    3928    3562    3271    3051    2911    2873    2936    3091    3329    3634    4014    4523    5189    5944
                        5642 4609 3975 3534 3161 2843 2600 2454 2415 2479 2641 2896 3229 3614 4076 4688 5482
                        5064 4194 3642 3200 2796 2456 2207 2060 2016 2078 2240 2507 2862 3282 3743 4294 5065
                        4636 3889 3367 2896 2468 2119 1873 1731 1689 1745 1904 2165 2530 2977 3464 3991 4709
                        4309 3636 3116 2621 2177 1833 1600 1471 1436 1488 1631 1876 2233 2694 3206 3737 4416
                        4084 3450 2913 2398 1951 1619 1404 1290 1262 1308 1434 1661 2004 2463 2998 3550 4199
                        3918 3301 2750 2224 1782 1464 1267 1164 1141 1186 1299 1506 1832 2285 2829 3402 4028
                        3809 3197 2637 2106 1670 1366 1180 1083 1063 1108 1216 1407 1719 2165 2713 3293 3923
                        3766 3151 2583 2051 1619 1321 1140 1044 1026 1073 1178 1363 1666 2108 2657 3245 3877
                        3756 3145 2577 2046 1618 1320 1139 1043 1024 1071 1176 1360 1663 2103 2649 3231 3861
                        3808 3190 2632 2105 1672 1367 1181 1088 1067 1109 1214 1407 1718 2162 2704 3279 3906
                        3927 3275 2733 2214 1778 1462 1265 1166 1140 1181 1294 1501 1827 2273 2807 3373 3997
                        4127 3401 2878 2373 1936 1608 1396 1284 1253 1297 1424 1647 1985 2431 2952 3497 4128
                        4451 3593 3069 2588 2158 1821 1592 1466 1429 1478 1619 1861 2206 2648 3146 3669 4322
                        4901 3864 3283 2834 2424 2085 1848 1712 1669 1724 1876 2128 2474 2901 3371 3886 4623
                        5551 4299 3573 3114 2733 2407 2170 2030 1987 2045 2199 2452 2788 3188 3636 4191 5100
                        6475 4970 4033 3462 3083 2779 2553 2417 2373 2429 2584 2828 3142 3518 3984 4696 5819 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [4512 3638 3095 2768 2550 2387 2268 2194 2176 2210 2293 2417 2585 2808 3121 3559 4066
                        3944 3214 2788 2518 2309 2139 2009 1931 1909 1947 2035 2171 2349 2560 2832 3225 3756
                        3539 2929 2577 2320 2102 1917 1779 1695 1672 1710 1802 1951 2141 2364 2622 2966 3478
                        3248 2734 2413 2152 1920 1724 1580 1494 1471 1506 1604 1755 1958 2197 2461 2778 3251
                        3027 2579 2269 1998 1753 1551 1408 1326 1305 1340 1432 1584 1791 2040 2316 2623 3062
                        2880 2469 2158 1875 1620 1416 1279 1206 1189 1221 1306 1451 1659 1916 2205 2514 2924
                        2771 2377 2062 1774 1516 1315 1185 1120 1107 1138 1214 1350 1555 1816 2112 2427 2820
                        2700 2315 1995 1700 1442 1247 1124 1063 1053 1085 1157 1285 1483 1745 2044 2364 2750
                        2673 2288 1964 1666 1407 1216 1096 1035 1027 1061 1132 1256 1450 1711 2012 2337 2724
                        2663 2279 1956 1659 1404 1214 1093 1032 1024 1057 1129 1254 1447 1706 2007 2330 2718
                        2696 2302 1986 1693 1439 1248 1125 1064 1053 1083 1155 1285 1482 1739 2039 2359 2751
                        2769 2353 2041 1756 1506 1312 1185 1120 1106 1135 1213 1347 1548 1803 2095 2413 2813
                        2894 2426 2120 1844 1601 1408 1276 1204 1185 1218 1301 1443 1643 1892 2174 2488 2905
                        3098 2543 2228 1964 1732 1541 1405 1328 1307 1340 1430 1575 1771 2011 2284 2595 3038
                        3387 2713 2353 2100 1880 1697 1564 1485 1462 1496 1586 1730 1918 2146 2412 2734 3236
                        3806 2990 2527 2261 2052 1880 1755 1678 1655 1689 1776 1913 2091 2309 2572 2935 3554
                        4414 3430 2828 2475 2257 2096 1976 1906 1885 1916 1998 2128 2298 2514 2805 3275 4039 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [4495 3615 3065 2730 2505 2336 2213 2138 2115 2148 2231 2358 2531 2757 3077 3524 4040
                        3936 3203 2768 2488 2274 2098 1965 1884 1859 1894 1982 2119 2300 2518 2799 3204 3740
                        3546 2932 2569 2302 2078 1888 1745 1659 1634 1670 1763 1911 2105 2334 2602 2954 3477
                        3268 2745 2417 2145 1903 1703 1555 1467 1440 1476 1572 1725 1931 2176 2450 2775 3262
                        3054 2599 2279 1997 1746 1539 1391 1306 1283 1316 1409 1561 1771 2029 2314 2633 3081
                        2916 2496 2174 1881 1619 1410 1269 1192 1172 1203 1289 1435 1646 1911 2213 2534 2953
                        2819 2412 2087 1786 1520 1314 1180 1111 1096 1126 1204 1342 1550 1818 2127 2457 2859
                        2754 2355 2025 1719 1452 1251 1124 1059 1047 1078 1151 1281 1483 1753 2066 2401 2798
                        2730 2333 1998 1688 1422 1224 1099 1035 1025 1059 1130 1256 1455 1724 2039 2379 2776
                        2723 2328 1994 1684 1420 1224 1099 1034 1024 1057 1129 1256 1454 1724 2040 2379 2779
                        2761 2357 2027 1722 1458 1260 1132 1067 1054 1084 1158 1289 1493 1762 2076 2415 2821
                        2841 2412 2087 1789 1528 1325 1194 1125 1108 1138 1217 1355 1563 1830 2138 2475 2889
                        2967 2485 2169 1879 1625 1423 1285 1210 1189 1220 1307 1452 1660 1922 2221 2550 2979
                        3178 2603 2277 2000 1757 1558 1416 1335 1311 1344 1436 1586 1790 2042 2330 2657 3114
                        3469 2772 2400 2136 1905 1714 1576 1492 1467 1502 1594 1742 1937 2176 2456 2795 3311
                        3888 3046 2576 2296 2077 1898 1764 1684 1660 1694 1783 1923 2110 2337 2616 2993 3633
                        4492 3488 2870 2505 2277 2108 1983 1907 1884 1917 2002 2136 2314 2540 2842 3330 4111 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [4256 3435 2910 2593 2390 2247 2146 2086 2070 2103 2174 2285 2440 2650 2960 3391 3887
                        3716 3029 2621 2369 2183 2034 1923 1857 1842 1876 1953 2074 2235 2428 2688 3070 3584
                        3336 2763 2434 2203 2009 1848 1727 1655 1638 1672 1757 1891 2060 2261 2500 2825 3321
                        3062 2584 2294 2063 1854 1678 1550 1474 1455 1490 1581 1721 1904 2122 2359 2649 3107
                        2854 2444 2171 1930 1707 1522 1391 1319 1302 1336 1423 1565 1757 1987 2234 2513 2923
                        2721 2345 2073 1820 1587 1399 1272 1205 1191 1224 1304 1440 1637 1874 2138 2415 2796
                        2626 2271 1995 1733 1493 1304 1182 1122 1112 1144 1216 1344 1539 1785 2055 2337 2698
                        2564 2220 1939 1671 1428 1240 1124 1064 1056 1090 1160 1280 1470 1718 1995 2282 2636
                        2543 2204 1918 1644 1398 1213 1097 1036 1029 1065 1134 1251 1438 1688 1966 2257 2613
                        2536 2195 1911 1638 1393 1209 1093 1032 1024 1058 1128 1245 1431 1679 1958 2247 2608
                        2569 2218 1938 1668 1425 1238 1120 1063 1052 1081 1149 1270 1461 1708 1985 2271 2641
                        2641 2263 1985 1724 1485 1295 1175 1114 1100 1127 1199 1326 1520 1763 2034 2318 2702
                        2753 2327 2050 1797 1568 1382 1256 1189 1171 1199 1277 1410 1602 1838 2097 2380 2786
                        2947 2430 2142 1902 1684 1506 1375 1302 1282 1311 1394 1531 1717 1942 2192 2475 2917
                        3219 2583 2248 2018 1815 1645 1520 1446 1424 1455 1538 1671 1846 2057 2300 2599 3107
                        3605 2836 2402 2154 1964 1806 1690 1622 1600 1629 1706 1831 1994 2196 2440 2782 3411
                        4160 3241 2667 2335 2135 1987 1881 1817 1799 1826 1898 2011 2165 2370 2640 3101 3864 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="2" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 14]">
                        3264x2448_A_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4735 4079 3642 3352 3139 2955 2805 2705 2679 2728 2842 3007 3202 3426 3708 4052 4361
                        4223 3667 3319 3070 2835 2614 2432 2320 2291 2343 2471 2663 2896 3139 3403 3730 4105
                        3854 3389 3087 2821 2545 2291 2095 1975 1940 1992 2126 2338 2605 2893 3173 3469 3855
                        3576 3183 2890 2585 2274 2001 1799 1680 1646 1694 1829 2044 2330 2657 2973 3266 3633
                        3361 3007 2701 2363 2026 1748 1552 1442 1413 1458 1582 1789 2078 2428 2780 3091 3444
                        3213 2876 2545 2178 1829 1555 1373 1275 1251 1292 1402 1596 1879 2237 2620 2960 3303
                        3100 2768 2416 2032 1681 1415 1246 1157 1137 1178 1277 1455 1727 2088 2486 2852 3188
                        3025 2690 2325 1931 1580 1324 1164 1079 1063 1104 1199 1364 1626 1985 2392 2771 3115
                        2994 2654 2280 1883 1533 1282 1126 1041 1027 1070 1163 1322 1578 1935 2345 2733 3083
                        2983 2646 2272 1875 1530 1280 1123 1039 1024 1067 1160 1319 1573 1928 2336 2719 3066
                        3013 2675 2313 1923 1577 1321 1161 1081 1063 1101 1194 1359 1620 1975 2376 2749 3091
                        3089 2731 2388 2012 1667 1404 1237 1152 1130 1166 1265 1443 1713 2065 2453 2812 3144
                        3218 2813 2495 2139 1801 1533 1355 1259 1233 1272 1382 1571 1847 2191 2559 2892 3220
                        3433 2941 2634 2310 1988 1719 1530 1423 1392 1435 1555 1757 2032 2364 2700 3003 3334
                        3728 3123 2783 2499 2206 1945 1754 1642 1607 1653 1780 1985 2252 2558 2857 3140 3518
                        4154 3420 2984 2705 2451 2213 2030 1919 1884 1933 2057 2254 2501 2769 3036 3334 3817
                        4747 3880 3307 2955 2717 2510 2347 2246 2213 2257 2376 2555 2769 3002 3267 3667 4267 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3308 2841 2538 2362 2247 2157 2085 2039 2029 2054 2108 2183 2278 2396 2559 2779 2983
                        2952 2557 2328 2187 2071 1966 1880 1825 1811 1841 1904 1996 2106 2224 2365 2566 2812
                        2693 2367 2184 2045 1913 1788 1689 1626 1609 1640 1711 1819 1949 2084 2223 2397 2647
                        2506 2237 2071 1921 1769 1628 1518 1450 1433 1462 1541 1657 1803 1961 2112 2273 2508
                        2360 2133 1967 1801 1632 1479 1366 1300 1284 1313 1390 1510 1666 1839 2008 2169 2388
                        2266 2059 1886 1703 1520 1361 1251 1191 1178 1206 1277 1394 1556 1741 1927 2096 2300
                        2193 1993 1813 1620 1429 1270 1165 1112 1103 1130 1194 1305 1466 1659 1856 2036 2231
                        2144 1948 1759 1559 1365 1209 1109 1060 1053 1081 1141 1246 1403 1600 1803 1989 2184
                        2125 1928 1734 1529 1333 1181 1082 1032 1028 1059 1118 1219 1374 1570 1777 1968 2165
                        2115 1917 1725 1521 1328 1177 1078 1028 1024 1054 1113 1215 1369 1564 1770 1961 2159
                        2134 1930 1745 1547 1357 1206 1106 1057 1050 1076 1136 1241 1397 1589 1791 1978 2177
                        2178 1962 1784 1596 1413 1261 1159 1107 1097 1121 1186 1294 1452 1638 1830 2012 2213
                        2256 2007 1838 1663 1490 1343 1238 1180 1166 1194 1263 1376 1529 1705 1885 2058 2266
                        2390 2081 1913 1753 1595 1455 1350 1289 1273 1301 1373 1487 1632 1795 1961 2124 2344
                        2577 2192 1995 1852 1711 1583 1485 1424 1407 1435 1506 1613 1745 1892 2045 2209 2463
                        2848 2379 2111 1964 1841 1728 1642 1587 1570 1597 1662 1758 1875 2006 2148 2335 2660
                        3236 2679 2319 2112 1990 1894 1817 1771 1757 1780 1837 1922 2025 2145 2300 2557 2961 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3296 2823 2513 2330 2208 2110 2035 1986 1972 1996 2051 2130 2230 2353 2523 2752 2964
                        2946 2549 2312 2161 2040 1929 1838 1781 1764 1791 1855 1948 2063 2187 2337 2549 2800
                        2699 2369 2178 2030 1892 1761 1656 1591 1572 1602 1673 1782 1915 2057 2205 2387 2646
                        2521 2247 2074 1914 1753 1608 1494 1424 1403 1433 1510 1629 1779 1942 2103 2271 2517
                        2382 2150 1976 1800 1624 1467 1350 1281 1262 1291 1367 1489 1648 1829 2007 2178 2403
                        2294 2081 1900 1709 1518 1355 1241 1178 1162 1189 1261 1379 1544 1737 1934 2112 2323
                        2231 2023 1834 1632 1433 1270 1160 1104 1092 1118 1184 1296 1461 1661 1869 2060 2262
                        2187 1982 1785 1576 1374 1213 1109 1056 1047 1074 1135 1242 1403 1607 1822 2020 2222
                        2170 1965 1764 1549 1346 1188 1085 1032 1026 1056 1116 1219 1378 1582 1800 2004 2207
                        2163 1959 1758 1544 1344 1187 1084 1030 1024 1054 1114 1217 1376 1580 1799 2002 2207
                        2185 1976 1781 1573 1375 1217 1113 1060 1051 1077 1138 1246 1408 1610 1825 2025 2232
                        2234 2011 1824 1626 1433 1273 1167 1112 1099 1124 1190 1303 1466 1663 1869 2064 2273
                        2314 2056 1881 1694 1513 1357 1247 1186 1170 1196 1268 1384 1545 1733 1926 2109 2324
                        2451 2131 1954 1785 1619 1471 1361 1296 1277 1305 1379 1498 1650 1822 2000 2175 2402
                        2639 2240 2034 1883 1734 1599 1496 1431 1411 1440 1513 1625 1763 1918 2081 2258 2520
                        2910 2424 2151 1995 1863 1745 1650 1592 1575 1601 1668 1768 1892 2030 2184 2381 2719
                        3293 2723 2353 2138 2007 1905 1823 1772 1757 1781 1841 1930 2039 2168 2331 2600 3015 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3120 2683 2386 2213 2106 2030 1973 1938 1930 1954 1999 2065 2151 2262 2427 2648 2851
                        2782 2410 2189 2058 1958 1870 1799 1756 1747 1773 1827 1907 2005 2109 2245 2443 2683
                        2539 2232 2063 1942 1828 1723 1639 1587 1576 1604 1667 1763 1875 1993 2120 2282 2528
                        2362 2115 1969 1841 1708 1584 1489 1431 1417 1447 1519 1625 1754 1894 2025 2168 2397
                        2226 2022 1883 1740 1588 1452 1350 1293 1281 1310 1381 1492 1635 1791 1937 2078 2280
                        2140 1955 1812 1654 1488 1344 1243 1190 1181 1209 1275 1384 1535 1703 1869 2014 2199
                        2078 1905 1753 1583 1408 1260 1162 1114 1108 1136 1196 1299 1451 1631 1806 1960 2135
                        2036 1868 1710 1531 1351 1202 1108 1061 1056 1086 1144 1241 1390 1575 1760 1920 2093
                        2022 1856 1693 1508 1324 1177 1083 1033 1030 1063 1120 1214 1362 1549 1736 1901 2078
                        2014 1847 1685 1501 1318 1172 1078 1028 1024 1055 1112 1207 1354 1539 1726 1891 2071
                        2033 1860 1703 1524 1343 1196 1101 1056 1049 1074 1130 1228 1377 1561 1744 1904 2090
                        2077 1887 1735 1567 1392 1245 1149 1101 1090 1113 1173 1274 1426 1602 1777 1933 2125
                        2147 1925 1777 1620 1459 1318 1219 1165 1152 1175 1239 1345 1491 1657 1818 1969 2173
                        2273 1989 1839 1697 1551 1421 1321 1264 1249 1272 1339 1446 1582 1733 1881 2026 2251
                        2449 2088 1906 1779 1652 1534 1443 1387 1370 1395 1459 1558 1680 1814 1949 2101 2365
                        2698 2256 2006 1871 1762 1660 1581 1533 1518 1540 1596 1683 1789 1907 2037 2214 2553
                        3050 2531 2187 1993 1881 1795 1729 1689 1677 1697 1745 1817 1908 2022 2165 2421 2834 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="3" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        3264x2448_D50_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [5526 4373 3682 3247 2918 2669 2478 2345 2294 2329 2426 2598 2827 3123 3515 4102 5099
                    4831 3879 3340 2957 2629 2358 2161 2030 1976 2000 2106 2285 2533 2836 3193 3690 4474
                    4299 3525 3069 2696 2362 2084 1875 1743 1687 1713 1821 2002 2258 2572 2925 3370 4026
                    3932 3289 2856 2479 2128 1846 1641 1511 1457 1485 1581 1761 2015 2336 2719 3135 3718
                    3682 3113 2688 2284 1930 1649 1452 1333 1283 1307 1398 1567 1821 2151 2540 2951 3496
                    3510 2973 2540 2128 1771 1496 1312 1204 1162 1181 1264 1422 1662 1992 2387 2818 3328 
                    3387 2869 2423 2010 1655 1391 1221 1123 1083 1102 1177 1319 1550 1871 2266 2719 3220
                    3306 2794 2344 1932 1581 1325 1166 1073 1035 1055 1125 1260 1478 1793 2196 2647 3141
                    3265 2770 2313 1897 1550 1300 1145 1060 1024 1042 1109 1239 1453 1772 2166 2615 3111
                    3293 2784 2332 1910 1562 1316 1159 1072 1040 1056 1122 1250 1470 1787 2183 2629 3127
                    3367 2845 2390 1970 1622 1365 1201 1113 1080 1095 1162 1302 1529 1849 2243 2687 3179
                    3475 2943 2498 2074 1721 1454 1280 1187 1148 1163 1242 1394 1632 1954 2347 2775 3279
                    3623 3065 2633 2224 1867 1591 1404 1297 1254 1274 1360 1526 1775 2097 2487 2913 3422
                    3844 3228 2793 2403 2053 1770 1574 1453 1405 1430 1528 1703 1958 2283 2667 3084 3640
                    4142 3453 2997 2617 2284 2000 1799 1671 1621 1647 1749 1937 2189 2508 2875 3315 3922
                    4584 3764 3247 2871 2538 2265 2069 1941 1889 1921 2024 2212 2462 2767 3128 3611 4246
                    5167 4173 3568 3163 2836 2589 2383 2253 2209 2238 2345 2521 2763 3063 3444 3975 4668 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [4343 3483 2961 2631 2400 2223 2099 2015 1984 2002 2067 2174 2330 2539 2833 3287 4084
                               3830 3116 2691 2405 2187 2009 1875 1786 1748 1765 1836 1956 2119 2323 2584 2954 3572
                               3472 2873 2504 2232 2010 1823 1678 1584 1547 1561 1637 1760 1935 2144 2395 2724 3234
                               3209 2692 2356 2088 1850 1654 1504 1408 1369 1387 1462 1593 1775 1990 2247 2556 3011
                               3018 2560 2237 1958 1713 1509 1359 1268 1228 1249 1321 1451 1635 1861 2123 2432 2844
                               2882 2460 2145 1852 1599 1394 1249 1165 1130 1149 1217 1340 1521 1752 2025 2329 2724
                               2784 2380 2065 1774 1515 1312 1176 1097 1067 1083 1144 1262 1441 1672 1950 2257 2635
                               2735 2336 2014 1720 1463 1263 1135 1059 1030 1047 1104 1217 1392 1621 1902 2209 2583 
                               2708 2314 1992 1695 1442 1244 1120 1052 1024 1039 1092 1199 1370 1600 1879 2190 2559
                               2727 2318 1998 1707 1451 1256 1129 1065 1041 1053 1104 1211 1382 1614 1888 2199 2567
                               2772 2367 2041 1745 1497 1297 1166 1098 1075 1087 1141 1251 1427 1658 1932 2235 2602
                               2856 2432 2108 1820 1571 1371 1233 1158 1131 1145 1207 1322 1500 1730 2000 2302 2684
                               2972 2521 2200 1919 1673 1476 1335 1251 1219 1233 1302 1425 1606 1830 2093 2397 2797
                               3134 2641 2311 2042 1803 1608 1466 1376 1342 1359 1434 1558 1734 1955 2212 2517 2948
                               3372 2808 2453 2184 1956 1767 1628 1537 1506 1523 1595 1718 1894 2103 2349 2679 3140
                               3676 3026 2632 2354 2131 1956 1816 1729 1695 1717 1785 1904 2065 2265 2523 2887 3378
                               4107 3337 2875 2561 2332 2167 2035 1949 1920 1935 2004 2119 2270 2476 2757 3159 3705 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [4370 3489 2960 2629 2398 2224 2090 2010 1975 1987 2052 2159 2319 2523 2815 3272 4082
                                3857 3122 2696 2410 2184 2006 1872 1781 1742 1758 1822 1944 2106 2305 2567 2942 3557
                                3493 2878 2511 2234 2005 1820 1673 1580 1539 1553 1627 1749 1922 2132 2382 2715 3233
                                3219 2705 2365 2088 1849 1652 1501 1404 1362 1378 1453 1583 1762 1981 2239 2548 3011
                                3031 2570 2247 1958 1712 1508 1357 1265 1224 1242 1313 1440 1624 1850 2116 2425 2842
                                2893 2471 2148 1855 1600 1395 1248 1161 1126 1141 1209 1332 1513 1744 2019 2335 2717
                                2802 2395 2072 1777 1521 1314 1176 1094 1061 1077 1139 1254 1433 1665 1946 2260 2634
                                2758 2349 2026 1726 1470 1269 1136 1060 1029 1044 1102 1212 1386 1617 1903 2216 2585
                                2740 2332 2008 1706 1448 1252 1124 1053 1024 1037 1091 1197 1365 1601 1884 2202 2573
                                2749 2344 2018 1718 1460 1264 1135 1069 1044 1053 1104 1208 1380 1615 1895 2209 2578
                                2802 2388 2062 1764 1507 1307 1173 1101 1075 1087 1139 1250 1427 1661 1937 2248 2620
                                2883 2463 2134 1840 1583 1381 1240 1162 1133 1145 1206 1324 1501 1736 2010 2314 2697
                                3000 2554 2230 1937 1689 1486 1342 1256 1223 1235 1304 1427 1606 1834 2105 2406 2812
                                3163 2675 2340 2063 1824 1623 1480 1389 1350 1366 1438 1563 1736 1962 2223 2534 2964
                                3396 2839 2483 2214 1981 1787 1645 1551 1513 1530 1603 1726 1897 2111 2362 2694 3166
                                3719 3064 2666 2383 2159 1976 1835 1745 1710 1730 1796 1913 2079 2281 2540 2910 3419
                                4155 3385 2916 2593 2365 2191 2054 1968 1933 1948 2020 2131 2288 2496 2776 3186 3741 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [4049 3229 2729 2432 2220 2065 1951 1884 1856 1871 1928 2018 2158 2356 2632 3076 3841
                     3577 2898 2498 2237 2034 1878 1761 1691 1656 1670 1730 1833 1981 2166 2393 2762 3363
                     3230 2661 2312 2070 1876 1709 1590 1512 1480 1493 1554 1663 1815 2001 2225 2540 3042
                     2971 2486 2186 1943 1732 1563 1437 1354 1324 1337 1404 1516 1673 1866 2097 2379 2811
                     2791 2365 2075 1836 1617 1441 1312 1231 1197 1214 1281 1394 1553 1752 1991 2264 2656
                     2674 2280 1997 1753 1519 1340 1215 1140 1111 1127 1186 1294 1459 1661 1906 2186 2540
                     2584 2217 1937 1679 1449 1273 1152 1081 1056 1070 1122 1226 1383 1590 1842 2120 2462
                     2537 2171 1890 1636 1407 1230 1114 1052 1026 1039 1093 1186 1340 1552 1802 2074 2413
                     2520 2156 1876 1618 1390 1215 1104 1047 1024 1036 1081 1174 1328 1536 1783 2059 2390
                     2532 2174 1884 1629 1402 1225 1112 1059 1038 1048 1090 1186 1340 1543 1789 2070 2403
                     2571 2205 1921 1660 1440 1262 1145 1087 1066 1073 1120 1218 1374 1582 1827 2101 2442
                     2648 2261 1977 1727 1506 1324 1203 1136 1114 1125 1176 1278 1440 1646 1887 2163 2515
                     2754 2346 2052 1803 1589 1413 1288 1217 1189 1204 1261 1369 1530 1729 1965 2239 2609
                     2911 2457 2155 1912 1702 1536 1405 1327 1297 1312 1374 1485 1641 1833 2065 2349 2756
                     3129 2612 2283 2038 1832 1668 1548 1470 1443 1456 1516 1624 1774 1963 2192 2509 2936
                     3412 2828 2454 2187 1987 1828 1716 1641 1616 1630 1687 1795 1939 2120 2351 2708 3181
                     3834 3127 2679 2384 2181 2024 1913 1836 1814 1827 1886 1988 2129 2314 2586 2977 3505 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="4" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        3264x2448_D50_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4047 3411 3016 2768 2569 2409 2276 2177 2137 2161 2228 2344 2489 2662 2879 3201 3734
                    3612 3084 2786 2566 2356 2166 2020 1917 1872 1889 1968 2099 2269 2462 2663 2934 3346
                    3267 2845 2598 2374 2147 1942 1778 1670 1623 1641 1726 1866 2052 2265 2476 2720 3061
                    3030 2690 2450 2210 1958 1741 1575 1465 1418 1439 1517 1661 1855 2082 2331 2564 2865
                    2868 2573 2328 2058 1794 1571 1407 1306 1262 1280 1356 1493 1692 1938 2200 2438 2725
                    2758 2476 2218 1932 1659 1437 1280 1189 1150 1165 1235 1365 1556 1808 2084 2347 2616
                    2677 2403 2128 1834 1558 1342 1200 1115 1078 1094 1156 1274 1460 1709 1989 2278 2545
                    2622 2348 2066 1769 1494 1283 1149 1068 1034 1050 1109 1220 1398 1642 1934 2225 2492
                    2594 2331 2040 1739 1466 1260 1129 1056 1024 1039 1093 1201 1375 1625 1910 2200 2471 
                    2613 2341 2054 1750 1477 1274 1141 1067 1039 1052 1105 1211 1389 1635 1922 2210 2481
                    2662 2383 2099 1798 1527 1319 1179 1104 1076 1087 1142 1257 1440 1687 1969 2250 2513
                    2731 2451 2181 1882 1612 1396 1251 1171 1136 1149 1213 1338 1528 1774 2049 2310 2577
                    2823 2532 2280 2002 1735 1516 1361 1271 1232 1247 1319 1454 1649 1888 2154 2406 2667 
                    2963 2639 2394 2143 1889 1670 1511 1409 1367 1387 1467 1606 1802 2035 2287 2521 2806 
                    3148 2788 2538 2304 2076 1864 1706 1600 1558 1578 1658 1804 1990 2209 2434 2675 2982 
                    3427 2992 2708 2492 2274 2079 1934 1832 1791 1815 1891 2030 2205 2401 2609 2870 3175 
                    3784 3256 2923 2697 2497 2337 2189 2091 2057 2078 2154 2275 2432 2612 2820 3101 3420]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3181 2717 2425 2243 2113 2006 1928 1870 1848 1857 1899 1962 2052 2165 2320 2565 2991
                               2864 2476 2245 2087 1959 1845 1752 1686 1657 1667 1716 1795 1899 2016 2155 2349 2671 
                               2640 2319 2121 1965 1827 1698 1590 1518 1487 1496 1553 1640 1759 1889 2027 2199 2459
                               2473 2200 2020 1861 1703 1561 1443 1366 1332 1344 1403 1503 1633 1775 1926 2090 2320 
                               2352 2115 1937 1763 1592 1438 1317 1241 1208 1223 1280 1383 1520 1677 1839 2010 2216 
                               2264 2049 1872 1681 1498 1337 1220 1150 1119 1134 1188 1286 1425 1591 1768 1940 2140 
                               2201 1994 1812 1620 1427 1267 1156 1089 1062 1074 1123 1218 1357 1526 1712 1891 2082 
                               2170 1963 1774 1575 1383 1223 1118 1054 1029 1042 1088 1178 1315 1485 1675 1857 2048
                               2151 1948 1756 1555 1364 1207 1105 1049 1024 1035 1077 1162 1296 1467 1657 1844 2032 
                               2163 1948 1760 1563 1372 1216 1113 1060 1040 1049 1088 1172 1306 1478 1663 1849 2036 
                               2191 1983 1792 1593 1409 1252 1145 1090 1070 1078 1120 1208 1343 1513 1696 1872 2057 
                               2244 2025 1841 1652 1472 1316 1205 1142 1120 1130 1179 1269 1405 1570 1746 1916 2109
                               2315 2082 1906 1729 1555 1406 1294 1224 1198 1208 1262 1357 1493 1648 1813 1980 2180 
                               2416 2159 1981 1821 1659 1516 1407 1335 1307 1319 1376 1469 1595 1743 1897 2058 2272
                               2563 2266 2077 1923 1779 1646 1544 1473 1447 1459 1511 1600 1722 1851 1988 2162 2387
                               2749 2405 2195 2043 1909 1796 1697 1633 1607 1621 1668 1748 1849 1965 2104 2295 2527
                               3008 2604 2356 2184 2053 1956 1869 1808 1789 1795 1841 1911 1999 2112 2258 2465 2714]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3201 2722 2425 2242 2112 2007 1920 1865 1839 1845 1885 1949 2042 2151 2305 2553 2990 
                                2884 2481 2248 2092 1957 1842 1749 1682 1650 1660 1704 1785 1887 2000 2141 2338 2660
                                2655 2324 2126 1967 1822 1696 1587 1513 1480 1488 1543 1629 1747 1878 2017 2191 2459
                                2481 2211 2028 1862 1703 1558 1441 1361 1325 1337 1395 1493 1623 1767 1920 2083 2321
                                2362 2123 1945 1763 1591 1437 1314 1238 1204 1217 1272 1371 1509 1667 1833 2003 2214
                                2273 2059 1875 1683 1499 1339 1220 1146 1114 1127 1180 1278 1417 1582 1762 1944 2135 
                                2215 2006 1819 1622 1432 1269 1155 1086 1057 1068 1119 1210 1350 1520 1709 1893 2082 
                                2188 1975 1785 1581 1389 1228 1120 1055 1028 1039 1087 1173 1310 1481 1676 1862 2051
                                2177 1962 1770 1564 1370 1214 1109 1050 1024 1034 1077 1160 1292 1467 1661 1852 2044
                                2181 1971 1777 1574 1380 1224 1119 1064 1042 1049 1089 1170 1305 1479 1670 1857 2045
                                2215 2000 1810 1611 1420 1261 1152 1093 1070 1078 1120 1207 1344 1516 1700 1883 2071 
                                2265 2051 1863 1670 1484 1326 1212 1146 1122 1130 1179 1271 1406 1576 1755 1928 2119
                                2337 2110 1931 1744 1570 1414 1301 1229 1202 1210 1264 1359 1492 1652 1823 1987 2191
                                2437 2187 2007 1839 1679 1531 1420 1347 1313 1324 1380 1474 1598 1749 1905 2072 2285 
                                2581 2292 2103 1950 1801 1666 1559 1487 1455 1465 1520 1608 1725 1859 2000 2175 2407
                                2782 2436 2224 2069 1935 1814 1714 1647 1621 1634 1677 1757 1863 1979 2118 2312 2558
                                3043 2641 2388 2210 2082 1978 1887 1826 1801 1808 1855 1924 2015 2128 2274 2486 2740]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2966 2519 2236 2073 1955 1864 1792 1749 1729 1736 1770 1821 1900 2008 2157 2400 2813
                    2675 2304 2083 1941 1823 1725 1646 1598 1568 1577 1618 1683 1775 1879 1997 2195 2515 
                    2455 2149 1958 1823 1705 1593 1507 1448 1423 1431 1474 1550 1650 1763 1884 2050 2312 
                    2289 2032 1874 1732 1594 1474 1379 1313 1288 1296 1347 1430 1539 1663 1798 1945 2167 
                    2175 1954 1797 1654 1504 1373 1272 1206 1176 1189 1241 1327 1443 1577 1723 1871 2070 
                    2101 1899 1743 1591 1423 1286 1187 1125 1101 1112 1158 1242 1367 1508 1663 1820 1996 
                    2042 1856 1700 1533 1365 1228 1132 1072 1051 1061 1102 1184 1303 1450 1616 1776 1946 
                    2013 1824 1664 1499 1329 1192 1099 1047 1025 1034 1076 1149 1266 1421 1587 1744 1914 
                    2001 1815 1655 1483 1316 1178 1090 1043 1024 1032 1067 1138 1257 1409 1571 1732 1899 
                    2009 1827 1660 1492 1325 1186 1096 1054 1037 1043 1074 1148 1266 1413 1576 1740 1907 
                    2032 1846 1687 1516 1356 1219 1125 1078 1061 1066 1100 1176 1293 1443 1603 1760 1931 
                    2081 1883 1725 1567 1411 1271 1175 1122 1103 1109 1149 1226 1349 1494 1648 1801 1976 
                    2147 1939 1777 1624 1477 1347 1249 1192 1168 1180 1223 1304 1422 1558 1702 1850 2032 
                    2244 2009 1846 1705 1567 1447 1349 1288 1262 1272 1319 1401 1510 1634 1771 1921 2125 
                    2378 2109 1934 1795 1665 1554 1468 1408 1386 1395 1438 1512 1613 1728 1856 2025 2233 
                    2552 2248 2047 1898 1780 1679 1604 1549 1531 1540 1577 1649 1737 1839 1961 2152 2379 
                    2808 2439 2194 2032 1920 1826 1757 1704 1690 1695 1732 1794 1875 1973 2119 2322 2568]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="5" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        3264x2448_D65_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [5544 4362 3654 3220 2888 2631 2435 2313 2261 2282 2367 2523 2742 3017 3392 3950 4919
                        4821 3876 3318 2920 2600 2336 2129 1997 1944 1963 2060 2228 2457 2743 3072 3535 4303
                        4319 3539 3060 2687 2354 2074 1863 1732 1673 1694 1790 1963 2207 2504 2834 3247 3891
                        3954 3309 2857 2473 2126 1841 1635 1505 1447 1468 1566 1736 1985 2282 2633 3041 3585
                        3705 3121 2689 2285 1930 1646 1449 1331 1279 1297 1384 1546 1788 2099 2465 2861 3366
                        3528 2986 2545 2128 1774 1499 1312 1206 1158 1176 1255 1406 1634 1947 2321 2726 3208
                        3402 2877 2431 2012 1658 1394 1222 1122 1080 1096 1168 1306 1527 1835 2208 2625 3104
                        3337 2809 2356 1939 1587 1333 1170 1074 1034 1051 1119 1247 1464 1765 2143 2565 3035
                        3297 2771 2319 1904 1554 1306 1150 1062 1024 1039 1105 1226 1438 1739 2121 2547 3011
                        3321 2793 2340 1922 1572 1321 1163 1076 1042 1056 1119 1243 1456 1756 2138 2559 3032
                        3396 2854 2405 1986 1634 1373 1208 1118 1083 1095 1162 1294 1516 1818 2194 2614 3088
                        3511 2959 2508 2095 1737 1469 1291 1191 1154 1167 1240 1386 1616 1929 2305 2715 3207
                        3692 3097 2654 2242 1887 1608 1414 1303 1258 1279 1362 1519 1762 2078 2445 2846 3355
                        3903 3280 2832 2429 2074 1794 1587 1465 1416 1438 1535 1703 1947 2258 2622 3023 3560
                        4212 3499 3032 2654 2307 2023 1814 1678 1626 1653 1758 1930 2176 2483 2836 3253 3835
                        4645 3805 3290 2893 2568 2295 2079 1945 1894 1924 2026 2198 2445 2731 3075 3530 4139
                        5274 4228 3622 3183 2868 2608 2396 2265 2216 2243 2341 2512 2739 3009 3391 3905 4579]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [4391 3497 2960 2621 2389 2216 2084 1994 1958 1972 2028 2130 2276 2468 2750 3192 3986
                        3883 3138 2702 2408 2182 2001 1864 1771 1732 1743 1807 1918 2074 2261 2505 2862 3472
                        3510 2892 2518 2237 2007 1815 1667 1573 1533 1547 1615 1732 1895 2097 2334 2647 3153
                        3240 2713 2363 2090 1848 1650 1499 1401 1360 1374 1446 1569 1740 1951 2193 2487 2925
                        3050 2580 2249 1961 1711 1504 1356 1262 1222 1237 1305 1430 1606 1825 2076 2365 2758
                        2915 2480 2156 1859 1606 1395 1249 1160 1125 1140 1202 1323 1499 1722 1983 2274 2641
                        2825 2406 2078 1784 1525 1316 1175 1095 1062 1075 1136 1248 1421 1647 1909 2207 2566
                        2772 2360 2030 1734 1472 1268 1135 1059 1028 1043 1098 1204 1375 1599 1865 2165 2517
                        2757 2344 2012 1713 1452 1252 1123 1054 1024 1036 1088 1188 1357 1582 1847 2147 2493
                        2770 2355 2023 1724 1465 1264 1136 1069 1042 1051 1100 1201 1370 1596 1860 2157 2511
                        2828 2398 2065 1770 1509 1307 1174 1103 1077 1086 1137 1244 1415 1640 1903 2196 2554
                        2911 2469 2137 1846 1586 1384 1243 1163 1136 1144 1202 1315 1488 1714 1971 2263 2630
                        3035 2563 2231 1946 1691 1490 1344 1255 1222 1235 1300 1420 1594 1813 2067 2354 2742
                        3206 2702 2354 2071 1826 1626 1478 1387 1351 1367 1434 1555 1722 1936 2187 2482 2903
                        3439 2871 2497 2217 1984 1790 1644 1549 1515 1529 1599 1716 1880 2083 2327 2643 3104
                        3765 3095 2683 2387 2162 1978 1837 1746 1709 1725 1791 1901 2059 2256 2505 2853 3340
                        4222 3419 2937 2609 2373 2193 2060 1973 1934 1952 2016 2119 2269 2463 2739 3133 3667]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [4374 3491 2952 2613 2383 2213 2079 1992 1952 1963 2019 2120 2263 2453 2732 3172 3961
                        3867 3130 2696 2401 2179 1999 1859 1765 1725 1734 1799 1908 2059 2245 2481 2843 3446
                        3500 2884 2510 2232 2002 1811 1664 1567 1524 1537 1605 1720 1883 2076 2313 2630 3128
                        3233 2710 2366 2087 1843 1645 1494 1396 1353 1365 1435 1556 1727 1937 2178 2474 2906
                        3045 2579 2250 1961 1710 1505 1353 1258 1217 1231 1300 1420 1597 1812 2065 2353 2742
                        2913 2480 2155 1861 1604 1393 1246 1158 1121 1133 1196 1315 1490 1712 1968 2264 2638
                        2832 2412 2085 1788 1525 1317 1176 1094 1060 1071 1130 1241 1412 1639 1905 2198 2563
                        2779 2368 2040 1740 1476 1273 1139 1061 1027 1038 1094 1200 1368 1594 1864 2160 2513
                        2768 2361 2025 1718 1457 1258 1127 1054 1024 1034 1087 1187 1353 1578 1847 2148 2496
                        2782 2374 2041 1733 1471 1271 1139 1071 1044 1052 1101 1202 1368 1595 1866 2164 2514
                        2838 2415 2079 1782 1518 1315 1181 1107 1078 1087 1138 1245 1414 1644 1910 2205 2560
                        2925 2492 2156 1858 1600 1393 1250 1169 1138 1147 1204 1318 1491 1716 1979 2275 2642
                        3048 2591 2256 1962 1709 1503 1354 1264 1228 1241 1304 1425 1600 1818 2075 2363 2755
                        3226 2723 2375 2090 1844 1643 1492 1399 1360 1373 1440 1562 1733 1945 2193 2492 2909
                        3467 2887 2519 2236 2005 1810 1660 1566 1527 1539 1609 1729 1892 2092 2335 2652 3111
                        3800 3127 2711 2413 2185 1998 1856 1765 1723 1737 1803 1916 2069 2268 2517 2862 3352
                        4253 3451 2969 2636 2403 2219 2078 1994 1953 1964 2028 2132 2286 2481 2753 3145 3674 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [4111 3276 2754 2439 2218 2060 1942 1870 1846 1851 1900 1992 2122 2301 2569 3005 3760
                        3617 2933 2511 2238 2036 1877 1755 1684 1653 1658 1710 1807 1943 2116 2342 2686 3287
                        3282 2690 2340 2083 1879 1712 1586 1509 1474 1484 1544 1644 1791 1966 2185 2483 2977
                        3027 2519 2205 1955 1741 1566 1436 1354 1318 1329 1392 1499 1652 1836 2056 2335 2745
                        2833 2394 2096 1845 1622 1444 1312 1231 1196 1208 1267 1375 1532 1724 1948 2219 2594
                        2709 2307 2013 1754 1528 1343 1216 1140 1109 1121 1178 1280 1438 1637 1864 2134 2476
                        2632 2241 1955 1690 1461 1275 1154 1083 1054 1065 1119 1216 1371 1573 1807 2074 2405
                        2582 2201 1910 1649 1418 1236 1118 1054 1025 1037 1086 1179 1328 1530 1770 2041 2368
                        2571 2190 1897 1636 1404 1226 1111 1050 1024 1035 1079 1168 1317 1519 1759 2028 2347
                        2586 2207 1915 1647 1416 1236 1122 1064 1041 1049 1090 1179 1328 1532 1769 2040 2366
                        2630 2243 1947 1684 1454 1275 1154 1092 1069 1078 1124 1217 1367 1570 1806 2069 2404
                        2706 2301 2007 1751 1522 1343 1214 1147 1122 1130 1181 1280 1435 1637 1868 2133 2479
                        2830 2396 2091 1839 1612 1435 1304 1229 1200 1210 1265 1371 1527 1723 1948 2214 2578
                        2989 2514 2201 1952 1728 1549 1422 1345 1312 1324 1385 1491 1643 1830 2052 2331 2733
                        3225 2680 2334 2080 1867 1696 1570 1492 1458 1474 1534 1634 1779 1962 2185 2487 2936
                        3524 2901 2504 2236 2026 1861 1741 1666 1634 1650 1706 1804 1946 2117 2350 2693 3159
                        3968 3200 2751 2439 2215 2056 1934 1863 1836 1849 1900 1992 2129 2310 2575 2957 3479 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="6" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        3264x2448_D65_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4060 3402 2993 2745 2543 2374 2236 2147 2106 2118 2174 2277 2414 2572 2779 3082 3602
                   3605 3081 2768 2534 2330 2145 1989 1886 1842 1854 1925 2046 2201 2380 2562 2810 3217
                   3283 2857 2591 2366 2141 1933 1766 1660 1609 1623 1697 1829 2006 2205 2400 2621 2958
                   3047 2706 2449 2205 1957 1736 1569 1460 1408 1424 1503 1637 1827 2035 2258 2486 2763
                   2886 2579 2329 2058 1794 1568 1404 1304 1257 1271 1341 1473 1662 1891 2135 2363 2623
                   2772 2487 2221 1932 1662 1439 1282 1190 1147 1160 1226 1350 1530 1767 2026 2270 2521
                   2689 2410 2134 1836 1562 1345 1200 1114 1076 1087 1147 1260 1439 1675 1939 2198 2454
                   2647 2361 2076 1776 1500 1290 1153 1069 1032 1047 1103 1208 1383 1617 1888 2156 2408
                   2619 2331 2045 1745 1471 1267 1135 1058 1024 1035 1090 1189 1360 1594 1870 2143 2391
                   2634 2348 2061 1760 1486 1279 1146 1071 1041 1051 1103 1204 1376 1608 1883 2150 2406
                   2684 2390 2112 1813 1539 1325 1186 1109 1079 1086 1141 1249 1428 1659 1926 2190 2441
                   2759 2464 2190 1901 1628 1410 1261 1176 1143 1152 1211 1330 1513 1751 2012 2261 2520
                   2876 2559 2299 2019 1754 1532 1371 1276 1236 1252 1320 1447 1638 1871 2118 2351 2615
                   3008 2682 2428 2165 1909 1692 1523 1421 1378 1394 1474 1606 1792 2014 2248 2471 2744
                   3202 2825 2567 2337 2097 1885 1720 1607 1563 1584 1667 1798 1978 2187 2401 2626 2916
                   3473 3025 2744 2511 2301 2107 1943 1837 1795 1816 1893 2018 2190 2370 2565 2806 3096
                   3863 3299 2967 2714 2525 2353 2201 2102 2064 2082 2150 2267 2412 2565 2777 3046 3355]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3216 2728 2425 2234 2103 2000 1914 1851 1823 1830 1863 1923 2003 2104 2253 2490 2919
                   2903 2494 2254 2090 1955 1838 1742 1673 1641 1646 1689 1761 1858 1962 2089 2275 2596
                   2668 2335 2132 1970 1824 1691 1581 1507 1474 1482 1532 1614 1722 1847 1976 2137 2398
                   2496 2218 2026 1863 1701 1556 1438 1358 1323 1332 1388 1480 1602 1740 1880 2034 2255
                   2377 2131 1948 1766 1590 1433 1314 1236 1201 1212 1265 1362 1493 1644 1798 1954 2149
                   2291 2066 1882 1688 1505 1339 1220 1145 1114 1125 1174 1270 1404 1563 1731 1894 2075
                   2233 2015 1824 1628 1436 1270 1154 1086 1058 1067 1115 1205 1338 1503 1676 1848 2028
                   2199 1983 1788 1588 1391 1228 1118 1055 1027 1038 1082 1166 1300 1464 1643 1820 1997
                   2190 1972 1775 1570 1374 1214 1107 1050 1024 1032 1073 1152 1284 1450 1629 1807 1980
                   2198 1979 1782 1578 1384 1225 1119 1064 1040 1046 1084 1163 1295 1461 1639 1813 1992
                   2236 2008 1813 1616 1421 1262 1153 1094 1073 1077 1117 1201 1333 1497 1671 1839 2019
                   2287 2056 1866 1675 1486 1329 1214 1148 1125 1129 1174 1262 1394 1556 1721 1885 2066
                   2365 2117 1933 1753 1572 1419 1303 1230 1201 1210 1260 1352 1481 1633 1790 1945 2137
                   2471 2209 2018 1846 1680 1534 1419 1345 1315 1325 1376 1467 1585 1726 1875 2029 2237
                   2614 2318 2114 1952 1804 1668 1559 1484 1457 1465 1516 1599 1709 1834 1971 2133 2360
                   2815 2460 2238 2071 1937 1816 1717 1649 1620 1629 1674 1746 1845 1958 2089 2268 2498
                   3093 2667 2406 2225 2089 1979 1892 1831 1801 1812 1851 1912 1998 2100 2244 2445 2687]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3204 2724 2418 2228 2098 1997 1910 1849 1818 1822 1855 1913 1993 2092 2239 2475 2901
                   2892 2488 2249 2084 1953 1836 1737 1667 1635 1638 1681 1752 1845 1948 2070 2260 2577
                   2661 2328 2125 1966 1820 1688 1578 1502 1466 1473 1522 1603 1712 1829 1958 2123 2379
                   2492 2216 2028 1861 1696 1552 1434 1354 1317 1324 1378 1468 1590 1727 1867 2023 2240
                   2373 2131 1949 1766 1590 1434 1311 1232 1196 1206 1260 1353 1485 1632 1788 1944 2137
                   2289 2066 1881 1689 1503 1338 1217 1143 1110 1119 1168 1262 1396 1554 1718 1886 2073
                   2239 2020 1831 1632 1437 1271 1156 1086 1055 1063 1110 1198 1331 1497 1672 1842 2026
                   2205 1991 1797 1593 1395 1233 1122 1057 1026 1034 1078 1162 1293 1460 1642 1815 1994
                   2198 1987 1786 1575 1379 1220 1112 1051 1024 1031 1072 1151 1281 1447 1629 1808 1983
                   2207 1996 1798 1587 1390 1231 1123 1066 1043 1048 1085 1164 1293 1461 1644 1819 1995
                   2243 2023 1826 1627 1430 1269 1160 1099 1074 1078 1118 1202 1333 1500 1677 1847 2024
                   2299 2076 1883 1687 1499 1337 1221 1153 1127 1132 1176 1266 1397 1558 1728 1895 2076
                   2376 2141 1954 1767 1589 1432 1313 1238 1207 1215 1264 1357 1487 1638 1797 1953 2147
                   2487 2227 2037 1864 1697 1550 1432 1357 1324 1332 1383 1473 1595 1735 1880 2037 2243
                   2636 2331 2133 1970 1823 1686 1574 1500 1468 1475 1526 1612 1720 1843 1977 2141 2366
                   2842 2486 2261 2095 1958 1835 1735 1667 1633 1641 1685 1760 1854 1969 2100 2275 2507
                   3116 2693 2432 2248 2116 2003 1909 1851 1820 1823 1862 1924 2012 2115 2256 2454 2693]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3012 2556 2257 2080 1953 1860 1784 1737 1720 1719 1746 1799 1869 1962 2105 2345 2755
                   2705 2332 2095 1943 1825 1725 1641 1591 1567 1567 1599 1660 1742 1837 1954 2136 2458
                   2495 2172 1982 1835 1709 1596 1504 1446 1418 1422 1464 1532 1629 1732 1851 2005 2264
                   2333 2060 1891 1744 1603 1477 1378 1314 1283 1290 1336 1414 1521 1638 1763 1910 2116
                   2208 1978 1816 1662 1508 1376 1272 1206 1175 1183 1229 1311 1425 1553 1688 1834 2022
                   2130 1922 1758 1593 1432 1290 1188 1126 1099 1106 1151 1229 1348 1486 1628 1778 1946
                   2081 1878 1717 1543 1376 1231 1134 1075 1050 1058 1099 1174 1292 1437 1587 1738 1902
                   2049 1850 1683 1510 1341 1197 1102 1049 1024 1033 1070 1142 1255 1402 1560 1716 1879
                   2043 1843 1674 1500 1328 1188 1096 1047 1024 1032 1065 1133 1247 1393 1551 1707 1865
                   2052 1855 1688 1509 1338 1198 1106 1060 1040 1045 1074 1142 1255 1403 1559 1715 1878
                   2079 1880 1709 1538 1370 1231 1134 1084 1065 1070 1105 1175 1288 1433 1586 1734 1901
                   2127 1917 1752 1590 1426 1289 1187 1133 1111 1115 1154 1229 1345 1486 1632 1777 1949
                   2206 1980 1812 1657 1499 1367 1264 1204 1180 1185 1227 1307 1420 1553 1688 1830 2009
                   2304 2056 1887 1741 1590 1461 1365 1304 1277 1285 1329 1406 1513 1632 1760 1907 2107
                   2452 2164 1977 1833 1698 1581 1489 1430 1402 1412 1455 1523 1618 1728 1851 2008 2233
                   2636 2307 2089 1941 1816 1710 1628 1574 1549 1559 1595 1657 1744 1838 1961 2141 2363
                   2907 2498 2254 2080 1951 1856 1777 1730 1711 1717 1745 1798 1875 1970 2110 2308 2550]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="7" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        3264x2448_D75_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [6495 5015 4162 3556 3218 2919 2704 2639 2671 2655 2772 3019 3266 3585 4123 4694 5384 
                        5589 4412 3644 3195 2862 2639 2462 2319 2283 2331 2490 2655 2958 3290 3737 4325 4903 
                        4903 3869 3340 2939 2623 2344 2108 1976 1949 2003 2149 2369 2608 2979 3315 3903 4644 
                        4242 3556 3061 2655 2319 2059 1836 1694 1662 1734 1859 2088 2408 2721 3127 3614 4368 
                        4047 3266 2844 2490 2078 1813 1579 1454 1421 1503 1631 1805 2149 2518 2900 3392 4010 
                        3706 3149 2721 2271 1891 1602 1394 1288 1258 1288 1421 1656 1949 2344 2755 3149 3802 
                        3585 2999 2518 2118 1755 1439 1265 1174 1144 1193 1303 1488 1783 2181 2623 3019 3614 
                        3418 2939 2476 2003 1644 1372 1184 1093 1074 1109 1223 1398 1694 2068 2504 2979 3499 
                        3418 2881 2395 1985 1579 1311 1135 1056 1031 1079 1184 1331 1631 2003 2504 2919 3392 
                        3445 2807 2408 1976 1590 1307 1141 1046 1024 1069 1181 1343 1608 1994 2504 2862 3418 
                        3445 2881 2421 2003 1625 1347 1165 1087 1064 1109 1197 1394 1681 2059 2490 2919 3556 
                        3614 2958 2518 2108 1714 1421 1251 1156 1129 1177 1280 1473 1769 2139 2608 3040 3614 
                        3869 3083 2655 2225 1875 1579 1359 1269 1237 1284 1398 1614 1899 2260 2655 3127 3675 
                        4325 3290 2790 2395 2059 1734 1524 1430 1389 1439 1579 1798 2098 2448 2825 3290 3974 
                        4849 3644 2999 2577 2271 1985 1769 1656 1608 1662 1813 2021 2271 2655 3019 3499 4325 
                        5384 4201 3242 2844 2504 2225 2030 1932 1891 1924 2088 2271 2562 2900 3315 3938 5072 
                        6693 4849 3802 3172 2790 2518 2356 2260 2214 2260 2369 2577 2772 3149 3614 4548 5589 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [5400 3986 3257 2796 2516 2354 2259 2172 2153 2134 2281 2369 2534 2806 3186 3703 4168 
                        4447 3457 2884 2534 2317 2134 1994 1921 1916 1936 2039 2140 2324 2579 2861 3362 3839 
                        3839 3079 2615 2339 2097 1916 1793 1709 1694 1730 1807 1962 2153 2362 2653 3040 3593 
                        3409 2839 2433 2192 1946 1734 1590 1499 1481 1515 1601 1776 1989 2205 2474 2884 3425 
                        3200 2625 2288 2016 1785 1566 1418 1325 1308 1337 1423 1583 1802 2039 2332 2663 3158 
                        2954 2525 2205 1911 1629 1418 1283 1207 1183 1211 1304 1466 1678 1931 2198 2543 3003 
                        2907 2408 2073 1802 1540 1330 1191 1118 1095 1135 1215 1362 1566 1839 2147 2457 2850 
                        2796 2354 2022 1734 1469 1254 1123 1064 1052 1071 1153 1294 1502 1767 2062 2393 2817 
                        2723 2317 1983 1709 1423 1231 1100 1025 1024 1057 1132 1257 1469 1730 2027 2377 2774 
                        2743 2317 1973 1694 1429 1229 1088 1033 1027 1047 1118 1254 1460 1722 2039 2377 2764 
                        2796 2332 1989 1726 1463 1252 1125 1064 1045 1069 1157 1281 1505 1767 2050 2369 2806 
                        2884 2385 2062 1772 1530 1318 1179 1113 1095 1128 1209 1354 1553 1820 2122 2441 2873 
                        3092 2474 2134 1862 1629 1420 1274 1199 1187 1197 1292 1448 1644 1921 2179 2508 2954 
                        3286 2634 2246 1983 1746 1553 1404 1325 1306 1335 1429 1590 1767 2022 2295 2653 3243 
                        3741 2861 2377 2097 1901 1709 1566 1487 1454 1487 1590 1734 1916 2153 2424 2774 3474 
                        4265 3286 2579 2252 2056 1872 1755 1682 1648 1678 1776 1906 2079 2317 2615 3066 3921 
                        4994 3859 2966 2516 2288 2085 1957 1891 1862 1896 1983 2073 2302 2543 2861 3524 4447 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [5185 3937 3287 2778 2530 2345 2265 2147 2116 2147 2252 2360 2521 2865 3229 3627 4207 
                        4382 3457 2843 2530 2323 2153 2006 1927 1917 1943 2028 2147 2323 2548 2854 3347 3896 
                        3855 3081 2611 2330 2110 1912 1783 1689 1666 1716 1796 1938 2116 2352 2620 3042 3609 
                        3473 2799 2406 2165 1922 1728 1583 1499 1484 1515 1608 1757 1969 2185 2438 2832 3409 
                        3187 2648 2294 2023 1761 1577 1421 1317 1301 1334 1432 1583 1796 2039 2308 2630 3120 
                        3017 2496 2178 1902 1647 1430 1278 1207 1176 1209 1299 1441 1662 1917 2211 2548 2993 
                        2865 2446 2092 1809 1553 1327 1182 1119 1097 1134 1213 1361 1573 1841 2140 2446 2876 
                        2789 2360 2039 1724 1461 1265 1124 1067 1052 1083 1156 1294 1503 1761 2062 2383 2832 
                        2758 2330 2006 1704 1438 1235 1110 1038 1024 1065 1134 1265 1472 1745 2051 2390 2778 
                        2768 2352 2006 1704 1441 1227 1097 1037 1033 1069 1129 1272 1461 1728 2062 2383 2778 
                        2789 2375 2051 1732 1475 1265 1136 1078 1058 1092 1158 1303 1509 1783 2104 2398 2778 
                        2922 2438 2110 1813 1557 1353 1209 1131 1116 1149 1225 1374 1590 1855 2165 2471 2922 
                        3133 2504 2204 1917 1651 1444 1299 1221 1205 1237 1331 1478 1696 1922 2238 2556 3042 
                        3457 2677 2301 2001 1783 1580 1444 1366 1334 1358 1470 1618 1805 2086 2337 2677 3229 
                        3855 2933 2454 2147 1943 1753 1611 1524 1493 1540 1629 1787 1963 2211 2471 2865 3441 
                        4305 3316 2677 2337 2134 1927 1805 1724 1696 1728 1813 1948 2159 2367 2697 3201 3916 
                        5222 3896 3133 2583 2294 2153 2023 1948 1907 1948 2034 2140 2345 2565 3005 3557 4517 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [4894 3702 3040 2567 2329 2163 2078 2026 2012 2048 2123 2239 2386 2625 3008 3438 3876 
                        4039 3226 2637 2357 2139 2012 1894 1839 1828 1839 1919 2026 2163 2406 2699 3173 3609 
                        3565 2845 2416 2171 1958 1805 1709 1613 1618 1645 1734 1857 2041 2213 2489 2873 3417 
                        3208 2625 2256 2012 1816 1655 1532 1455 1437 1455 1574 1679 1869 2070 2329 2662 3173 
                        2947 2458 2139 1887 1669 1512 1375 1298 1275 1319 1402 1540 1740 1951 2196 2489 2932 
                        2777 2310 2034 1810 1565 1369 1256 1186 1167 1198 1301 1419 1600 1839 2116 2406 2831 
                        2625 2256 1971 1699 1466 1292 1164 1115 1090 1135 1198 1331 1528 1761 2041 2301 2737 
                        2555 2179 1919 1636 1412 1231 1111 1056 1056 1088 1157 1264 1462 1704 1964 2256 2662 
                        2578 2171 1887 1631 1385 1196 1088 1035 1024 1071 1130 1242 1437 1674 1958 2239 2637 
                        2567 2179 1881 1622 1382 1206 1092 1029 1024 1062 1126 1237 1433 1674 1932 2239 2625 
                        2637 2196 1900 1655 1423 1231 1119 1060 1056 1077 1146 1267 1466 1709 1971 2247 2590 
                        2699 2256 1985 1724 1485 1292 1167 1111 1106 1130 1208 1337 1528 1745 2026 2292 2712 
                        2859 2310 2019 1788 1553 1378 1258 1183 1174 1206 1272 1426 1587 1822 2070 2377 2859 
                        3173 2479 2116 1881 1664 1496 1369 1322 1275 1307 1412 1553 1704 1919 2213 2489 3056 
                        3543 2699 2256 1985 1794 1664 1516 1455 1433 1466 1528 1664 1828 2041 2301 2649 3319 
                        4067 3040 2427 2147 1938 1805 1689 1618 1609 1627 1684 1839 1978 2204 2416 2902 3655 
                        4773 3609 2804 2367 2139 1978 1863 1810 1788 1788 1887 1985 2179 2396 2750 3319 4185 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="8" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        3264x2448_D75_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4547 3745 3261 2897 2705 2513 2367 2334 2370 2348 2427 2599 2745 2920 3230 3505 3769 
                        4067 3400 2942 2680 2476 2338 2218 2110 2084 2121 2243 2352 2559 2760 3017 3333 3568 
                        3672 3061 2766 2528 2326 2128 1946 1842 1823 1867 1984 2151 2313 2562 2746 3088 3478 
                        3251 2876 2590 2332 2099 1908 1730 1612 1587 1650 1752 1935 2180 2390 2646 2923 3348 
                        3159 2689 2448 2225 1913 1709 1513 1407 1380 1454 1563 1701 1979 2250 2496 2792 3130 
                        2934 2628 2374 2056 1764 1530 1353 1263 1237 1263 1379 1581 1818 2122 2403 2628 3010 
                        2867 2527 2218 1936 1653 1387 1239 1162 1136 1180 1277 1434 1679 1993 2310 2544 2890 
                        2750 2491 2193 1841 1557 1330 1166 1087 1072 1103 1205 1355 1604 1901 2218 2525 2815 
                        2755 2446 2125 1828 1498 1273 1120 1053 1031 1075 1169 1292 1547 1844 2222 2479 2734 
                        2772 2379 2133 1816 1506 1267 1124 1041 1022 1064 1163 1301 1523 1833 2218 2426 2750 
                        2755 2428 2132 1830 1530 1298 1141 1075 1056 1097 1173 1343 1583 1882 2193 2460 2844 
                        2861 2468 2197 1908 1599 1357 1214 1133 1110 1154 1242 1406 1650 1936 2275 2537 2861 
                        3020 2538 2285 1988 1726 1488 1302 1228 1201 1243 1339 1521 1749 2019 2285 2574 2869 
                        3315 2661 2361 2104 1864 1607 1436 1361 1326 1369 1488 1666 1899 2150 2390 2661 3046 
                        3631 2883 2484 2216 2014 1802 1633 1544 1504 1550 1674 1835 2014 2284 2500 2769 3239 
                        3918 3237 2617 2386 2166 1971 1829 1758 1726 1751 1881 2012 2216 2433 2676 3035 3691 
                        4685 3621 2979 2584 2345 2168 2063 1999 1965 1999 2074 2218 2330 2565 2832 3396 3912 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3780 2976 2552 2278 2115 2026 1978 1921 1911 1887 1997 2039 2130 2286 2496 2765 2918 
                        3236 2664 2328 2126 2004 1890 1796 1748 1749 1762 1837 1896 2010 2163 2310 2591 2794 
                        2875 2436 2166 2012 1859 1739 1655 1593 1585 1613 1668 1781 1909 2032 2197 2405 2691 
                        2613 2296 2058 1925 1762 1607 1498 1427 1414 1442 1509 1646 1801 1937 2093 2332 2625 
                        2498 2161 1970 1801 1644 1476 1359 1282 1270 1294 1363 1492 1659 1822 2007 2192 2465 
                        2339 2107 1924 1730 1520 1354 1245 1183 1164 1187 1266 1400 1565 1748 1918 2122 2378 
                        2325 2029 1826 1647 1450 1282 1167 1106 1087 1123 1190 1313 1475 1681 1891 2070 2279 
                        2249 1995 1791 1594 1391 1215 1106 1059 1050 1066 1136 1254 1422 1624 1826 2028 2266 
                        2195 1967 1760 1574 1350 1195 1086 1022 1024 1054 1117 1220 1394 1593 1799 2018 2236 
                        2207 1964 1748 1557 1353 1191 1072 1028 1025 1042 1101 1215 1383 1583 1806 2015 2224 
                        2236 1965 1752 1577 1378 1207 1102 1053 1037 1058 1134 1234 1417 1615 1806 1996 2244 
                        2283 1990 1799 1604 1427 1258 1144 1091 1077 1106 1174 1293 1449 1648 1851 2037 2275 
                        2414 2037 1837 1664 1500 1338 1221 1160 1152 1158 1238 1365 1514 1716 1876 2065 2306 
                        2518 2130 1900 1742 1581 1439 1323 1261 1247 1270 1346 1473 1600 1776 1942 2146 2485 
                        2801 2264 1969 1804 1686 1551 1446 1386 1360 1386 1468 1574 1699 1852 2008 2195 2602 
                        3104 2532 2082 1889 1779 1658 1581 1530 1504 1527 1600 1688 1798 1944 2111 2363 2853 
                        3496 2882 2324 2050 1923 1795 1713 1673 1652 1677 1736 1784 1935 2072 2242 2631 3113 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3630 2940 2575 2263 2126 2019 1983 1899 1878 1899 1972 2032 2119 2334 2530 2708 2945 
                        3189 2664 2295 2122 2009 1907 1807 1753 1750 1768 1827 1902 2009 2137 2304 2579 2835 
                        2887 2438 2162 2004 1871 1736 1646 1575 1558 1600 1658 1759 1876 2023 2170 2407 2703 
                        2662 2264 2036 1902 1740 1601 1492 1427 1417 1442 1515 1628 1783 1919 2063 2290 2613 
                        2488 2180 1975 1807 1621 1486 1362 1274 1263 1291 1372 1492 1654 1822 1987 2165 2436 
                        2389 2083 1900 1722 1536 1365 1241 1183 1157 1185 1261 1376 1550 1735 1929 2126 2370 
                        2291 2061 1843 1653 1462 1279 1158 1107 1089 1122 1188 1312 1481 1682 1885 2061 2300 
                        2244 2000 1806 1584 1383 1226 1107 1062 1050 1077 1139 1254 1423 1618 1826 2020 2278 
                        2223 1979 1780 1569 1364 1199 1096 1035 1024 1062 1119 1228 1396 1607 1820 2029 2239 
                        2227 1993 1777 1566 1365 1189 1081 1032 1031 1064 1112 1233 1383 1588 1826 2020 2235 
                        2230 2001 1806 1583 1389 1219 1113 1067 1050 1080 1134 1256 1421 1629 1853 2021 2222 
                        2314 2035 1841 1641 1453 1292 1174 1109 1098 1126 1189 1312 1483 1679 1889 2062 2314 
                        2446 2061 1897 1713 1520 1361 1245 1182 1170 1197 1275 1393 1562 1717 1927 2104 2375 
                        2649 2165 1947 1758 1614 1464 1361 1300 1274 1292 1385 1499 1634 1832 1977 2165 2475 
                        2887 2321 2032 1847 1723 1591 1487 1421 1397 1436 1504 1622 1741 1902 2047 2267 2577 
                        3133 2555 2161 1960 1846 1707 1626 1569 1548 1572 1633 1725 1868 1985 2177 2467 2850 
                        3655 2909 2455 2104 1928 1853 1771 1723 1692 1723 1781 1842 1971 2090 2354 2656 3162 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3426 2764 2382 2091 1957 1862 1819 1792 1786 1811 1859 1927 2005 2138 2357 2567 2713 
                        2939 2486 2129 1977 1850 1782 1706 1673 1669 1673 1729 1795 1871 2018 2179 2445 2626 
                        2670 2251 2001 1867 1736 1639 1578 1504 1514 1534 1601 1686 1810 1903 2061 2273 2559 
                        2459 2123 1909 1767 1644 1534 1444 1385 1372 1385 1483 1556 1692 1818 1970 2153 2432 
                        2301 2023 1841 1686 1537 1425 1317 1256 1238 1276 1343 1451 1602 1743 1890 2049 2289 
                        2199 1928 1774 1639 1460 1307 1219 1163 1148 1174 1263 1355 1493 1665 1846 2008 2242 
                        2099 1901 1736 1553 1380 1245 1140 1103 1082 1123 1174 1283 1439 1609 1798 1939 2189 
                        2056 1847 1700 1504 1337 1193 1094 1051 1054 1082 1140 1225 1384 1566 1740 1912 2142 
                        2078 1843 1675 1502 1314 1161 1074 1032 1024 1067 1115 1206 1363 1541 1738 1901 2126 
                        2065 1847 1666 1491 1309 1169 1076 1024 1022 1057 1109 1199 1357 1538 1711 1898 2112 
                        2109 1850 1673 1512 1340 1186 1096 1049 1048 1066 1123 1221 1380 1562 1736 1893 2071 
                        2137 1883 1732 1561 1385 1234 1133 1089 1088 1108 1173 1277 1425 1580 1767 1913 2147 
                        2232 1902 1738 1597 1430 1299 1205 1145 1140 1167 1219 1344 1461 1628 1782 1957 2232 
                        2432 2005 1790 1652 1506 1386 1290 1258 1217 1244 1330 1439 1543 1686 1872 2013 2342 
                        2653 2136 1868 1707 1591 1511 1399 1357 1340 1367 1410 1511 1621 1755 1906 2096 2485 
                        2959 2343 1959 1801 1676 1599 1521 1472 1469 1480 1517 1629 1711 1849 1951 2236 2660 
                        3341 2695 2197 1928 1798 1703 1631 1601 1587 1581 1652 1709 1831 1952 2155 2478 2930 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="9" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        3264x2448_CWF_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [6429 4736 4041 3420 3042 2822 2617 2545 2518 2518 2661 2839 3123 3445 4006 4597 5391 
                        5391 4262 3577 3082 2772 2491 2330 2178 2188 2219 2353 2545 2856 3123 3577 4185 4885 
                        4689 3749 3187 2772 2491 2178 2001 1873 1850 1880 2027 2251 2531 2856 3277 3810 4508 
                        4185 3445 2909 2545 2188 1943 1727 1620 1571 1631 1753 1967 2262 2602 3022 3497 4112 
                        3938 3187 2739 2330 1976 1702 1515 1401 1353 1406 1515 1747 2010 2389 2822 3231 3873 
                        3661 3022 2573 2148 1815 1525 1349 1255 1219 1258 1369 1566 1836 2209 2661 3062 3661 
                        3471 2874 2452 2010 1660 1385 1222 1128 1122 1153 1255 1431 1690 2063 2518 2965 3445 
                        3323 2805 2330 1935 1560 1315 1144 1078 1066 1101 1185 1337 1598 1967 2426 2892 3347 
                        3323 2723 2273 1880 1520 1255 1112 1040 1026 1064 1153 1300 1550 1903 2377 2822 3371 
                        3254 2772 2284 1865 1515 1258 1112 1033 1024 1059 1153 1296 1550 1911 2365 2822 3371 
                        3277 2788 2307 1895 1545 1300 1141 1071 1056 1093 1182 1333 1592 1959 2377 2856 3420 
                        3471 2874 2426 2010 1643 1377 1219 1133 1106 1150 1235 1410 1690 2054 2478 2874 3445 
                        3810 2965 2545 2138 1760 1505 1318 1228 1194 1245 1341 1530 1815 2198 2587 3062 3577 
                        4112 3187 2692 2284 1951 1660 1477 1369 1337 1385 1515 1708 1984 2341 2723 3166 3779 
                        4642 3497 2909 2478 2158 1895 1678 1576 1540 1576 1702 1919 2188 2545 2928 3445 4148 
                        5330 4041 3187 2723 2426 2138 1943 1850 1794 1865 1976 2178 2465 2755 3166 3810 4642 
                        6016 4642 3661 3042 2646 2439 2230 2128 2081 2138 2273 2491 2723 3022 3550 4301 5391 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [5290 3995 3309 2837 2594 2389 2278 2177 2169 2184 2278 2407 2605 2850 3193 3630 4320 
                        4472 3453 2902 2583 2345 2155 2031 1938 1920 1974 2050 2177 2345 2583 2955 3397 3945 
                        3945 3130 2637 2345 2119 1932 1786 1709 1682 1718 1801 1993 2140 2398 2670 3115 3589 
                        3510 2862 2444 2177 1956 1747 1589 1499 1465 1521 1605 1776 1968 2199 2483 2862 3362 
                        3225 2659 2311 2031 1771 1554 1419 1327 1306 1341 1442 1597 1806 2064 2337 2693 3177 
                        2983 2532 2184 1892 1634 1419 1279 1200 1186 1218 1303 1448 1673 1926 2230 2532 3040 
                        2850 2407 2105 1811 1539 1325 1186 1118 1112 1129 1211 1356 1566 1832 2140 2463 2850 
                        2763 2363 2031 1714 1468 1257 1127 1065 1055 1087 1148 1279 1489 1776 2064 2389 2799 
                        2739 2328 1993 1677 1422 1223 1089 1037 1024 1051 1118 1257 1458 1728 2018 2363 2763 
                        2751 2337 1974 1691 1416 1213 1093 1032 1024 1058 1120 1249 1448 1728 2031 2389 2775 
                        2763 2354 2018 1714 1452 1252 1121 1056 1049 1078 1148 1277 1475 1742 2057 2380 2824 
                        2928 2389 2064 1776 1525 1308 1184 1120 1096 1133 1207 1344 1543 1801 2112 2444 2888 
                        3130 2473 2133 1859 1614 1416 1277 1200 1180 1209 1306 1455 1660 1915 2199 2552 2955 
                        3379 2637 2270 1993 1742 1547 1410 1336 1311 1336 1432 1582 1786 2018 2320 2648 3177 
                        3804 2915 2389 2126 1898 1700 1574 1489 1458 1489 1593 1742 1920 2162 2435 2812 3510 
                        4320 3326 2626 2278 2057 1903 1761 1695 1643 1695 1796 1909 2105 2337 2626 3145 3873 
                        5247 3897 3040 2542 2270 2112 1993 1898 1892 1932 1986 2133 2286 2552 2928 3569 4504 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [5120 3895 3273 2797 2550 2317 2235 2138 2130 2123 2212 2360 2529 2785 3190 3587 4205 
                        4440 3450 2899 2540 2309 2116 1972 1907 1878 1918 1996 2116 2334 2550 2873 3359 3848 
                        3824 3067 2623 2309 2116 1901 1768 1675 1653 1689 1783 1918 2102 2369 2634 3052 3587 
                        3527 2834 2461 2159 1918 1716 1564 1466 1446 1480 1575 1725 1948 2174 2442 2860 3413 
                        3223 2668 2300 2003 1768 1534 1395 1306 1288 1317 1417 1564 1773 2035 2334 2668 3190 
                        3009 2540 2197 1890 1641 1408 1280 1182 1161 1189 1290 1436 1662 1912 2212 2529 2995 
                        2822 2451 2102 1793 1537 1323 1176 1102 1091 1110 1202 1331 1552 1819 2123 2490 2912 
                        2822 2396 2048 1730 1463 1257 1126 1067 1042 1078 1148 1283 1480 1759 2075 2414 2847 
                        2772 2369 2022 1689 1430 1223 1093 1039 1024 1048 1120 1250 1456 1725 2041 2369 2822 
                        2797 2351 2016 1684 1427 1216 1091 1026 1034 1049 1128 1250 1463 1716 2055 2405 2822 
                        2847 2369 2041 1730 1470 1262 1128 1063 1053 1078 1154 1283 1504 1773 2075 2414 2860 
                        2953 2442 2109 1799 1537 1323 1196 1116 1102 1134 1205 1357 1568 1840 2138 2470 2953 
                        3174 2519 2182 1878 1645 1430 1285 1198 1189 1219 1293 1466 1684 1936 2235 2613 3038 
                        3450 2713 2300 2009 1764 1568 1420 1342 1309 1354 1436 1595 1788 2048 2334 2713 3239 
                        3848 2995 2451 2145 1918 1730 1583 1508 1466 1512 1595 1764 1948 2197 2509 2873 3488 
                        4440 3377 2690 2334 2095 1907 1773 1702 1666 1698 1783 1930 2109 2351 2668 3159 3993 
                        5247 3919 3067 2602 2276 2130 1996 1890 1907 1912 1990 2159 2334 2560 3023 3628 4535 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [4974 3731 3072 2678 2321 2191 2117 2022 2048 2048 2089 2271 2448 2701 3042 3521 4123 
                        4123 3230 2701 2374 2191 2022 1911 1832 1811 1854 1922 2048 2191 2410 2749 3197 3687 
                        3602 2875 2467 2176 1983 1822 1712 1632 1615 1641 1722 1832 2048 2238 2507 2901 3444 
                        3230 2633 2271 2035 1854 1658 1521 1464 1431 1464 1529 1667 1854 2089 2338 2678 3133 
                        2956 2448 2161 1899 1712 1514 1368 1284 1279 1306 1393 1544 1722 1983 2207 2527 2984 
                        2823 2374 2062 1791 1567 1368 1248 1187 1178 1187 1263 1431 1615 1843 2103 2410 2901 
                        2701 2287 1971 1712 1471 1279 1174 1107 1088 1127 1201 1317 1521 1770 2035 2321 2823 
                        2568 2238 1934 1641 1411 1215 1115 1055 1062 1084 1139 1248 1451 1694 1971 2304 2633 
                        2590 2191 1911 1632 1380 1191 1077 1024 1031 1055 1115 1239 1424 1676 1946 2222 2655 
                        2568 2176 1911 1615 1386 1187 1084 1024 1031 1041 1119 1224 1411 1667 1946 2222 2633 
                        2655 2222 1899 1649 1399 1224 1107 1048 1044 1073 1131 1248 1457 1685 1946 2254 2701 
                        2749 2271 1971 1703 1471 1274 1148 1103 1096 1107 1191 1306 1492 1760 2009 2304 2701 
                        2901 2321 2022 1791 1544 1362 1243 1169 1161 1191 1258 1393 1583 1822 2089 2392 2823 
                        3165 2487 2132 1888 1641 1485 1351 1284 1274 1289 1380 1514 1703 1911 2191 2487 3042 
                        3521 2725 2271 1996 1822 1624 1507 1424 1405 1444 1536 1641 1822 2022 2287 2655 3264 
                        4017 3133 2487 2132 1934 1780 1667 1599 1575 1607 1694 1801 1958 2191 2467 2928 3687 
                        4748 3602 2875 2374 2089 1983 1865 1791 1791 1811 1854 1983 2161 2410 2725 3406 4123 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="10" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        3264x2448_CWF_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4500 3536 3166 2786 2557 2429 2291 2251 2235 2227 2330 2444 2625 2806 3139 3433 3774 
                        3923 3284 2888 2585 2398 2206 2099 1982 1997 2019 2120 2254 2471 2620 2888 3225 3555 
                        3511 2966 2640 2384 2209 1977 1847 1746 1731 1753 1871 2043 2244 2456 2714 3015 3376 
                        3207 2786 2461 2235 1981 1801 1627 1542 1500 1552 1652 1823 2048 2285 2557 2828 3151 
                        3074 2624 2358 2082 1819 1604 1452 1356 1314 1361 1452 1646 1851 2134 2429 2660 3024 
                        2899 2522 2245 1945 1693 1456 1309 1230 1199 1233 1329 1495 1713 2000 2321 2555 2899 
                        2776 2422 2160 1837 1563 1335 1197 1116 1114 1141 1230 1379 1591 1885 2218 2498 2755 
                        2673 2377 2064 1778 1477 1274 1127 1072 1064 1095 1167 1296 1513 1808 2149 2451 2693 
                        2679 2312 2017 1731 1442 1218 1098 1037 1026 1061 1138 1262 1470 1752 2109 2396 2717 
                        2618 2349 2023 1714 1435 1219 1095 1028 1022 1054 1136 1256 1468 1756 2095 2392 2712 
                        2621 2349 2032 1732 1455 1253 1118 1060 1048 1081 1158 1285 1499 1790 2094 2407 2735 
                        2748 2398 2116 1820 1533 1315 1183 1111 1088 1127 1199 1346 1577 1860 2162 2398 2728 
                        2974 2441 2191 1910 1621 1418 1263 1188 1159 1205 1285 1442 1671 1964 2227 2521 2792 
                        3151 2578 2278 2006 1766 1538 1392 1303 1277 1318 1427 1583 1796 2056 2304 2561 2896 
                        3476 2767 2409 2131 1913 1720 1549 1469 1441 1469 1571 1742 1940 2189 2425 2726 3106 
                        3878 3114 2573 2284 2099 1894 1750 1683 1638 1697 1780 1929 2132 2311 2556 2936 3378 
                        4211 3466 2868 2478 2224 2100 1952 1882 1847 1891 1990 2144 2289 2462 2781 3212 3774 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3703 2983 2593 2311 2180 2056 1994 1925 1925 1932 1994 2072 2189 2322 2502 2711 3024 
                        3254 2661 2343 2167 2029 1909 1829 1763 1753 1796 1847 1928 2029 2167 2386 2618 2871 
                        2954 2477 2184 2017 1879 1754 1649 1593 1573 1602 1662 1809 1898 2062 2211 2465 2688 
                        2690 2315 2068 1912 1771 1619 1497 1427 1399 1447 1512 1646 1782 1931 2101 2315 2577 
                        2518 2189 1989 1815 1631 1465 1360 1284 1268 1298 1382 1505 1663 1844 2012 2217 2480 
                        2362 2113 1905 1713 1524 1355 1241 1176 1166 1194 1265 1383 1561 1744 1945 2113 2407 
                        2279 2028 1854 1655 1449 1277 1162 1106 1104 1117 1186 1307 1475 1674 1885 2075 2279 
                        2223 2003 1799 1575 1390 1218 1110 1060 1053 1081 1131 1239 1410 1632 1828 2025 2252 
                        2208 1977 1769 1544 1349 1187 1075 1034 1024 1048 1103 1220 1383 1591 1791 2007 2227 
                        2213 1981 1749 1554 1341 1175 1077 1027 1022 1053 1103 1210 1371 1588 1799 2025 2233 
                        2210 1984 1777 1566 1367 1207 1098 1045 1041 1067 1125 1231 1389 1592 1812 2005 2258 
                        2318 1994 1801 1608 1423 1249 1149 1098 1078 1111 1172 1283 1439 1630 1843 2040 2287 
                        2444 2036 1836 1661 1486 1334 1224 1161 1146 1170 1251 1371 1528 1711 1893 2101 2307 
                        2590 2133 1921 1751 1577 1434 1329 1271 1252 1271 1349 1466 1617 1772 1963 2142 2435 
                        2849 2307 1979 1829 1683 1543 1453 1388 1364 1388 1470 1581 1702 1860 2017 2225 2628 
                        3144 2563 2120 1911 1779 1686 1586 1542 1500 1542 1618 1691 1821 1960 2120 2424 2818 
                        3673 2910 2382 2071 1908 1818 1745 1679 1679 1709 1739 1836 1921 2079 2294 2665 3153 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3584 2908 2564 2279 2143 1995 1957 1891 1890 1878 1937 2032 2125 2269 2499 2678 2944 
                        3231 2659 2341 2131 1997 1874 1776 1735 1714 1745 1798 1874 2019 2139 2320 2589 2800 
                        2864 2427 2172 1986 1876 1726 1632 1562 1546 1575 1646 1741 1864 2038 2182 2415 2686 
                        2703 2292 2082 1896 1736 1590 1474 1395 1381 1408 1484 1599 1764 1909 2066 2313 2616 
                        2516 2196 1980 1790 1628 1446 1337 1264 1250 1274 1358 1474 1633 1818 2009 2196 2490 
                        2382 2120 1917 1711 1531 1344 1242 1159 1142 1166 1252 1371 1550 1731 1930 2110 2371 
                        2257 2065 1851 1639 1447 1275 1152 1090 1083 1098 1178 1283 1461 1662 1870 2098 2329 
                        2270 2031 1814 1590 1385 1218 1109 1062 1040 1072 1131 1243 1401 1617 1838 2046 2290 
                        2235 2012 1794 1555 1357 1187 1079 1036 1024 1045 1105 1214 1381 1588 1811 2012 2275 
                        2250 1992 1786 1548 1351 1178 1075 1021 1032 1044 1111 1211 1385 1577 1820 2038 2270 
                        2277 1996 1798 1581 1384 1216 1105 1052 1045 1067 1131 1236 1416 1620 1828 2034 2287 
                        2338 2038 1840 1629 1434 1263 1161 1094 1084 1112 1170 1296 1463 1666 1865 2061 2338 
                        2478 2074 1878 1678 1515 1348 1231 1159 1154 1180 1239 1382 1551 1730 1924 2151 2372 
                        2644 2194 1946 1765 1597 1453 1338 1277 1250 1289 1353 1478 1619 1799 1975 2194 2482 
                        2882 2370 2030 1845 1701 1570 1461 1406 1371 1410 1472 1601 1727 1890 2078 2273 2612 
                        3231 2602 2172 1958 1812 1689 1597 1549 1521 1545 1606 1710 1824 1972 2154 2434 2906 
                        3673 2926 2403 2120 1913 1834 1748 1672 1692 1691 1742 1859 1962 2085 2368 2709 3175 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3482 2786 2407 2182 1951 1886 1854 1788 1817 1811 1829 1955 2057 2200 2383 2629 2886 
                        3000 2489 2181 1991 1895 1791 1721 1667 1653 1687 1731 1814 1895 2022 2219 2464 2683 
                        2697 2275 2043 1872 1758 1654 1580 1522 1511 1530 1590 1663 1816 1925 2076 2295 2579 
                        2475 2129 1921 1787 1678 1536 1433 1393 1366 1393 1441 1545 1678 1835 1978 2166 2401 
                        2308 2015 1860 1697 1576 1427 1311 1243 1242 1264 1335 1455 1586 1772 1900 2080 2330 
                        2235 1981 1799 1621 1462 1306 1211 1164 1159 1164 1226 1366 1507 1669 1835 2011 2297 
                        2160 1927 1736 1565 1385 1233 1150 1095 1080 1115 1177 1269 1432 1618 1792 1956 2258 
                        2066 1897 1713 1508 1336 1177 1098 1050 1060 1078 1122 1209 1374 1557 1746 1953 2118 
                        2088 1860 1696 1503 1309 1156 1063 1021 1031 1052 1100 1203 1351 1543 1727 1887 2140 
                        2066 1844 1693 1484 1312 1150 1068 1019 1029 1036 1102 1186 1336 1532 1724 1883 2118 
                        2123 1872 1673 1507 1317 1180 1085 1037 1036 1062 1108 1203 1372 1540 1714 1899 2160 
                        2177 1895 1720 1542 1372 1216 1114 1081 1078 1085 1156 1247 1392 1593 1753 1923 2139 
                        2265 1911 1741 1600 1422 1284 1191 1131 1127 1153 1205 1313 1458 1628 1798 1969 2204 
                        2426 2011 1804 1658 1486 1376 1273 1222 1216 1227 1300 1403 1542 1678 1854 2011 2331 
                        2637 2156 1881 1717 1616 1474 1391 1328 1314 1346 1418 1490 1616 1739 1894 2101 2444 
                        2923 2414 2008 1788 1673 1577 1502 1455 1438 1462 1526 1595 1694 1838 1992 2256 2683 
                        3324 2690 2253 1934 1756 1707 1633 1584 1589 1602 1623 1707 1816 1963 2135 2543 2886 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="11" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 18]">
                        3264x2448_TL84_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [6589 5332 4389 3709 3357 3037 2797 2653 2653 2653 2820 3037 3357 3772 4305 4903 5743 
                        5843 4569 3837 3323 2957 2663 2423 2282 2252 2298 2440 2674 3010 3391 3859 4538 5248 
                        5167 4045 3497 3037 2622 2290 2058 1912 1874 1928 2065 2314 2642 3065 3571 4070 4939 
                        4632 3751 3166 2717 2298 1973 1752 1594 1567 1613 1756 1991 2346 2785 3227 3793 4569 
                        4171 3460 2906 2458 2039 1711 1491 1383 1336 1395 1511 1743 2052 2504 3024 3552 4197 
                        3837 3227 2695 2237 1813 1508 1331 1233 1213 1242 1342 1539 1838 2282 2762 3323 4021 
                        3689 3065 2562 2071 1648 1375 1200 1131 1118 1151 1240 1412 1686 2117 2632 3151 3793 
                        3590 2983 2476 1950 1553 1303 1153 1077 1066 1100 1177 1310 1590 1991 2532 3079 3649 
                        3609 2944 2405 1928 1511 1258 1101 1040 1027 1068 1139 1290 1535 1939 2458 3024 3609 
                        3533 2931 2423 1890 1508 1244 1098 1033 1024 1058 1143 1285 1532 1939 2458 3010 3571 
                        3609 2996 2440 1962 1553 1288 1133 1056 1045 1082 1173 1310 1582 2003 2514 3093 3669 
                        3815 3093 2523 2065 1644 1361 1194 1122 1103 1129 1229 1395 1681 2097 2611 3166 3772 
                        4094 3181 2695 2200 1794 1497 1300 1209 1183 1215 1320 1521 1838 2259 2773 3307 3881 
                        4507 3497 2893 2405 2009 1690 1468 1352 1315 1366 1494 1707 2039 2440 2931 3460 4145 
                        5089 3881 3079 2611 2244 1962 1716 1571 1535 1590 1729 1956 2314 2728 3166 3709 4477 
                        5743 4418 3443 2906 2542 2229 1979 1864 1828 1879 2015 2259 2571 2970 3391 4070 5207 
                        6930 5290 3973 3323 2881 2562 2363 2222 2165 2229 2397 2581 2944 3259 3904 4697 6165 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [5184 4082 3422 2864 2627 2448 2305 2188 2194 2218 2337 2441 2670 2915 3299 3800 4272 
                        4505 3570 2967 2627 2391 2206 2078 1974 1946 1983 2089 2230 2426 2661 3021 3451 4042 
                        4003 3172 2687 2398 2177 1988 1810 1716 1698 1741 1834 1988 2188 2455 2714 3160 3715 
                        3617 2915 2515 2212 1969 1756 1605 1500 1479 1514 1612 1771 1993 2279 2554 2905 3451 
                        3260 2687 2357 2058 1782 1581 1418 1340 1294 1348 1448 1599 1826 2073 2405 2723 3260 
                        3101 2562 2224 1919 1637 1423 1296 1214 1187 1203 1296 1453 1677 1946 2267 2619 3055 
                        2905 2515 2126 1818 1537 1325 1193 1112 1109 1127 1203 1353 1557 1842 2166 2508 2935 
                        2825 2378 2063 1737 1461 1256 1127 1064 1049 1076 1149 1292 1503 1767 2099 2434 2854 
                        2777 2364 2017 1701 1423 1217 1089 1034 1028 1054 1127 1252 1453 1734 2058 2419 2884 
                        2796 2364 2017 1677 1418 1217 1087 1036 1024 1051 1121 1252 1458 1730 2047 2426 2884 
                        2844 2412 2073 1719 1453 1252 1115 1061 1055 1075 1153 1281 1495 1775 2105 2426 2894 
                        2989 2463 2089 1806 1523 1314 1181 1108 1099 1131 1205 1353 1560 1826 2154 2515 2978 
                        3247 2531 2200 1880 1641 1418 1268 1201 1176 1208 1289 1443 1667 1914 2248 2586 3089 
                        3495 2696 2311 2022 1771 1554 1411 1320 1308 1331 1423 1584 1786 2047 2364 2723 3247 
                        3908 2989 2455 2160 1928 1726 1593 1500 1466 1498 1605 1771 1969 2200 2500 2874 3555 
                        4433 3366 2705 2344 2099 1923 1763 1705 1674 1708 1810 1951 2132 2378 2696 3222 3984 
                        5250 3908 3136 2611 2337 2137 2003 1928 1914 1928 2037 2171 2371 2644 2967 3732 4658 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [5324 4091 3349 2864 2595 2400 2275 2203 2191 2174 2269 2428 2587 2904 3270 3845 4237 
                        4538 3564 3009 2620 2380 2163 2021 1940 1909 1936 2056 2197 2373 2636 2998 3446 4071 
                        3993 3194 2696 2414 2151 1954 1798 1688 1671 1698 1817 1963 2185 2435 2741 3158 3724 
                        3658 2894 2532 2226 1968 1723 1573 1488 1467 1494 1588 1763 2001 2263 2547 2945 3519 
                        3296 2741 2373 2071 1794 1564 1415 1316 1286 1331 1429 1585 1801 2087 2435 2750 3309 
                        3110 2603 2269 1936 1648 1424 1278 1190 1175 1205 1298 1449 1674 1949 2294 2620 3110 
                        2955 2517 2151 1833 1549 1331 1186 1110 1090 1125 1202 1339 1564 1870 2220 2540 3009 
                        2914 2443 2102 1745 1472 1260 1131 1063 1054 1080 1153 1284 1504 1801 2129 2472 2955 
                        2864 2400 2071 1737 1429 1225 1099 1032 1024 1059 1124 1258 1465 1752 2119 2450 2904 
                        2904 2407 2066 1719 1439 1228 1090 1034 1035 1054 1133 1262 1467 1741 2102 2464 2914 
                        2894 2428 2102 1756 1467 1266 1133 1072 1055 1084 1152 1288 1504 1786 2135 2486 2977 
                        3031 2509 2163 1841 1546 1337 1195 1124 1096 1142 1214 1364 1570 1862 2209 2563 3020 
                        3309 2603 2257 1931 1654 1442 1292 1216 1191 1223 1314 1460 1695 1991 2313 2679 3158 
                        3580 2777 2366 2076 1805 1582 1432 1346 1316 1346 1457 1609 1813 2113 2393 2796 3322 
                        3974 3020 2517 2226 1977 1748 1585 1521 1488 1527 1609 1786 1973 2257 2532 2977 3580 
                        4465 3418 2768 2386 2163 1945 1801 1712 1685 1712 1821 1977 2174 2428 2777 3296 4132 
                        5358 4071 3158 2662 2366 2146 2001 1931 1931 1954 2066 2197 2386 2679 3076 3691 4773 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [4997 3876 3095 2711 2397 2242 2138 2074 2033 2095 2160 2266 2425 2676 3072 3606 4026 
                        4106 3291 2783 2425 2218 2033 1902 1860 1835 1851 1938 2063 2266 2483 2841 3265 3770 
                        3703 2962 2529 2230 2033 1843 1721 1620 1614 1646 1735 1868 2053 2279 2576 2962 3514 
                        3372 2693 2317 2074 1851 1666 1530 1445 1435 1465 1547 1700 1876 2095 2383 2747 3265 
                        2984 2513 2206 1947 1693 1508 1360 1276 1261 1312 1396 1536 1728 2003 2254 2560 3072 
                        2821 2397 2084 1803 1559 1378 1249 1178 1171 1202 1253 1425 1607 1851 2127 2454 2900 
                        2676 2304 1994 1735 1471 1280 1162 1091 1088 1124 1178 1312 1514 1788 2053 2383 2802 
                        2625 2230 1938 1666 1415 1223 1106 1055 1055 1072 1146 1249 1450 1693 1984 2330 2625 
                        2608 2206 1911 1633 1378 1185 1083 1027 1024 1058 1109 1216 1411 1659 1956 2304 2642 
                        2544 2230 1885 1639 1373 1181 1066 1027 1032 1050 1109 1231 1411 1666 1966 2279 2642 
                        2676 2242 1947 1666 1415 1209 1094 1045 1042 1066 1130 1238 1440 1700 1994 2304 2728 
                        2841 2266 2003 1721 1465 1272 1152 1094 1088 1106 1178 1308 1497 1728 2043 2356 2821 
                        2984 2411 2043 1788 1565 1364 1223 1162 1146 1178 1242 1396 1595 1827 2095 2411 2880 
                        3291 2544 2171 1885 1686 1465 1346 1280 1257 1280 1369 1508 1679 1947 2218 2544 3095 
                        3606 2765 2317 2033 1803 1639 1519 1430 1392 1435 1525 1659 1843 2074 2370 2659 3291 
                        4066 3142 2513 2183 1966 1803 1679 1614 1577 1607 1686 1811 1984 2230 2513 2962 3770 
                        4823 3703 2921 2439 2127 2033 1894 1803 1780 1788 1868 2023 2149 2425 2783 3344 4365 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="12" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        3264x2448_TL84_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4612 3981 3439 3021 2821 2614 2449 2346 2354 2346 2469 2614 2821 3073 3373 3661 4020 
                        4252 3521 3098 2787 2558 2359 2183 2076 2056 2091 2198 2369 2604 2844 3116 3497 3819 
                        3869 3201 2896 2612 2325 2079 1900 1783 1753 1798 1906 2101 2343 2636 2958 3220 3699 
                        3550 3034 2679 2386 2080 1828 1651 1517 1496 1535 1655 1845 2124 2446 2730 3068 3502 
                        3256 2848 2502 2196 1877 1612 1429 1338 1297 1350 1448 1643 1889 2237 2603 2924 3276 
                        3038 2693 2351 2025 1691 1440 1292 1209 1193 1218 1303 1469 1715 2066 2410 2773 3184 
                        2950 2583 2256 1893 1552 1325 1176 1119 1110 1139 1215 1361 1588 1935 2318 2655 3033 
                        2888 2528 2193 1792 1471 1263 1136 1071 1064 1094 1160 1269 1506 1830 2243 2609 2936 
                        2909 2500 2134 1775 1433 1221 1087 1037 1027 1065 1124 1252 1456 1785 2181 2568 2909 
                        2842 2484 2146 1737 1428 1206 1082 1028 1022 1053 1126 1245 1451 1782 2177 2551 2873 
                        2886 2524 2149 1793 1462 1241 1110 1045 1037 1071 1149 1262 1490 1830 2214 2606 2934 
                        3021 2581 2201 1869 1534 1299 1159 1100 1085 1107 1193 1332 1568 1898 2278 2642 2987 
                        3196 2619 2320 1966 1652 1411 1246 1170 1149 1176 1265 1433 1692 2018 2387 2722 3030 
                        3454 2828 2448 2112 1819 1566 1383 1287 1256 1300 1408 1582 1846 2143 2480 2798 3177 
                        3811 3071 2550 2246 1990 1781 1584 1465 1436 1482 1596 1776 2052 2346 2622 2935 3353 
                        4179 3405 2780 2438 2199 1974 1783 1696 1669 1710 1815 2001 2224 2491 2738 3136 3789 
                        4851 3950 3113 2707 2421 2205 2069 1965 1921 1971 2099 2222 2474 2655 3059 3507 4316 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3629 3048 2681 2333 2208 2107 2018 1935 1947 1962 2046 2101 2244 2375 2585 2838 2990 
                        3278 2751 2395 2204 2068 1954 1872 1796 1777 1804 1882 1975 2099 2232 2439 2659 2941 
                        2998 2510 2225 2062 1930 1805 1671 1600 1588 1623 1693 1805 1940 2112 2248 2500 2782 
                        2772 2358 2128 1943 1783 1627 1512 1427 1412 1441 1519 1641 1804 2002 2161 2349 2645 
                        2545 2212 2029 1839 1641 1490 1359 1297 1256 1304 1387 1507 1681 1852 2070 2242 2545 
                        2455 2138 1940 1737 1527 1359 1258 1190 1167 1179 1258 1387 1564 1762 1978 2186 2419 
                        2323 2119 1872 1661 1447 1277 1169 1100 1101 1115 1179 1304 1466 1683 1908 2113 2347 
                        2273 2015 1827 1596 1383 1217 1110 1059 1047 1071 1132 1252 1423 1624 1859 2063 2296 
                        2239 2007 1790 1566 1350 1182 1075 1031 1028 1051 1112 1216 1378 1597 1826 2054 2325 
                        2249 2004 1787 1541 1343 1179 1071 1031 1022 1046 1104 1213 1381 1590 1813 2056 2320 
                        2274 2032 1826 1571 1368 1207 1092 1050 1047 1064 1130 1234 1408 1622 1854 2044 2314 
                        2367 2055 1822 1635 1421 1255 1146 1086 1081 1109 1170 1292 1455 1653 1879 2099 2358 
                        2535 2084 1894 1680 1511 1336 1215 1162 1142 1169 1235 1360 1535 1710 1935 2129 2411 
                        2679 2180 1955 1776 1603 1440 1329 1256 1249 1267 1341 1468 1617 1798 2000 2202 2488 
                        2927 2365 2033 1858 1710 1567 1470 1398 1371 1397 1482 1608 1746 1892 2071 2274 2662 
                        3226 2594 2184 1966 1816 1703 1588 1551 1528 1554 1630 1728 1844 1995 2177 2483 2899 
                        3675 2918 2457 2127 1964 1840 1754 1705 1699 1705 1783 1869 1993 2154 2325 2787 3261 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3727 3055 2624 2333 2181 2066 1992 1948 1944 1923 1987 2090 2174 2366 2562 2871 2966 
                        3302 2747 2429 2198 2059 1916 1820 1765 1743 1762 1852 1946 2053 2211 2420 2656 2962 
                        2990 2527 2233 2076 1907 1774 1660 1574 1563 1583 1677 1782 1937 2094 2270 2499 2789 
                        2803 2341 2142 1955 1782 1597 1482 1416 1401 1422 1496 1634 1812 1988 2155 2382 2697 
                        2573 2256 2043 1850 1652 1474 1356 1273 1249 1288 1369 1494 1658 1865 2096 2264 2583 
                        2462 2172 1979 1753 1537 1360 1241 1167 1156 1181 1260 1383 1562 1764 2001 2186 2462 
                        2363 2121 1894 1675 1459 1283 1162 1098 1082 1113 1178 1290 1473 1709 1955 2140 2406 
                        2344 2070 1862 1604 1394 1221 1114 1058 1052 1074 1136 1244 1424 1655 1886 2095 2377 
                        2309 2038 1838 1599 1356 1189 1085 1029 1024 1056 1109 1221 1390 1613 1881 2080 2341 
                        2336 2040 1830 1580 1363 1190 1074 1029 1033 1049 1116 1223 1389 1600 1862 2088 2344 
                        2314 2046 1851 1605 1381 1220 1110 1061 1047 1073 1129 1241 1416 1632 1880 2095 2381 
                        2400 2094 1887 1667 1442 1277 1160 1102 1078 1120 1178 1302 1465 1686 1927 2139 2391 
                        2583 2143 1943 1725 1523 1359 1238 1177 1156 1183 1259 1376 1561 1779 1991 2205 2465 
                        2744 2246 2002 1823 1634 1466 1349 1281 1257 1281 1373 1491 1641 1856 2025 2261 2546 
                        2976 2390 2085 1915 1753 1587 1463 1418 1392 1424 1485 1621 1749 1941 2097 2356 2681 
                        3249 2634 2235 2001 1871 1723 1622 1558 1538 1558 1640 1751 1881 2037 2242 2540 3007 
                        3751 3040 2474 2169 1989 1847 1752 1708 1714 1728 1809 1891 2005 2182 2410 2756 3341 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3498 2894 2425 2208 2015 1930 1872 1834 1804 1853 1891 1951 2038 2180 2407 2693 2818 
                        2988 2536 2247 2034 1919 1801 1713 1692 1675 1684 1746 1827 1960 2083 2294 2516 2743 
                        2773 2344 2095 1918 1803 1673 1589 1510 1510 1535 1602 1696 1820 1960 2133 2344 2631 
                        2584 2178 1960 1822 1676 1544 1442 1375 1370 1394 1458 1575 1698 1840 2016 2222 2502 
                        2330 2069 1899 1740 1559 1421 1303 1235 1224 1270 1338 1448 1591 1790 1940 2107 2398 
                        2234 2000 1818 1632 1454 1316 1212 1155 1152 1178 1216 1361 1499 1676 1856 2048 2296 
                        2140 1941 1756 1586 1385 1234 1138 1079 1080 1112 1154 1264 1426 1634 1808 2008 2241 
                        2112 1890 1717 1531 1340 1185 1090 1050 1053 1067 1129 1210 1373 1556 1757 1975 2112 
                        2102 1873 1696 1504 1307 1150 1069 1024 1024 1055 1095 1181 1339 1528 1736 1956 2130 
                        2047 1890 1670 1506 1300 1144 1050 1022 1030 1045 1093 1193 1336 1531 1741 1931 2126 
                        2140 1889 1715 1523 1332 1165 1072 1034 1034 1055 1107 1193 1356 1554 1756 1941 2182 
                        2249 1891 1747 1558 1367 1214 1118 1072 1070 1084 1143 1249 1397 1564 1782 1966 2234 
                        2330 1985 1759 1597 1441 1285 1172 1124 1113 1140 1190 1316 1469 1632 1803 1985 2248 
                        2522 2058 1837 1656 1526 1358 1268 1218 1200 1218 1290 1397 1520 1710 1877 2058 2372 
                        2700 2188 1919 1749 1599 1488 1402 1333 1302 1338 1408 1506 1634 1784 1963 2104 2464 
                        2959 2421 2029 1831 1701 1597 1512 1469 1440 1462 1519 1604 1716 1871 2029 2283 2743 
                        3376 2765 2289 1987 1788 1750 1658 1595 1580 1581 1636 1741 1806 1975 2180 2497 3056 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="13" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        3264x2448_HZ_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [8038 6324 5131 4433 3950 3669 3378 3233 3222 3180 3486 3711 3982 4433 5104 6013 6324 
                        7003 5414 4515 3919 3575 3222 2924 2720 2705 2814 2959 3254 3601 4048 4622 5385 6324 
                        6126 4827 4065 3524 3139 2720 2467 2299 2256 2326 2524 2814 3190 3669 4169 4924 5800 
                        5414 4413 3797 3222 2743 2343 2070 1894 1847 1924 2110 2424 2864 3320 3887 4474 5414 
                        4924 4048 3536 2941 2412 2019 1730 1572 1535 1589 1771 2061 2505 3051 3575 4205 5000 
                        4688 3887 3254 2676 2152 1774 1488 1350 1312 1373 1523 1797 2246 2751 3366 3982 4803 
                        4474 3739 3090 2498 1982 1577 1327 1203 1157 1219 1354 1626 2011 2564 3190 3782 4394 
                        4241 3575 2950 2354 1854 1448 1219 1101 1078 1127 1254 1481 1887 2442 3061 3683 4394 
                        4223 3524 2915 2283 1771 1393 1179 1053 1024 1075 1212 1431 1813 2343 2977 3601 4394 
                        4187 3461 2898 2277 1780 1399 1168 1057 1027 1090 1209 1438 1823 2343 2995 3669 4278 
                        4223 3601 2995 2354 1834 1457 1231 1106 1078 1130 1257 1488 1869 2418 3042 3683 4374 
                        4474 3669 3061 2518 1974 1587 1325 1203 1178 1224 1354 1621 2023 2531 3149 3739 4454 
                        4924 3827 3222 2691 2152 1780 1488 1362 1323 1369 1513 1810 2215 2751 3309 3903 4688 
                        5355 4065 3474 2906 2418 2023 1739 1579 1539 1592 1761 2083 2498 2977 3511 4099 4924 
                        6126 4557 3725 3160 2759 2354 2057 1901 1854 1905 2075 2377 2798 3222 3812 4433 5355 
                        7003 5213 4099 3474 3070 2713 2461 2267 2226 2288 2479 2774 3139 3575 4134 4900 6204 
                        8191 5905 4780 3999 3449 3190 2932 2728 2654 2705 2864 3190 3437 4015 4536 5601 6905 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [5584 4232 3492 3059 2785 2556 2430 2382 2348 2355 2466 2620 2871 3081 3477 3971 4433 
                        4733 3724 3070 2739 2495 2335 2183 2075 2050 2086 2206 2342 2533 2794 3093 3628 4169 
                        4087 3236 2776 2502 2260 2080 1914 1839 1792 1823 1919 2101 2309 2556 2880 3274 3862 
                        3708 2993 2595 2329 2086 1859 1701 1585 1553 1600 1697 1884 2101 2375 2661 3037 3644 
                        3366 2813 2466 2155 1872 1654 1495 1402 1355 1405 1516 1704 1927 2195 2488 2851 3339 
                        3139 2678 2329 2006 1743 1489 1329 1246 1219 1259 1359 1527 1792 2050 2361 2687 3151 
                        3015 2540 2195 1910 1613 1379 1221 1133 1115 1150 1254 1407 1647 1959 2272 2595 3081 
                        2931 2480 2144 1823 1530 1300 1143 1078 1051 1095 1190 1333 1570 1863 2206 2517 2972 
                        2900 2451 2107 1762 1487 1254 1109 1029 1024 1066 1146 1298 1527 1807 2150 2502 2941 
                        2931 2451 2101 1754 1495 1259 1111 1048 1025 1056 1146 1298 1530 1835 2150 2502 2972 
                        2962 2502 2150 1819 1519 1300 1152 1072 1067 1089 1186 1331 1556 1855 2195 2556 3037 
                        3059 2533 2200 1910 1597 1377 1221 1139 1126 1160 1250 1419 1651 1932 2254 2603 3151 
                        3326 2661 2278 1977 1697 1497 1329 1244 1228 1254 1344 1527 1762 2055 2335 2713 3224 
                        3597 2785 2409 2107 1859 1647 1492 1393 1375 1402 1522 1680 1888 2172 2458 2813 3407 
                        4028 3048 2533 2260 2030 1835 1687 1582 1553 1600 1697 1867 2060 2329 2579 2962 3692 
                        4529 3477 2813 2466 2218 2015 1888 1807 1773 1811 1914 2060 2236 2480 2785 3326 4210 
                        5301 4087 3224 2748 2423 2278 2189 2030 2050 2096 2133 2272 2502 2687 3175 3775 4814 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [5810 4228 3603 3007 2746 2527 2385 2308 2247 2308 2419 2604 2773 3028 3444 3972 4718 
                        4771 3795 3094 2764 2490 2302 2140 2058 2005 2068 2179 2302 2527 2773 3140 3634 4228 
                        4186 3349 2800 2519 2296 2068 1885 1794 1764 1783 1915 2073 2296 2549 2866 3336 3900 
                        3847 3072 2628 2340 2063 1849 1698 1564 1530 1567 1691 1885 2104 2372 2660 3072 3681 
                        3486 2866 2519 2190 1906 1678 1478 1373 1345 1398 1506 1684 1923 2212 2557 2935 3444 
                        3223 2764 2372 2053 1761 1517 1339 1249 1224 1250 1360 1530 1783 2073 2426 2791 3260 
                        3223 2652 2296 1932 1649 1398 1232 1142 1124 1162 1275 1416 1678 1991 2333 2686 3211 
                        3039 2588 2218 1881 1576 1326 1168 1085 1064 1098 1199 1356 1602 1911 2242 2628 3117 
                        3050 2549 2218 1853 1542 1288 1130 1056 1024 1068 1163 1328 1564 1898 2247 2628 3106 
                        3094 2572 2201 1845 1539 1290 1137 1054 1029 1080 1170 1328 1561 1894 2242 2620 3039 
                        3128 2580 2207 1889 1584 1328 1173 1096 1068 1105 1205 1364 1617 1919 2277 2652 3140 
                        3285 2694 2314 1968 1665 1412 1254 1167 1140 1167 1277 1452 1688 2000 2340 2720 3247 
                        3444 2773 2385 2058 1772 1542 1356 1263 1238 1280 1377 1550 1821 2124 2440 2837 3310 
                        3713 2945 2534 2207 1911 1678 1514 1416 1384 1414 1533 1722 1959 2236 2557 2965 3500 
                        4228 3211 2636 2314 2104 1877 1698 1617 1579 1624 1736 1906 2124 2385 2686 3061 3918 
                        4852 3603 2905 2534 2271 2088 1915 1833 1790 1841 1963 2098 2327 2565 2915 3430 4357 
                        5850 4292 3336 2837 2512 2302 2168 2088 2048 2088 2184 2340 2519 2791 3223 3936 4994 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [5434 3964 3271 2739 2514 2406 2308 2276 2261 2261 2276 2477 2632 2807 3208 3786 4109 
                        4319 3437 2855 2533 2292 2132 2017 1982 1982 2005 2067 2216 2389 2552 2879 3403 3918 
                        3829 2981 2592 2323 2146 2017 1861 1773 1755 1783 1893 2054 2202 2373 2653 3091 3702 
                        3473 2717 2441 2202 1959 1802 1651 1567 1560 1589 1668 1831 2042 2202 2496 2784 3335 
                        3178 2592 2276 2079 1831 1635 1484 1398 1381 1404 1531 1693 1861 2092 2356 2653 3271 
                        3063 2459 2188 1947 1701 1491 1353 1248 1239 1286 1381 1517 1737 1993 2276 2552 2981 
                        2807 2389 2132 1872 1589 1386 1221 1150 1138 1186 1267 1427 1643 1914 2188 2477 2831 
                        2739 2356 2029 1783 1517 1311 1146 1076 1076 1119 1203 1342 1574 1831 2119 2389 2784 
                        2784 2323 2042 1728 1497 1262 1130 1027 1024 1090 1158 1316 1531 1802 2079 2389 2831 
                        2784 2323 2017 1755 1497 1262 1116 1053 1040 1073 1166 1321 1517 1831 2079 2441 2717 
                        2784 2373 2054 1773 1524 1306 1150 1090 1080 1112 1199 1342 1574 1841 2119 2424 2831 
                        2879 2389 2132 1882 1604 1364 1239 1146 1127 1154 1257 1415 1628 1861 2146 2441 2929 
                        3063 2477 2202 1893 1693 1484 1337 1239 1230 1239 1337 1484 1728 1970 2231 2552 3091 
                        3303 2674 2292 2042 1811 1612 1471 1398 1364 1375 1491 1635 1831 2092 2292 2653 3271 
                        3662 2904 2406 2132 1936 1783 1628 1545 1524 1553 1668 1764 1982 2174 2424 2807 3509 
                        4319 3239 2612 2292 2092 1936 1841 1746 1728 1746 1872 1947 2105 2308 2572 3035 3873 
                        4813 3744 2955 2514 2356 2188 2029 1959 1914 1947 2042 2160 2276 2552 2929 3546 4433 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        3264x2448_HZ_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [5627 4722 4020 3611 3320 3158 2958 2859 2859 2813 3052 3194 3347 3611 3999 4490 4427 
                        5096 4172 3645 3287 3093 2854 2634 2475 2469 2560 2665 2882 3115 3396 3732 4150 4602 
                        4587 3819 3367 3031 2783 2469 2277 2143 2110 2169 2330 2555 2829 3156 3453 3896 4343 
                        4149 3569 3212 2830 2483 2171 1950 1802 1764 1831 1988 2246 2593 2916 3289 3618 4149 
                        3844 3332 3044 2628 2221 1903 1658 1521 1490 1538 1697 1942 2306 2726 3077 3462 3903 
                        3712 3244 2839 2423 2008 1694 1444 1323 1290 1346 1478 1716 2095 2491 2937 3323 3803 
                        3578 3151 2721 2283 1866 1520 1300 1190 1148 1206 1327 1567 1894 2343 2810 3187 3514 
                        3412 3030 2613 2163 1756 1403 1201 1095 1076 1121 1235 1435 1787 2244 2711 3121 3535 
                        3404 2992 2587 2102 1680 1352 1164 1050 1024 1071 1196 1389 1720 2157 2642 3058 3542 
                        3369 2933 2567 2093 1686 1356 1151 1052 1025 1084 1191 1394 1726 2153 2653 3110 3442 
                        3377 3034 2638 2151 1727 1404 1206 1094 1070 1118 1231 1434 1760 2210 2679 3103 3498 
                        3542 3062 2670 2280 1842 1515 1286 1179 1159 1200 1314 1548 1887 2291 2747 3120 3527 
                        3844 3150 2774 2404 1981 1678 1426 1318 1284 1325 1450 1706 2039 2458 2848 3213 3660 
                        4104 3288 2939 2552 2189 1875 1639 1503 1469 1515 1659 1930 2261 2615 2971 3315 3774 
                        4587 3606 3085 2718 2446 2137 1899 1772 1734 1776 1915 2158 2481 2771 3157 3508 4010 
                        5096 4017 3309 2914 2656 2403 2217 2063 2032 2082 2233 2457 2715 2999 3338 3776 4514 
                        5769 4409 3745 3258 2899 2746 2567 2413 2355 2392 2508 2746 2889 3271 3554 4182 4834 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3909 3160 2736 2492 2341 2200 2128 2107 2084 2083 2159 2255 2413 2510 2724 2965 3103 
                        3444 2870 2479 2298 2158 2068 1966 1888 1871 1898 1987 2074 2191 2344 2497 2796 3034 
                        3061 2560 2299 2152 2004 1888 1767 1715 1676 1700 1771 1907 2047 2198 2385 2591 2892 
                        2842 2421 2196 2046 1888 1723 1603 1508 1483 1523 1599 1746 1902 2086 2251 2456 2793 
                        2628 2316 2123 1925 1724 1559 1432 1357 1316 1360 1453 1606 1774 1961 2142 2347 2607 
                        2485 2235 2032 1816 1626 1422 1290 1221 1199 1234 1319 1458 1672 1856 2060 2242 2495 
                        2411 2140 1933 1745 1519 1329 1196 1121 1107 1138 1229 1356 1551 1790 2001 2187 2464 
                        2358 2102 1899 1675 1449 1260 1126 1072 1049 1089 1172 1292 1487 1712 1954 2133 2391 
                        2338 2081 1870 1622 1411 1217 1095 1026 1024 1063 1131 1260 1449 1664 1908 2125 2371 
                        2358 2077 1861 1612 1416 1220 1094 1043 1023 1051 1129 1258 1449 1686 1904 2120 2391 
                        2369 2108 1894 1662 1430 1253 1129 1061 1059 1077 1162 1283 1465 1695 1933 2154 2429 
                        2422 2114 1919 1729 1490 1315 1185 1117 1107 1137 1213 1355 1540 1749 1966 2172 2495 
                        2597 2191 1961 1766 1563 1411 1273 1204 1192 1213 1288 1439 1622 1836 2010 2233 2517 
                        2757 2252 2038 1851 1683 1526 1406 1326 1313 1334 1434 1557 1709 1908 2080 2275 2611 
                        3016 2412 2098 1944 1800 1666 1557 1475 1453 1492 1566 1695 1827 2003 2136 2344 2765 
                        3296 2679 2271 2069 1919 1785 1701 1644 1619 1648 1724 1825 1934 2080 2248 2563 3064 
                        3711 3052 2526 2239 2036 1961 1917 1795 1819 1854 1868 1956 2103 2189 2488 2819 3370 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [4067 3157 2823 2450 2308 2175 2088 2041 1994 2041 2118 2242 2331 2467 2698 2966 3303 
                        3472 2925 2498 2319 2154 2039 1928 1873 1830 1882 1963 2039 2186 2326 2535 2800 3077 
                        3135 2650 2319 2167 2036 1877 1740 1673 1650 1662 1768 1882 2036 2192 2374 2640 2921 
                        2948 2485 2223 2055 1868 1714 1600 1488 1461 1491 1593 1747 1905 2083 2251 2485 2821 
                        2721 2359 2168 1957 1755 1581 1416 1329 1306 1353 1443 1587 1771 1976 2201 2416 2689 
                        2552 2307 2069 1859 1643 1448 1300 1224 1204 1225 1320 1461 1663 1877 2116 2329 2581 
                        2578 2235 2022 1766 1553 1347 1207 1130 1116 1150 1249 1365 1580 1820 2055 2263 2568 
                        2445 2193 1965 1729 1492 1285 1151 1079 1062 1092 1181 1314 1517 1756 1986 2227 2508 
                        2459 2164 1968 1706 1463 1250 1115 1053 1024 1065 1148 1289 1484 1748 1994 2232 2504 
                        2489 2180 1950 1696 1457 1250 1120 1049 1027 1074 1153 1287 1478 1741 1986 2220 2445 
                        2502 2174 1944 1726 1492 1280 1149 1084 1060 1093 1181 1314 1523 1754 2005 2235 2511 
                        2601 2248 2019 1782 1553 1348 1217 1144 1121 1144 1240 1386 1575 1811 2041 2270 2571 
                        2689 2283 2053 1839 1632 1453 1299 1222 1202 1239 1319 1461 1677 1898 2100 2335 2584 
                        2846 2382 2144 1938 1730 1555 1427 1348 1321 1346 1444 1596 1774 1964 2163 2398 2682 
                        3166 2541 2183 1990 1866 1704 1567 1508 1477 1514 1602 1730 1883 2051 2225 2422 2934 
                        3531 2777 2345 2126 1964 1849 1725 1668 1634 1675 1768 1858 2013 2152 2353 2643 3170 
                        4095 3205 2614 2311 2111 1982 1898 1847 1817 1847 1912 2014 2117 2274 2525 2939 3496 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3804 2960 2563 2231 2113 2071 2021 2013 2007 2000 1993 2132 2212 2287 2513 2827 2876 
                        3143 2649 2305 2125 1983 1888 1817 1803 1809 1824 1862 1963 2067 2141 2324 2622 2851 
                        2867 2359 2147 1998 1903 1831 1718 1653 1642 1662 1747 1865 1953 2041 2197 2446 2772 
                        2662 2197 2065 1934 1774 1670 1556 1491 1489 1512 1572 1697 1849 1934 2112 2252 2556 
                        2481 2134 1959 1857 1686 1541 1422 1353 1341 1359 1467 1596 1714 1869 2028 2184 2554 
                        2425 2052 1909 1763 1587 1424 1313 1223 1219 1261 1340 1448 1620 1804 1986 2130 2360 
                        2245 2013 1878 1711 1496 1336 1196 1138 1130 1173 1241 1375 1547 1749 1927 2087 2264 
                        2204 1997 1797 1639 1436 1270 1129 1071 1074 1113 1185 1300 1490 1683 1877 2025 2240 
                        2244 1973 1812 1591 1420 1225 1115 1024 1024 1086 1143 1278 1452 1659 1845 2029 2282 
                        2240 1969 1787 1613 1418 1223 1099 1048 1038 1068 1149 1280 1436 1683 1842 2069 2186 
                        2226 2000 1809 1620 1435 1259 1127 1078 1072 1100 1175 1293 1482 1682 1866 2043 2264 
                        2280 1994 1860 1704 1496 1302 1203 1123 1108 1131 1220 1351 1519 1685 1872 2037 2319 
                        2391 2039 1896 1691 1559 1399 1281 1199 1194 1199 1281 1399 1591 1760 1920 2101 2413 
                        2531 2163 1939 1794 1640 1494 1386 1330 1302 1309 1405 1515 1658 1837 1939 2146 2507 
                        2742 2298 1993 1834 1717 1619 1503 1440 1426 1448 1540 1601 1757 1870 2008 2221 2628 
                        3143 2496 2109 1923 1810 1715 1658 1589 1578 1589 1686 1725 1821 1936 2077 2339 2818 
                        3369 2796 2315 2048 1980 1883 1776 1733 1699 1722 1788 1859 1913 2079 2295 2648 3103 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        3264x2448_GRAY_0
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        3264x2448
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        GRAY
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [204 204 204 204 204 204 204 204 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [153 153 153 153 153 153 153 153 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [0.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_GRAY_0
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        GRAY
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [0.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                </cell>
            </tableAll>
        </LSC>
      <RKDM index="1" type="struct" size="[1 1]">            <enable index="1" type="char" size="[1 1]">        [1]    </enable>          <debayer_filter1 index="1" type="double" size="[1 5]">             [2    -6    0    6    -2]          </debayer_filter1>          <debayer_filter2 index="1" type="double" size="[1 5]">             [2    -4    4    -4    2]          </debayer_filter2>          <debayer_gain_offset index="1" type="double" size="[1 1]">             [4]          </debayer_gain_offset>          <ISO index="1" type="double" size="[1 9]">             [50 100 200 400 800 1600 3200 6400 12800]          </ISO>          <sharp_strength index="1" type="double" size="[1 9]">             [4    4    4    4    4    4    4    4    4]          </sharp_strength>          <debayer_hf_offset index="1" type="double" size="[1 9]">             [1    1    1    1    1    1    1    1    1]          </debayer_hf_offset>          <debayer_offset index="1" type="double" size="[1 1]">             [1]          </debayer_offset>          <debayer_clip_en index="1" type="char" size="[1 1]">             [1]          </debayer_clip_en>          <debayer_filter_g_en index="1" type="char" size="[1 1]">             [1]          </debayer_filter_g_en>          <debayer_filter_c_en index="1" type="char" size="[1 1]">             [1]          </debayer_filter_c_en>          <debayer_thed0 index="1" type="char" size="[1 1]">             [3]          </debayer_thed0>          <debayer_thed1 index="1" type="char" size="[1 1]">             [6]          </debayer_thed1>          <debayer_dist_scale index="1" type="char" size="[1 1]">             [8]          </debayer_dist_scale>          <debayer_cnr_strength index="1" type="char" size="[1 1]">             [5]          </debayer_cnr_strength>          <debayer_shift_num index="1" type="char" size="[1 1]">             [2]          </debayer_shift_num>       </RKDM>         <CCM index="1" type="struct" size="[1 1]">
            <enable index="1" type="char" size="[1 1]">
                [1 ]
            </enable>
            <Mode index="1" type="cell" size="[1 2]">
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 6]">
                            normal
                        </Name>
                    <damp_enable index="1" type="char" size="[1 1]">
                            [1 ]
                        </damp_enable>
                    <lumaCCM index="1" type="struct" size="[1 1]">
                        <RGB2Y_para index="1" type="double" size="[1 3]">
                                [38.0000 75.0000 15.0000 ]
                            </RGB2Y_para>
                        <low_bound_pos_bit index="1" type="double" size="[1 1]">
                                [8.0000 ]
                            </low_bound_pos_bit>
                        <y_alpha_curve index="1" type="double" size="[1 17]">
                                [0.0000 64.0000 128.0000 192.0000 256.0000 320.0000 384.0000 448.0000 512.0000 576.0000 640.0000 704.0000 768.0000 832.0000 896.0000 960.0000 1024.0000 ]
                            </y_alpha_curve>
                        <gain_alphaScale_curve index="1" type="struct" size="[1 1]">
                            <gain index="1" type="double" size="[1 9]">
                                    [1.0000 2.0000 4.0000 8.0000 16.0000 32.0000 64.0000 128.0000 256.0000 ]
                                </gain>
                            <scale index="1" type="double" size="[1 9]">
                                    [1.0000 0.8000 0.8000 0.9000 1.0000 1.0000 1.0000 1.0000 1.0000 ]
                                </scale>
                        </gain_alphaScale_curve>
                    </lumaCCM>
                    <aCcmCof index="1" type="cell" size="[1 4]">
                        <illAll index="1" type="cell" size="[1 7]">
                            <cell index="1" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 1]">
                                        A
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.0451 2.2593 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 10]">
                                        A_100 A_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="5" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        CWF
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.3924 1.9792 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        CWF_100 CWF_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="2" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        D50
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.4640 1.5158 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        D50_100 D50_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="3" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        D65
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.7181 1.3638 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        D65_100 D65_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        D75
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.7451 1.2273 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        D75_100 D75_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 2]">
                                        HZ
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [0.8858 2.5046 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 12]">
                                        HZ_100 HZ_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="6" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 4]">
                                        TL84
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.2713 1.9360 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 16]">
                                        TL84_100 TL84_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                        </illAll>
                    </aCcmCof>
                    <matrixAll index="1" type="cell" size="[1 14]">
                        <cell index="1" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                    A_100
                                </name>
                            <illumination index="1" type="char" size="[1 1]">
                                    A
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.8836 -0.6721 -0.2115 
                                    -0.5311 1.8715 -0.3404 
                                    -0.2623 -1.5410 2.8033 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="2" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 4]">
                                    A_74
                                </name>
                            <illumination index="1" type="char" size="[1 1]">
                                    A
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.4515 -0.3108 -0.1408 
                                    -0.3353 1.5728 -0.2375 
                                    -0.1374 -0.9517 2.0891 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="3" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    D50_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D50
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.0588 -0.9972 -0.0616 
                                    -0.3485 1.6909 -0.3424 
                                    -0.1024 -0.7309 1.8333 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="4" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    D50_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D50
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.6275 -0.5799 -0.0476 
                                    -0.1538 1.4101 -0.2563 
                                    0.0272 -0.3811 1.3538 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="5" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    D65_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D65
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.1307 -1.0900 -0.0407 
                                    -0.2839 1.6585 -0.3746 
                                    -0.0753 -0.6362 1.7115 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="6" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    D65_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D65
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.6969 -0.6578 -0.0391 
                                    -0.0898 1.3768 -0.2871 
                                    0.0635 -0.3203 1.2568 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="7" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    D75_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D75
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.2421 -1.1800 -0.0621 
                                    -0.2945 1.6970 -0.4025 
                                    -0.0862 -0.5438 1.6301 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="8" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    D75_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D75
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.7861 -0.7228 -0.0632 
                                    -0.0909 1.4069 -0.3160 
                                    0.0621 -0.2503 1.1882 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="9" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    CWF_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    CWF
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.2845 -1.2281 -0.0564 
                                    -0.5021 1.6439 -0.1418 
                                    -0.1168 -0.9403 2.0571 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="10" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    CWF_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    CWF
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.7882 -0.7821 -0.0061 
                                    -0.2738 1.3440 -0.0702 
                                    0.0101 -0.5673 1.5572 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="11" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 8]">
                                    TL84_100
                                </name>
                            <illumination index="1" type="char" size="[1 4]">
                                    TL84
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.9625 -0.8631 -0.0994 
                                    -0.4494 1.6586 -0.2092 
                                    -0.1312 -0.9834 2.1146 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="12" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    TL84_74
                                </name>
                            <illumination index="1" type="char" size="[1 4]">
                                    TL84
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.5324 -0.4827 -0.0497 
                                    -0.2523 1.3843 -0.1320 
                                    -0.0178 -0.5700 1.5878 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="13" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    HZ_100
                                </name>
                            <illumination index="1" type="char" size="[1 2]">
                                    HZ
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.7851 -0.2621 -0.5231 
                                    -0.6037 2.0568 -0.4533 
                                    -0.5262 -2.0290 3.5376 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="14" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                    HZ_74
                                </name>
                            <illumination index="1" type="char" size="[1 2]">
                                    HZ
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.3520 0.0381 -0.3908 
                                    -0.4154 1.7557 -0.3409 
                                    -0.3592 -1.2672 2.6129 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                    </matrixAll>
                </cell>
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 3]">
                                hdr
                            </Name>
                    <damp_enable index="1" type="char" size="[1 1]">
                                [1 ]
                            </damp_enable>
                    <lumaCCM index="1" type="struct" size="[1 1]">
                        <RGB2Y_para index="1" type="double" size="[1 3]">
                                    [38.0000 75.0000 15.0000 ]
                                </RGB2Y_para>
                        <low_bound_pos_bit index="1" type="double" size="[1 1]">
                                    [8.0000 ]
                                </low_bound_pos_bit>
                        <y_alpha_curve index="1" type="double" size="[1 17]">
                                    [0.0000 64.0000 128.0000 192.0000 256.0000 320.0000 384.0000 448.0000 512.0000 576.0000 640.0000 704.0000 768.0000 832.0000 896.0000 960.0000 1024.0000 ]
                                </y_alpha_curve>
                        <gain_alphaScale_curve index="1" type="struct" size="[1 1]">
                            <gain index="1" type="double" size="[1 9]">
                                        [1.0000 2.0000 4.0000 8.0000 16.0000 32.0000 64.0000 128.0000 256.0000 ]
                                    </gain>
                            <scale index="1" type="double" size="[1 9]">
                                        [1.0000 0.8000 0.8000 0.9000 1.0000 1.0000 1.0000 1.0000 1.0000 ]
                                    </scale>
                        </gain_alphaScale_curve>
                    </lumaCCM>
                    <aCcmCof index="1" type="cell" size="[1 4]">
                        <illAll index="1" type="cell" size="[1 7]">
                            <cell index="1" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 1]">
                                            A
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.3271 3.3148 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 10]">
                                            A_100 A_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="5" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            CWF
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.8823 2.8817 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            CWF_100 CWF_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="2" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            D50
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.9051 1.9785 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            D50_100 D50_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="3" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            D65
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [2.2062 1.7040 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            D65_100 D65_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            D75
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [2.2996 1.5809 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            D75_100 D75_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 2]">
                                            HZ
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.1183 3.6332 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 12]">
                                            HZ_100 HZ_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="6" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 4]">
                                            TL84
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.5274 2.6033 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 16]">
                                            TL84_100 TL84_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                        </illAll>
                    </aCcmCof>
                    <matrixAll index="1" type="cell" size="[1 14]">
                        <cell index="1" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                        A_100
                                    </name>
                            <illumination index="1" type="char" size="[1 1]">
                                        A
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.2656 -0.2498 -0.0158 
                                        -0.4621 1.4010 0.0611 
                                        -0.0438 -1.0811 2.1249 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="2" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 4]">
                                        A_74
                                    </name>
                            <illumination index="1" type="char" size="[1 1]">
                                        A
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [0.9632 -0.0233 0.0600 
                                        -0.3153 1.1992 0.1160 
                                        -0.0064 -0.6371 1.6435 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="3" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        D50_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D50
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.3481 -0.2895 -0.0587 
                                        -0.3168 1.4265 -0.1097 
                                        0.0110 -0.6122 1.6012 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="4" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        D50_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D50
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.0545 -0.0378 -0.0167 
                                        -0.1776 1.2328 -0.0552 
                                        0.0644 -0.2753 1.2110 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="5" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        D65_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D65
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.5216 -0.4032 -0.1184 
                                        -0.3214 1.5514 -0.2300 
                                        0.0068 -0.4594 1.4525 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="6" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        D65_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D65
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1955 -0.1072 -0.0883 
                                        -0.1682 1.3399 -0.1717 
                                        0.0739 -0.1475 1.0736 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="7" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        D75_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D75
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.4704 -0.3814 -0.0890 
                                        -0.2778 1.4837 -0.2059 
                                        -0.0115 -0.4119 1.4234 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="8" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        D75_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D75
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1598 -0.0983 -0.0615 
                                        -0.1339 1.2826 -0.1487 
                                        0.0625 -0.1196 1.0571 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="9" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        CWF_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        CWF
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.4207 -0.4177 -0.0030 
                                        -0.3712 1.3693 0.0019 
                                        0.0688 -0.5709 1.5021 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="10" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        CWF_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        CWF
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1073 -0.1501 0.0428 
                                        -0.2188 1.1730 0.0458 
                                        0.1061 -0.2623 1.1561 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="11" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 8]">
                                        TL84_100
                                    </name>
                            <illumination index="1" type="char" size="[1 4]">
                                        TL84
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.2081 -0.1987 -0.0094 
                                        -0.4071 1.4505 -0.0435 
                                        0.0527 -0.5564 1.5037 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="12" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        TL84_74
                                    </name>
                            <illumination index="1" type="char" size="[1 4]">
                                        TL84
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [0.9275 0.0417 0.0307 
                                        -0.2678 1.2629 0.0048 
                                        0.0718 -0.2217 1.1499 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="13" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        HZ_100
                                    </name>
                            <illumination index="1" type="char" size="[1 2]">
                                        HZ
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.5217 -0.3782 -0.1435 
                                        -0.6794 1.5774 0.1020 
                                        -0.7287 -0.3560 2.0847 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="14" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                        HZ_74
                                    </name>
                            <illumination index="1" type="char" size="[1 2]">
                                        HZ
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1191 -0.0797 -0.0394 
                                        -0.5095 1.3681 0.1414 
                                        -0.5470 -0.0619 1.6089 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                    </matrixAll>
                </cell>
            </Mode>
        </CCM>
      <UVNR index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">             [0]          </Enable>    <Version index="1" type="char" size="[1 1]">       V1    </Version>    <Mode index="1" type="cell" size="[1 3]">      <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   normal               </Name>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>      </cell>      <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>        </cell>      </Setting>         </cell>      <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   hdr               </Name>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>      </cell>      <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>        </cell>      </Setting>         </cell>      <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   gray               </Name>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>      </cell>      <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>        </cell>      </Setting>         </cell>    </Mode>        </UVNR>       <GAMMA index="1" type="struct" size="[1 1]">    <gamma_en index="1" type="char" size="[1 1]">        [1]    </gamma_en>    <gamma_out_segnum index="1" type="char" size="[1 1]">        [0]    </gamma_out_segnum>    <gamma_out_offset index="1" type="char" size="[1 1]">        [0]    </gamma_out_offset>          <curve_normal index="1" type="double" size="[1 45]">             [0    6    11    17    22    28    33    39    44    55    66    77    88    109    130    150    170    210    248    286    323    393    460    525    586    702    809    909    1002    1172    1325    1462    1588    1811    2004    2174    2327    2590    2813    3006    3177    3467    3708    3915    4095]          </curve_normal>          <curve_hdr index="1" type="double" size="[1 45]">             [0    6    11    17    22    28    33    39    44    55    66    77    88    109    130    150    170    210    248    286    323    393    460    525    586    702    809    909    1002    1172    1325    1462    1588    1811    2004    2174    2327    2590    2813    3006    3177    3467    3708    3915    4095]          </curve_hdr>          <curve_night index="1" type="double" size="[1 45]">             [0    6    11    17    22    28    33    39    44    55    66    77    88    109    130    150    170    210    248    286    323    393    460    525    586    702    809    909    1002    1172    1325    1462    1588    1811    2004    2174    2327    2590    2813    3006    3177    3467    3708    3915    4095]          </curve_night>       </GAMMA>       <YNR index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">            [0]        </Enable>        <Version index="1" type="char" size="[1 1]">            V1        </Version>        <Mode index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   normal               </Name>         <Setting index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>       </YNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>        </YNR_ISO>       </cell>      </Setting>    </cell>        <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   hdr               </Name>         <Setting index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>       </YNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>        </YNR_ISO>       </cell>      </Setting>    </cell>        <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   gray               </Name>         <Setting index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>       </YNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>        </YNR_ISO>       </cell>      </Setting>    </cell>         </Mode>       </YNR>       <GIC index="1" type="struct" size="[1 1]">
   <CalibParaV20 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [1]    </enable>    <edge_en     index="1" type="char" size="[1 1]">        [0]    </edge_en>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>    <noise_cut_en     index="1" type="char" size="[1 1]">        [0]    </noise_cut_en>
         <Setting index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <GValueLimitLo index="1" type="double" size="[1 9]">                [1280 1280 1280 1280 1280 1280 1280 1280 1280]             </GValueLimitLo>             <GValueLimitHi     index="1" type="double" size="[1 9]">                [1760 1760 1760 1760 1760 1760 1760 1760 1760]             </GValueLimitHi>             <textureStrength  index="1" type="double" size="[1 9]">                [0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25]             </textureStrength>             <ScaleLo  index="1" type="double" size="[1 9]">                [3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0]             </ScaleLo>             <ScaleHi  index="1" type="double" size="[1 9]">                [5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0]             </ScaleHi>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <noise_coea index="1" type="double" size="[1 9]">                [199 199 199 199 199 199 199 199 199]             </noise_coea>             <noise_coeb index="1" type="double" size="[1 9]">                [957 957 957 957 957 957 957 957 957]             </noise_coeb>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </Setting>
   </cell>    </CalibParaV20>
   <CalibParaV21 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [0]    </enable>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>          <SettingV21 index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <NoiseScale index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseScale>             <NoiseBase index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseBase>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </SettingV21>
   </cell>    </CalibParaV21>
   <TuningParaV20 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [1]    </enable>    <edge_en     index="1" type="char" size="[1 1]">        [0]    </edge_en>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>    <noise_cut_en     index="1" type="char" size="[1 1]">        [0]    </noise_cut_en>
         <Setting index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <GValueLimitLo index="1" type="double" size="[1 9]">                [1280 1280 1280 1280 1280 1280 1280 1280 1280]             </GValueLimitLo>             <GValueLimitHi     index="1" type="double" size="[1 9]">                [1760 1760 1760 1760 1760 1760 1760 1760 1760]             </GValueLimitHi>             <textureStrength  index="1" type="double" size="[1 9]">                [0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25]             </textureStrength>             <ScaleLo  index="1" type="double" size="[1 9]">                [3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0]             </ScaleLo>             <ScaleHi  index="1" type="double" size="[1 9]">                [5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0]             </ScaleHi>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <noise_coea index="1" type="double" size="[1 9]">                [199 199 199 199 199 199 199 199 199]             </noise_coea>             <noise_coeb index="1" type="double" size="[1 9]">                [957 957 957 957 957 957 957 957 957]             </noise_coeb>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </Setting>
   </cell>    </TuningParaV20>    <TuningParaV21 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [1]    </enable>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>          <SettingV21 index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <NoiseScale index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseScale>             <NoiseBase index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseBase>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </SettingV21>
   </cell>    </TuningParaV21>
      </GIC>       <MFNR index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">        [0]    </Enable>    <Version index="1" type="char" size="[1 1]">        V1    </Version>    <local_gain_en index="1" type="double" size="[1 1]">        [1]    </local_gain_en>    <mode_3to1 index="1" type="double" size="[1 1]">        [1]    </mode_3to1>    <max_level index="1" type="char" size="[1 1]">        [4]    </max_level>    <max_level_uv index="1" type="char" size="[1 1]">        [3]    </max_level_uv>    <back_ref_num index="1" type="char" size="[1 1]">        [1]    </back_ref_num>          <awb_uv_ratio index="1" type="cell" size="[1 4]">        <cell index="1" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 1]">                    A                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [1.00000    1.00000]                 </ratio>        </cell>        <cell index="2" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 3]">                    D65                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [1.00000    1.00000]                 </ratio>        </cell>        <cell index="3" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 7]">                    TL84                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [0.90000    0.70000]                 </ratio>        </cell>        <cell index="4" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 6]">                    CWF                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [1.00000    1.00000]                 </ratio>        </cell>          </awb_uv_ratio>    <Mode index="1" type="cell" size="[1 3]">       <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                 normal              </Name>              <Dynamic index="1" type="struct" size="[1 1]">                      <Enable index="1" type="double" size="[1 1]">               [0]           </Enable>              <LowTh_iso index="1" type="double" size="[1 1]">                  [50]                  </LowTh_iso>          <LowTh_time index="1" type="double" size="[1 1]">                  [0.01]                  </LowTh_time>              <HighTh_iso index="1" type="double" size="[1 1]">                  [50]                  </HighTh_iso>          <HighTh_time index="1" type="double" size="[1 1]">                  [0.025]                  </HighTh_time>              </Dynamic>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>    </Setting>         </cell>       <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                 hdr              </Name>       <Dynamic index="1" type="struct" size="[1 1]">                      <Enable index="1" type="double" size="[1 1]">               [0]           </Enable>              <LowTh_iso index="1" type="double" size="[1 1]">                  [50]                  </LowTh_iso>          <LowTh_time index="1" type="double" size="[1 1]">                  [0.01]                  </LowTh_time>              <HighTh_iso index="1" type="double" size="[1 1]">                  [50]                  </HighTh_iso>          <HighTh_time index="1" type="double" size="[1 1]">                  [0.025]                  </HighTh_time>              </Dynamic>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>    </Setting>         </cell>       <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                 gray              </Name>    <Dynamic index="1" type="struct" size="[1 1]">                      <Enable index="1" type="double" size="[1 1]">               [0]           </Enable>              <LowTh_iso index="1" type="double" size="[1 1]">                  [50]                  </LowTh_iso>          <LowTh_time index="1" type="double" size="[1 1]">                  [0.01]                  </LowTh_time>              <HighTh_iso index="1" type="double" size="[1 1]">                  [50]                  </HighTh_iso>          <HighTh_time index="1" type="double" size="[1 1]">                  [0.025]                  </HighTh_time>              </Dynamic>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>    </Setting>         </cell>        </Mode>       </MFNR>       <SHARP index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">         [0]    </Enable>    <Version index="1" type="char" size="[1 1]">         V1    </Version>          <luma_point index="1" type="double" size="[1 8]">         [0    16    32    64    96    160    224    256]          </luma_point>    <Mode index="1" type="cell" size="[1 3]">     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 normal            </Name>    <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>     </Setting>    </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 hdr            </Name>      <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>     </Setting>    </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 gray            </Name>      <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>     </Setting>    </cell>        </Mode>       </SHARP>       <EDGEFILTER index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">         [0]    </Enable>    <Version index="1" type="char" size="[1 1]">         V1    </Version>          <luma_point index="1" type="double" size="[1 8]">         [0    16    32    64    96    160    224    256]          </luma_point>    <Mode index="1" type="cell" size="[1 3]">     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 normal            </Name>             <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>        <cell index="2" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>      </Setting>     </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 hdr            </Name>             <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>        <cell index="2" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>      </Setting>     </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 gray            </Name>             <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>        <cell index="2" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>      </Setting>     </cell>    </Mode>       </EDGEFILTER>         <DEHAZE index="1" type="struct" size="[1 1]">
   <CalibParaV20 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [1]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </dc_thed>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <air_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </air_thed>                     <air_weitcur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </air_weitcur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>                 </Dehaze_Setting>                 <Enhance_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1 ]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>                 </Enhance_Setting>                 <Hist_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [1 ]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_channel index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]                     </hist_channel>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_Setting>
       </cell>
   </CalibParaV20>    <CalibParaV21 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_V21_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [0]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>
       <air_lc_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </air_lc_en>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <bf_weight index="1" type="double" size="[1 9]">                [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </bf_weight>                     <range_sigma index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </range_sigma>
                  <space_sigma_pre index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_pre>
       <space_sigma_cur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_cur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>
       <pre_wet index="1" type="double" size="[1 1]">                         [0.0100 ]                     </pre_wet>                 </Dehaze_V21_Setting>                 <Enhance_V21_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1 ]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>
       <enhance_chroma index="1" type="double" size="[1 9]">                [1.5 1.4 1.3 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_chroma>
       <enh_curve index="1" type="double" size="[1 17]">                [0 64 128 192 256 320 384 448 512 576 640 704 768 832 896 960 1023]                     </enh_curve>                 </Enhance_V21_Setting>                 <Hist_V21_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [0]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_V21_Setting>
       </cell>
   </CalibParaV21>    <TuningParaV20 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [1]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </dc_thed>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <air_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </air_thed>                     <air_weitcur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </air_weitcur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>                 </Dehaze_Setting>                 <Enhance_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1 ]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>                 </Enhance_Setting>                 <Hist_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [1 ]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_channel index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]                     </hist_channel>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_Setting>
       </cell>
   </TuningParaV20>    <TuningParaV21 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_V21_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [0]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>
       <air_lc_en index="1" type="double" size="[1 9]">                         [0 0 0 0 0 0 0 0 0 ]                     </air_lc_en>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <bf_weight index="1" type="double" size="[1 9]">                [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </bf_weight>                     <range_sigma index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </range_sigma>
                  <space_sigma_pre index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_pre>
       <space_sigma_cur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_cur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>
       <pre_wet index="1" type="double" size="[1 1]">                         [0.0100 ]                     </pre_wet>                 </Dehaze_V21_Setting>                 <Enhance_V21_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>
       <enhance_chroma index="1" type="double" size="[1 9]">                [1.5 1.4 1.3 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_chroma>
       <enh_curve index="1" type="double" size="[1 17]">                [0 64 128 192 256 320 384 448 512 576 640 704 768 832 896 960 1023]                     </enh_curve>                 </Enhance_V21_Setting>                 <Hist_V21_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [0]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_V21_Setting>
       </cell>
   </TuningParaV21>         </DEHAZE>       <LUT3D  index="1" type="struct" size="[1 1]">          <enable index="1" type="double" size="[1 1]">             [0]          </enable>          <look_up_table_r index="1" type="double" size="[1 729]">             [  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_r>          <look_up_table_g index="1" type="double" size="[1 729]">             [  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_g>          <look_up_table_b index="1" type="double" size="[1 729]">             [  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 ]          </look_up_table_b>       </LUT3D>       <LDCH index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [0]           </enable>           <mesh_file index="1" type="char" size="[1 1]">                LDCH_mesh_2688_1520_os04a10_4IR           </mesh_file>           <correct_level index="1" type="int" size="[1 1]">                [255]           </correct_level>           <correct_level_max index="1" type="int" size="[1 1]">                [255]           </correct_level_max>     <light_center index="1" type="double" size="[1 2]">          [1351.1178239999999277 739.4860800000000153]     </light_center>     <distortion_coeff index="1" type="double" size="[1 4]">          [-1830.2636074851754983 0.0004237951284061 -0.0000002507674855 0.0000000001272470]     </distortion_coeff>       </LDCH>       <FEC index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [0]           </enable>           <mesh_file index="1" type="char" size="[1 1]">                FEC_mesh_2688_1520_os04a10_4IR           </mesh_file>           <correct_level index="1" type="int" size="[1 1]">                [255]           </correct_level>     <light_center index="1" type="double" size="[1 2]">          [1351.1178239999999277 739.4860800000000153]     </light_center>     <distortion_coeff index="1" type="double" size="[1 4]">          [-1830.2636074851754983 0.0004237951284061 -0.0000002507674855 0.0000000001272470]     </distortion_coeff>       </FEC>       <ORB index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [0]           </enable>       </ORB>       <CPSL index="1" type="struct" size="[1 1]">           <enable index="1" type="char" size="[1 1]">                [1]           </enable>           <mode index="1" type="int" size="[1 1]">                [0]           </mode>           <force_gray index="1" type="char" size="[1 1]">                [1]           </force_gray>           <light_src index="1" type="int" size="[1 1]">                [0]           </light_src>           <auto_adjust_sens index="1" type="double" size="[1 1]">                [50]           </auto_adjust_sens>           <auto_on2off_th index="1" type="int" size="[1 1]">                [3000]           </auto_on2off_th>           <auto_off2on_th index="1" type="int" size="[1 1]">                [100]           </auto_off2on_th>           <auto_sw_interval index="1" type="int" size="[1 1]">                [60]           </auto_sw_interval>           <manual_on index="1" type="char" size="[1 1]">                [0]           </manual_on>           <manual_strength index="1" type="double" size="[1 1]">                [100]           </manual_strength>       </CPSL>       <LUMADETECT index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [1]           </enable>           <fixed_times index="1" type="int" size="[1 1]">                [0]           </fixed_times>           <threshold index="1" type="double" size="[1 1]">                [0.0002]           </threshold>           <threshold_level2 index="1" type="double" size="[1 1]">                [1000]           </threshold_level2>        </LUMADETECT>       <COLOR_AS_GREY index="1" type="struct" size="[1 1]">           <enable index="1" type="int" size="[1 1]">                [0]           </enable>        </COLOR_AS_GREY>       <BAYERNR_V2 index="1" type="cell" size="[1 3]">      <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal              </ModeName>         <Bayernr2D index="1" type="struct" size="[1 1]">          <Enable index="1" type="double" size="[1 1]">                     [1]                   </Enable>            <Setting index="1" type="cell" size="[1 2]">           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 15.0  15.0  15.0  15.0  15.0  0.8  0.7  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 1 1 1 1 1 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 4.0  4.0  4.0  4.0  4.0  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>               </Setting>                  </Bayernr2D>        <Bayernr3D index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">                   [0]              </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.5  0.5  0.5  0.5  0.5  0.1  0.1  0.5  0.5  0.6  0.6  0.7  0.7]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.95 0.95 0.95 0.95 0.95 0.9 0.5 0.5 0.5 0.5 0.5 0.5 0.5 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [ 0.8 0.8 0.8 0.8 0.8 0.9 0.5 0.5 0.5 0.5 0.5 0.5 0.5 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>               </cell>         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                  <filter_strength index="1" type="double" size="[1 13]">                 [ 0.1  0.1  0.1  0.1  0.1  0.1  0.1  0.5  0.5  0.6  0.6  0.7  0.7]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.9 0.9 0.9 0.9 0.9 0.9 0.5 0.5 0.5 0.5 0.5 0.5 0.5 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [ 0.9 0.9 0.9 0.9 0.9 0.9 0.5 0.5 0.5 0.5 0.5 0.5 0.5 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>               </cell>              </Setting>                  </Bayernr3D>         </cell>      <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr              </ModeName>         <Bayernr2D index="1" type="struct" size="[1 1]">          <Enable index="1" type="double" size="[1 1]">                     [1]                   </Enable>            <Setting index="1" type="cell" size="[1 2]">           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>               </Setting>                  </Bayernr2D>        <Bayernr3D index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">                   [1]              </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>               </cell>         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>               </cell>              </Setting>                  </Bayernr3D>         </cell>      <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray              </ModeName>         <Bayernr2D index="1" type="struct" size="[1 1]">          <Enable index="1" type="double" size="[1 1]">                     [1]                   </Enable>            <Setting index="1" type="cell" size="[1 2]">           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>               </Setting>                  </Bayernr2D>        <Bayernr3D index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">                   [1]              </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>               </cell>         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [329 292 258 227 176 141 124 121 127 133 137 135 127 113 94  75         747 638 535 436 251 141 120 135 114 187 226 237 222 181 112 100        835 721 614 514 336 194 120 147 207 256 284 288 267 221 148 120        789 703 625 553 435 354 311 301 308 318 321 312 288 249 198 147        761 707 658 614 542 490 454 430 414 401 386 366 341 309 273 238            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384         768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384]                 </sigma>               </cell>              </Setting>                  </Bayernr3D>         </cell>    </BAYERNR_V2>             <YNR_V2 index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [0]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1.05  1.1  1.1  1.2  1.4  1.6  1.8  2.0  2.2  2.4  2.8  3.0  3.5  4.0              1  1  1  1.05  1.1  1.1  1.2  1.4  1.6  1.8  2.0  2.2  2.4  2.8  3.0  3.5  4.0             1  1  1  1.05  1.1  1.1  1.2  1.4  1.6  1.8  2.0  2.2  2.4  2.8  3.0  3.5  4.0              1  1  1  1.05  1.1  1.1  1.2  1.4  1.6  1.8  2.0  2.2  2.4  2.8  3.0  3.5  4.0              1  1  1  1  1  1.05  1.1  1.1  1.2  1.4  1.6  1.8  2.0  2.2  2.4  2.8  3.5              1  1  1  1  1  1.05  1.1  1.1  1.2  1.4  1.6  1.8  2.0  2.2  2.4  2.8  3.5               1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-3.7933841214586347e-013 4.2013918709044148e-009 -1.6572787228691377e-005 2.2777791791810387e-002 1.7773076815781678e+001               -8.5186423105040773e-013 8.4477041830870539e-009 -3.1173002077312939e-005 4.3173247560233108e-002 2.0472911876000580e+001               -1.0177398103526379e-012 1.0775811813952492e-008 -4.2210120307167864e-005 5.9713484908385794e-002 2.8799886459855770e+001               -1.3281599257565151e-012 1.2982948366055560e-008 -4.5349271749470232e-005 5.1117868030289060e-002 5.5017720782343531e+001               -1.7622488685427525e-012 1.6438906172332938e-008 -5.4805014667702601e-005 5.8605523300528262e-002 7.2320825446335220e+001             -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.2645994 0.2668605 0.2594827 0.2549453 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071                       0.1863594 0.1769765 0.1668465 0.1560948 0.1577329 0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [20.0 20.0 20.0 20.0 20.0 5.0 0.95 1 1.1 1.1 1.1 1.1 1.1            20.0 20.0 20.0 20.0 20.0 5.0 0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.10  0.10  0.10  0.10  0.10  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.5  0.2  0.2  0.2  0.2  0.2  0.2  0.2]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [20  20  20  20  20  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>            <sigma_curve index="1" type="double" size="[13 5]">                [-3.7933841214586347e-013 4.2013918709044148e-009 -1.6572787228691377e-005 2.2777791791810387e-002 1.7773076815781678e+001               -8.5186423105040773e-013 8.4477041830870539e-009 -3.1173002077312939e-005 4.3173247560233108e-002 2.0472911876000580e+001               -1.0177398103526379e-012 1.0775811813952492e-008 -4.2210120307167864e-005 5.9713484908385794e-002 2.8799886459855770e+001               -1.3281599257565151e-012 1.2982948366055560e-008 -4.5349271749470232e-005 5.1117868030289060e-002 5.5017720782343531e+001               -1.7622488685427525e-012 1.6438906172332938e-008 -5.4805014667702601e-005 5.8605523300528262e-002 7.2320825446335220e+001             -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.2645994 0.2668605 0.2594827 0.2549453 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071                       0.1863594 0.1769765 0.1668465 0.1560948 0.1577329 0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5             0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-3.7933841214586347e-013 4.2013918709044148e-009 -1.6572787228691377e-005 2.2777791791810387e-002 1.7773076815781678e+001               -8.5186423105040773e-013 8.4477041830870539e-009 -3.1173002077312939e-005 4.3173247560233108e-002 2.0472911876000580e+001               -1.0177398103526379e-012 1.0775811813952492e-008 -4.2210120307167864e-005 5.9713484908385794e-002 2.8799886459855770e+001               -1.3281599257565151e-012 1.2982948366055560e-008 -4.5349271749470232e-005 5.1117868030289060e-002 5.5017720782343531e+001               -1.7622488685427525e-012 1.6438906172332938e-008 -5.4805014667702601e-005 5.8605523300528262e-002 7.2320825446335220e+001             -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.2645994 0.2668605 0.2594827 0.2549453 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071 0.2672071                       0.1863594 0.1769765 0.1668465 0.1560948 0.1577329 0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329  0.1577329 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.6 0.65 0.70 0.75 0.8 0.9 0.95 1 1.1 1.1 1.1 1.1 1.1            0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5             0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.6 0.65 0.70 0.75 0.8 0.9 0.95 1 1.1 1.1 1.1 1.1 1.1            0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5             0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>     </Setting>          </cell>        </YNR_V2>             <CNR_V1 index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [0]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [10.0  10.0  10.0  10.0  10.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.3  0.3  0.3  0.3  0.3  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0   10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [30.0  30.0  30.0  30.0  30.0  4.0  4.0  4.0  4.0  4.0  4.0  4.0  4.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  4.0  4.0  4.0  4.0  4.0  4.0  4.0  4.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [0.3  0.3   0.3   0.3   0.3   1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>     </Setting>          </cell>        </CNR_V1>           <Sharp_V3 index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [0]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.50 0.50 0.50 0.50 0.50 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.5 0.5 0.5 0.5 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [10.0 10.0 10.0 10.0 10.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [5.00 5.00 5.00 5.00 5.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>     </Setting>          </cell>        </Sharp_V3>    </sensor>    <expset index="1" type="struct" size="[1 1]">      <Gain2Reg index="1" type="struct" size="[1 1]">         <IsLinear index="1" type="double" size="[1 1]">             [1]         </IsLinear>         <Linear index="1" type="double" size="[1 7]">            [1 16 128 0 1 128 2047]         </Linear>         <NonLinear index="1" type="char" size="[1 10]">            DB_MODE         </NonLinear>      </Gain2Reg>      <Time2Reg index="1" type="double" size="[1 4]">         [0 0 1 0.5]      </Time2Reg>      <CISGainSet index="1" type="struct" size="[1 1]">             <CISAgainRange index="1" type="double" size="[1 2]">               [1 16]          </CISAgainRange>    <CISExtraAgainRange index="1" type="double" size="[1 2]">             [1 1]          </CISExtraAgainRange>          <CISDgainRange index="1" type="double" size="[1 2]">             [1 1]          </CISDgainRange>          <CISIspDgainRange index="1" type="double" size="[1 2]">             [1 1]          </CISIspDgainRange>           <CISHdrGainIndSetEn index="1" type="double" size="[1 1]">             [1]          </CISHdrGainIndSetEn>      </CISGainSet>      <CISTimeSet index="1" type="struct" size="[1 1]">           <Normal index="1" type="struct" size="[1 1]">              <CISTimeRegMaxFac index="1" type="double" size="[1 2]">                 [1.0000 4.0000 ]                 </CISTimeRegMaxFac>              <CISTimeRegMin index="1" type="double" size="[1 1]">                 [4]              </CISTimeRegMin>              <CISTimeRegOdevity index="1" type="double" size="[1 2]">                 [1 0]              </CISTimeRegOdevity>                  </Normal>           <Hdr index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">            <name index="1" type="char" size="[1 8]">          2frame            </name>            <CISTimeRegUnEqualEn index="1" type="double" size="[1 1]">               [1]            </CISTimeRegUnEqualEn>                  <CISTimeRegSumFac index="1" type="double" size="[1 2]">                [1.0000 4.0000 ]            </CISTimeRegSumFac>             <CISTimeRegMax index="1" type="double" size="[1 3]">                [0 0 0]             </CISTimeRegMax>             <CISTimeRegMin index="1" type="double" size="[1 1]">                [4]             </CISTimeRegMin>             <CISTimeRegOdevity index="1" type="double" size="[1 2]">               [1 0]             </CISTimeRegOdevity>          </cell>          <cell index="1" type="struct" size="[1 1]">            <name index="1" type="char" size="[1 8]">          3frame            </name>            <CISTimeRegUnEqualEn index="1" type="double" size="[1 1]">               [1]            </CISTimeRegUnEqualEn>                  <CISTimeRegSumFac index="1" type="double" size="[1 2]">                [1.0000 4.0000 ]            </CISTimeRegSumFac>             <CISTimeRegMax index="1" type="double" size="[1 3]">                [0 0 0]             </CISTimeRegMax>             <CISTimeRegMin index="1" type="double" size="[1 1]">                [4]             </CISTimeRegMin>             <CISTimeRegOdevity index="1" type="double" size="[1 2]">                [1 0]             </CISTimeRegOdevity>            </cell>           </Hdr>       </CISTimeSet>             <CISMinFps index="1" type="double" size="[1 1]">    [10]       </CISMinFps>          <CISHdrSet index="1" type="struct" size="[1 1]">         <enable index="1" type="double" size="[1 1]">            [0]         </enable>         <support_mode index="1" type="char" size="[1 1]">            MODE_2_LINE         </support_mode>         <line_mode index="1" type="char" size="[1 1]">            STAGGER         </line_mode>          </CISHdrSet>    <CISDcgSet index="1" type="struct" size="[1 1]">      <Normal index="1" type="struct" size="[1 1]">                <support_en index="1" type="double" size="[1 1]">           [0]        </support_en>        <dcg_optype index="1" type="char" size="[1 8]">           AUTO        </dcg_optype>        <dcgmode_init index="1" type="double" size="[1 1]">           [0]        </dcgmode_init>        <dcg_ratio index="1" type="double" size="[1 1]">           [1]        </dcg_ratio>        <gain_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [1]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [32]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [16]           </hcg2lcg_th>        </gain_ctrl>        <env_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [0]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [0.3125]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [0.6]           </hcg2lcg_th>        </env_ctrl>      </Normal>      <Hdr index="1" type="struct" size="[1 1]">            <support_en index="1" type="double" size="[1 1]">           [0]        </support_en>        <dcg_optype index="1" type="char" size="[1 8]">           AUTO        </dcg_optype>        <dcgmode_init index="1" type="double" size="[1 3]">           [0 0 0]        </dcgmode_init>        <dcg_ratio index="1" type="double" size="[1 1]">           [3.5]        </dcg_ratio>        <sync_switch index="1" type="double" size="[1 1]">           [1]        </sync_switch>        <gain_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [1]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [32]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [16]           </hcg2lcg_th>        </gain_ctrl>        <env_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [0]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [0.3125]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [0.6]           </hcg2lcg_th>        </env_ctrl>      </Hdr>    </CISDcgSet>          <CISExpUpdate index="1" type="struct" size="[1 1]">       <Normal index="1" type="struct" size="[1 1]">             <time_update index="1" type="double" size="[1 1]">            [2]         </time_update>         <gain_update index="1" type="double" size="[1 1]">            [2]         </gain_update>         <dcg_update index="1" type="double" size="[1 1]">            [2]         </dcg_update>      </Normal>      <Hdr index="1" type="struct" size="[1 1]">             <time_update index="1" type="double" size="[1 1]">            [2]         </time_update>         <gain_update index="1" type="double" size="[1 1]">            [2]         </gain_update>         <dcg_update index="1" type="double" size="[1 1]">            [1]         </dcg_update>      </Hdr>          </CISExpUpdate>      <CISFlip index="1" type="double" size="[1 1]">         [3]      </CISFlip>       </expset>   <module  index="1" type="struct" size="[1 1]">      <FNumber index="1" type="double" size="[1 1]">         [1.6]      </FNumber>      <EFL index="1" type="double" size="[1 1]">         [5.2]      </EFL>      <LensTavg index="1" type="double" size="[1 1]">         [90]      </LensTavg>      <IRCutTavg index="1" type="double" size="[1 1]">         [90]      </IRCutTavg>   </module> </matfile>