summaryrefslogtreecommitdiff
path: root/camlibs/ptp2/cameras/nikon-d90.txt
blob: 559d52663085cf0842ebc247c9a7d3deff4fbc90 (plain)
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
Device info:
Manufacturer: Nikon Corporation
  Model: D90
  device version: V1.00
  serial number: 'nnnnnnn'
Vendor extension ID: 0x0000000a
Vendor extension version: 100
Vendor extension description: microsoft.com: 1.0
Functional Mode: 0x0000
PTP Standard Version: 100
Supported operations:
  0x1001
  0x1002
  0x1003
  0x1004
  0x1005
  0x1006
  0x1007
  0x1008
  0x1009
  0x100a
  0x100b
  0x100c
  0x100d
  0x100e
  0x100f
  0x1014
  0x1015
  0x1016
  0x101b
  0x90c0
  0x90c1
  0x90c2
  0x90c3
  0x90c4
  0x90c7
  0x90c8
  0x90c9
  0x90ca
  0x90cb
  0x90cc
  0x90cd
  0x90ce
  0x90cf
  0x9200
  0x9201
  0x9202
  0x9203
  0x9204
  0x9205
  0x9206
  0x9801
  0x9802
  0x9803
  0x9805
Events Supported:
  0x4001
  0x4002
  0x4004
  0x4005
  0x4006
  0x4009
  0x400a
  0x400c
  0x400d
  0x4008
  0xc101
  0xc102
  0xc104
Device Properties Supported:
  0x5001
  0x5003
  0x5004
  0x5005
  0x5007
  0x5008
  0x500a
  0x500b
  0x500c
  0x500d
  0x500e
  0x500f
  0x5010
  0x5011
  0x5013
  0x5018
  0x501c
  0xd406
  0xd407
Kamerazusammenfassung:
Hersteller: Nikon Corporation
Modell: D90
  Version: V1.00
  Seriennummer: 6142709
Vendor Extension ID: 0xa (1.0)
Beschreibung der Vendor Extension: microsoft.com: 1.0

Aufnahmeformate: JPEG Undefined Type
Anzeigeformate: JPEG, Undefined Type, Association/Directory, MS AVI, DPOF, Script

Fähigkeiten des Geräts:
	Dateien Download, Löschen von Dateien, Hochladen von Dateien
	Generische Bild Aufnahme, keine Offene Aufnahme, Nikon Aufnahme

Informationen über Speichermedium:
store_00010001:
	Beschreibung des Speichergeräts: Keine
	Label des Speichergerätes: 
:\MISC
	Speichertyp: Entfernbarer Speicher (Karte)
	Typ des Dateisystems: Standard Digital Kamera Layout (DCIM)
	Zugriffsmöglichkeiten: Nur Lesen und Löschen
	Maximale Kapazität: 8160542720 (7782 MB)
	Freier Platz (Bytes): 7973502976 (7604 MB)
	Freier Speicher (Bilder): 2134

Properties des Geräts:
Batterie Ladezustand(0x5001):(read only) (type=0x2) Range [0 - 100, step 1] value: 40% (40)
Bildgröße(0x5003):(readwrite) (type=0xffff) Enumeration [
	'4288x2848',
	'3216x2136',
	'2144x1424'
	] value: '4288x2848'
Kompressions Parameter(0x5004):(readwrite) (type=0x2) Enumeration [0,1,2,4,5,6,7] value: JPEG Norm (1)
Weißabgleich(0x5005):(readwrite) (type=0x4) Enumeration [2,4,5,6,7,32784,32785,32786,32787] value: Automatisch (2)
F-Nummer(0x5007):(read only) (type=0x4) Enumeration [350,400,450,500,560,630,710,800,900,1000,1100,1300,1400,1600,1800,2000,2200] value: f/3,5 (350)
Fokus Tiefe(0x5008):(read only) (type=0x6) Range [1800 - 20000, step 1] value: 18 mm (1800)
Fokusmodus(0x500a):(read only) (type=0x4) Enumeration [1,32784,32785,32786] value: AF-A (32786)
Belichtungsmessmodus(0x500b):(readwrite) (type=0x4) Enumeration [2,3,4] value: Multi-spot (3)
Blitzmodus(0x500c):(readwrite) (type=0x4) Enumeration [2] value: Flash off (2)
Belichtungszeit(0x500d):(read only) (type=0x6) Enumeration [2,30000] value: 0,3 sec (30000)
Belichtungs Programm Modus(0x500e):(read only) (type=0x4) Enumeration [1,2,3,4,32784,32785,32786,32787,32788,32789,32790] value: Night Landscape (32790)
Belichtungs Index (nach ISO)(0x500f):(readwrite) (type=0x4) Enumeration [100,125,160,200,250,320,400,500,640,800,1000,1250,1600,2000,2500,3200,4000,5000,6400] value: ISO 800 (800)
Belichtungskompensation(0x5010):(readwrite) (type=0x3) Enumeration [-5000,-4666,-4333,-4000,-3666,-3333,-3000,-2666,-2333,-2000,-1666,-1333,-1000,-666,-333,0,333,666,1000,1333,1666,2000,2333,2666,3000,3333,3666,4000,4333,4666,5000] value: 0,0 stops (0)
Datum und Zeit(0x5011):(readwrite) (type=0xffff) '20090724T221608'
Bildaufnahme Modus(0x5013):(readwrite) (type=0x4) Enumeration [1,2,32784,32785,32788,32789] value: Continuous Low Speed (32784)
Bildzahl im Burstmodus(0x5018):(readwrite) (type=0x4) Range [1 - 100, step 1] value: 1
Entfernungs Messungs Modus(0x501c):(readwrite) (type=0x4) Enumeration [2,32784,32785,32786] value: Closest Subject (32785)
Property 0xd406:(readwrite) (type=0xffff) 'Windows/6.0.5330.0 MTPClassDriver/6.0.5330.0'
Property 0xd407:(read only) (type=0x6) 1
Automatische Weißabgleich Abweichung(0xd017):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tungsten Weißabgleich Abweichung(0xd018):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Floureszierend Weißabgleich Abweichung(0xd019):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tageslicht Weißabgleich Abweichung(0xd01a):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Blitz Weißabgleich Abweichung(0xd01b):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Wolkig Weißabgleich Abweichung(0xd01c):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Schattig Weißabgleich Abweichung(0xd01d):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Weißabgleich Farbtemperatur(0xd01e):(readwrite) (type=0x4) Range [0 - 30, step 1] value: 20
Weißabgleich Preset Nummer(0xd01f):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 0
White Balance Preset Name 0(0xd020):(readwrite) (type=0xffff) '                                    '
White Balance Preset Name 1(0xd021):(readwrite) (type=0xffff) '                                    '
White Balance Preset Name 2(0xd022):(readwrite) (type=0xffff) '                                    '
White Balance Preset Name 3(0xd023):(readwrite) (type=0xffff) '                                    '
White Balance Preset Name 4(0xd024):(readwrite) (type=0xffff) '                                    '
Weißabgleich Preset Wert 0(0xd025):(read only) (type=0x6) 30212431
Weißabgleich Preset Wert 1(0xd026):(read only) (type=0x6) 30212431
Weißabgleich Preset Wert 2(0xd027):(read only) (type=0x6) 30212431
Weißabgleich Preset Wert 3(0xd028):(read only) (type=0x6) 30212431
Weißabgleich Preset Wert 4(0xd029):(read only) (type=0x6) 30212431
Color Space(0xd032):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Setze Menübank zurück(0xd045):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Fokus Bereich Wraparound(0xd04f):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Vertikaler Autofokus An(0xd050):(readwrite) (type=0x2) Range [0 - 10, step 1] value: 1
Focus Area Zone(0xd052):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Auto ISO(0xd054):(readwrite) (type=0x2) Range [0 - 1, step 1] value: An (1)
Belichtungszeitschritt(0xd056):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 1/3 (0)
Belichtungskompensation(0xd058):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Mittelpunkt/Gewichtet Bereich(0xd059):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 8 mm (1)
Exposure Base Matrix(0xd05a):(readwrite) (type=0x1) Range [-6 - 6, step 1] value: 0
Exposure Base Center(0xd05b):(readwrite) (type=0x1) Range [-6 - 6, step 1] value: 0
Exposure Base Spot(0xd05c):(readwrite) (type=0x1) Range [-6 - 6, step 1] value: 0
Live View AF(0xd05d):(readwrite) (type=0x1) Range [0 - 2, step 1] value: 1
Belichtungs Lock(0xd05e):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Fokus Lock(0xd05f):(readwrite) (type=0x2) Range [0 - 5, step 1] value: AE/AF Lock (0)
Zeit für automatische Sensor Abschaltung(0xd062):(readwrite) (type=0x2) Range [0 - 8, step 1] value: 8 seconds (2)
Selbstauslöserzeit(0xd063):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 10 seconds (2)
Img Conf Time(0xd065):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 0
Abstand bei Mehrfachbelichtung(0xd068):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 1
Exposure delay mode(0xd06a):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Langzeitbelichtungsrauschkompensation(0xd06b):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Bildnummer Zählung(0xd06c):(readwrite) (type=0x2) Range [0 - 2, step 1] value: Aus (0)
LCD Illumination(0xd06f):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
High ISO noise reduction(0xd070):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 2
On screen tips(0xd071):(readwrite) (type=0x2) Range [0 - 1, step 1] value: An (1)
Blitz Belichtungszeit(0xd075):(readwrite) (type=0x2) Range [0 - 11, step 1] value: 1/60s (0)
Modellierblitz(0xd077):(readwrite) (type=0x2) Range [0 - 1, step 1] value: An (1)
Abstufungsbereich(0xd078):(readwrite) (type=0x2) Range [0 - 4, step 1] value: AE & Flash (0)
Abstufungsrichtung(0xd07a):(readwrite) (type=0x2) Range [0 - 1, step 1] value: MTR > Under (0)
Mittlerer Button Aufnahme Modus(0xd080):(readwrite) (type=0x2) Range [0 - 2, step 1] value: Highlight active focus point (1)
Weise Func. Button zu(0xd084):(readwrite) (type=0x2) Range [0 - 9, step 1] value: 3
Passe Kommando Dials an(0xd085):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Umgedrehtes Kommando Rad(0xd086):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Menüs und Abspielen(0xd088):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 1
Auslösen ohne CF Karte(0xd08a):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (1)
Bild Kommentar(0xd090):(readwrite) (type=0xffff) '                                    '
Bild Kommentar anschalten(0xd091):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Bildrotationsflag(0xd092):(readwrite) (type=0x2) Range [0 - 1, step 1] value: An (0)
Movie Screen Size(0xd0a0):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 2
Movie Voice(0xd0a1):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Aktivierung der Abstufung(0xd0c0):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (0)
Belichtungs Abstufung Schritt(0xd0c1):(readwrite) (type=0x2) Range [0 - 7, step 1] value: 0
Belichtungs Abstufung Programm(0xd0c2):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Automatische Belichtungs Abstufung Anzahl(0xd0c3):(read only) (type=0x2) Range [1 - 3, step 1] value: 1
Automatische Weißabgleich Abweichung Schritt(0xd0c4):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Automatische Weißabgleich Abweichung Programm(0xd0c5):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 2
Objektiv Kennung(0xd0e0):(read only) (type=0x2) AF-S Nikkor 18-200mm 1:3.5-5.6 GED DX VR (139)
Objektivart(0xd0e1):(read only) (type=0x2) Range [0 - 1, step 1] value: 1
Objektivtyp(0xd0e2):(read only) (type=0x2) 15
Minimale Brennweite(0xd0e3):(read only) (type=0x6) 18 mm (1800)
Maximale Brennweite(0xd0e4):(read only) (type=0x6) 200 mm (20000)
Maximale Blende bei Minimaler Brennweite(0xd0e5):(read only) (type=0x4) f/3,5 (350)
Maximale Blende bei maximaler Brennweite(0xd0e6):(read only) (type=0x4) f/5,6 (560)
Finder ISO Display(0xd0f0):(readwrite) (type=0x2) Range [0 - 2, step 1] value: Show frame count (2)
Auto Off Photo(0xd0f2):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 1
Auto Off Menu(0xd0f3):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 2
Auto Off Info(0xd0f4):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 1
Self Timer Shot Number(0xd0f5):(readwrite) (type=0x2) Range [0 - 8, step 1] value: 0
Nikon Belichtungszeit(0xd100):(read only) (type=0x6) Enumeration [69536,196609] value: 196609
Netzanschluss(0xd101):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Warn Status(0xd102):(read only) (type=0x2) 0
Maximale Bildanzahl(0xd103):(read only) (type=0x2) Range [0 - 99, step 1] value: 20
AF Lock an(0xd104):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
AE Lock an(0xd105):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
FV Lock an(0xd106):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Aktiver AF Sensor(0xd108):(readwrite) (type=0x2) Range [1 - 11, step 1] value: Top (1)
Flexibles Programm(0xd109):(readwrite) (type=0x1) Range [-30 - 30, step 2] value: 0
Recording Media(0xd10b):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Card (0)
USB Speed(0xd10c):(read only) (type=0x2) Range [0 - 1, step 1] value: USB 2.0 (1)
CCD Serial Number(0xd10d):(read only) (type=0xffff) '1399081             '
Kameraausrichtung(0xd10e):(read only) (type=0x2) Range [0 - 3, step 1] value: 0' (0)
Illum Setting(0xd114):(readwrite) (type=0x2) Range [0 - 1, step 1] value: LCD Backlight and Info Display (1)
Externer Blitz angesteckt(0xd120):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Status Externer Blitz(0xd121):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Art des externen Blitz(0xd122):(read only) (type=0x2) Range [0 - 3, step 1] value: 0
Externer Blitz Belichtungskompensation(0xd124):(read only) (type=0x1) Range [-18 - 18, step 1] value: 0 (0)
Externer Blitzmodus(0xd125):(read only) (type=0x2) Range [0 - 7, step 1] value: 0
Blitz Belichtungskompensation(0xd126):(readwrite) (type=0x1) Range [-18 - 6, step 2] value: 0,0 stops (0)
ISO Auto Time(0xd14e):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 5
Flourescent Type(0xd14f):(readwrite) (type=0x2) Range [0 - 6, step 1] value: 3
Tune Colour Temperature(0xd150):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tune Preset 0(0xd151):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tune Preset 1(0xd152):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tune Preset 2(0xd153):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tune Preset 3(0xd154):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
Tune Preset 4(0xd155):(readwrite) (type=0x2) Range [0 - 168, step 1] value: 84
AF Signalton Modus(0xd160):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (1)
Autofokus Modus(0xd161):(readwrite) (type=0x2) Range [0 - 4, step 1] value: AF-A (2)
Autofokus Hilfslicht(0xd163):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Aus (1)
Auto ISO P/A/DVP Einstellung(0xd164):(readwrite) (type=0x2) Range [0 - 23, step 1] value: 18
AF Bereich Aufhellung(0xd166):(readwrite) (type=0x2) Range [0 - 2, step 1] value: Auto (0)
Blitzmodus(0xd167):(readwrite) (type=0x2) Range [0 - 3, step 1] value: iTTL (0)
Blitzzeichen(0xd169):(readwrite) (type=0x2) Range [0 - 1, step 1] value: An (0)
Property 0xd16a:(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Fernsteuerungsabschaltzeit(0xd16b):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 1 min (0)
Gitterlinien im Sucher(0xd16c):(readwrite) (type=0x2) Range [0 - 1, step 1] value: An (1)
Blitzmodus mit manuelle Energie(0xd16d):(readwrite) (type=0x2) Range [0 - 21, step 1] value: Voll (0)
Auto FP(0xd16f):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Warning Display(0xd181):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Battery Cell Kind(0xd182):(readwrite) (type=0x2) Range [0 - 3, step 1] value: LR6 (AA alkaline) (0)
ISO Auto High Limit(0xd183):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 1600 (2)
Info Disp Setting(0xd187):(readwrite) (type=0x2) Range [0 - 2, step 1] value: Auto (0)
Indicator Display(0xd18d):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Live View Status(0xd1a2):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Live View Image Zoom Ratio(0xd1a3):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 0
Live View Prohibit Condition(0xd1a4):(read only) (type=0x6) 1
Exposure Display Status(0xd1b0):(read only) (type=0x2) Range [0 - 8, step 1] value: Ja (1)
Exposure Indicate Status(0xd1b1):(read only) (type=0x1) Range [-60 - 60, step 1] value: 0,0 stops (0)
Property 0xd1b2:(read only) (type=0x2) Range [0 - 1, step 1] value: Ja (1)
Exposure Indicate Lightup(0xd1b3):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Blitz offen(0xd1c0):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Blitz geladen(0xd1c1):(read only) (type=0x2) Range [0 - 1, step 1] value: Nein (0)
Flash MRepeat Value(0xd1d0):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 3
Flash MRepeat Count(0xd1d1):(readwrite) (type=0x2) Range [0 - 9, step 1] value: 8
Flash MRepeat Interval(0xd1d2):(readwrite) (type=0x2) Range [0 - 13, step 1] value: 9
Flash Command Channel(0xd1d3):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 0
Flash Command Self Mode(0xd1d4):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Flash Command Self Compensation(0xd1d5):(readwrite) (type=0x2) Range [0 - 18, step 1] value: 9
Flash Command Self Value(0xd1d6):(readwrite) (type=0x2) Range [0 - 21, step 1] value: 0
Flash Command A Mode(0xd1d7):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 0
Flash Command A Compensation(0xd1d8):(readwrite) (type=0x2) Range [0 - 18, step 1] value: 9
Flash Command A Value(0xd1d9):(readwrite) (type=0x2) Range [0 - 21, step 1] value: 0
Flash Command B Mode(0xd1da):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 0
Flash Command B Compensation(0xd1db):(readwrite) (type=0x2) Range [0 - 18, step 1] value: 9
Flash Command B Value(0xd1dc):(readwrite) (type=0x2) Range [0 - 21, step 1] value: 0
Active Pic Ctrl Item(0xd200):(readwrite) (type=0x4) Enumeration [1,2,3,4,5,6,101,102,103,104,201,202,203,204,205,206,207,208,209] value: 1
Change Pic Ctrl Item(0xd201):(read only) (type=0x4) Enumeration [] value: 0

/main/actions/autofocusdrive
	Label: Drive Nikon DSLR Autofocus
	Type: TOGGLE
	Current: 0
/main/actions/manualfocusdrive
	Label: Drive Nikon DSLR Manual focus
	Type: RANGE
	Current: 0
	Bottom: -32767
	Top: 32767
	Step: 1
/main/settings/time
	Label: Camera Time
	Type: DATE
	Current: 1248472434
	Printable: Fri Jul 24 23:53:54 2009
/main/settings/imgcomment
	Label: Image Comment
	Type: TEXT
	Current:                                     
/main/settings/imgcommentenable
	Label: Enable Image Comment
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/settings/recordingmedia
	Label: Recording Media
	Type: RADIO
	Current: Card
	Choice: 0 Card
	Choice: 1 SDRAM
/main/settings/meterofftime
	Label: Meter Off Time
	Type: RADIO
	Current: 8 seconds
	Choice: 0 4 seconds
	Choice: 1 6 seconds
	Choice: 2 8 seconds
	Choice: 3 16 seconds
	Choice: 4 30 seconds
	Choice: 5 1 minute
	Choice: 6 5 minutes
	Choice: 7 10 minutes
	Choice: 8 30 minutes
/main/settings/reversedial
	Label: Reverse Command Dial
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/settings/fastfs
	Label: Fast Filesystem
	Type: TOGGLE
	Current: 1
/main/settings/capturetarget
	Label: Capture Target
	Type: RADIO
	Current: Memory card
	Choice: 0 Internal RAM
	Choice: 1 Memory card
/main/status/acpower
	Label: AC Power
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/externalflash
	Label: External Flash
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/battery
	Label: Battery Level
	Type: TEXT
	Current: 40%
/main/status/orientation
	Label: Camera Orientation
	Type: RADIO
	Current: 0'
	Choice: 0 0'
	Choice: 1 270'
	Choice: 2 90'
	Choice: 3 180'
/main/status/flashopen
	Label: Flash Open
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/flashcharged
	Label: Flash Charged
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/minfocallength
	Label: Focal Length Minimum
	Type: TEXT
	Current: 18 mm
/main/status/maxfocallength
	Label: Focal Length Maximum
	Type: TEXT
	Current: 200 mm
/main/status/apertureatminfocallength
	Label: Maximum Aperture at Focal Length Minimum
	Type: TEXT
	Current: 4 mm
/main/status/apertureatmaxfocallength
	Label: Maximum Aperture at Focal Length Maximum
	Type: TEXT
	Current: 6 mm
/main/status/lowlight
	Label: Low Light
	Type: RANGE
	Current: 1
	Bottom: 0
	Top: 8
	Step: 1
/main/status/lightmeter
	Label: Light Meter
	Type: RANGE
	Current: 0
	Bottom: -60
	Top: 60
	Step: 1
/main/status/aflocked
	Label: AF Locked
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/aelocked
	Label: AE Locked
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/status/fvlocked
	Label: FV Locked
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/imgsettings/imgquality
	Label: Image Quality
	Type: RADIO
	Current: JPEG Normal
	Choice: 0 JPEG Basic
	Choice: 1 JPEG Normal
	Choice: 2 JPEG Fine
	Choice: 3 NEF+Basic
	Choice: 4 NEF+Normal
	Choice: 5 NEF+Fine
	Choice: 6 TIFF (RGB)
/main/imgsettings/imgsize
	Label: Image Size
	Type: RADIO
	Current: 4288x2848
	Choice: 0 4288x2848
	Choice: 1 3216x2136
	Choice: 2 2144x1424
/main/imgsettings/iso
	Label: ISO Speed
	Type: RADIO
	Current: 800
	Choice: 0 100
	Choice: 1 125
	Choice: 2 160
	Choice: 3 200
	Choice: 4 250
	Choice: 5 320
	Choice: 6 400
	Choice: 7 500
	Choice: 8 640
	Choice: 9 800
	Choice: 10 1000
	Choice: 11 1250
	Choice: 12 1600
	Choice: 13 2000
	Choice: 14 2500
	Choice: 15 3200
	Choice: 16 4000
	Choice: 17 5000
	Choice: 18 6400
/main/imgsettings/whitebalance
	Label: WhiteBalance
	Type: RADIO
	Current: Automatic
	Choice: 0 Automatic
	Choice: 1 Daylight
	Choice: 2 Fluorescent
	Choice: 3 Tungsten
	Choice: 4 Flash
	Choice: 5 Cloudy
	Choice: 6 Shade
	Choice: 7 Color Temperature
	Choice: 8 Preset
/main/imgsettings/autoiso
	Label: Auto ISO
	Type: RADIO
	Current: On
	Choice: 0 On
	Choice: 1 Off
/main/imgsettings/autoisopadv
	Label: Auto ISO PADV Time
	Type: RADIO
	Current: Unknown value 0012
	Choice: 0 1/125
	Choice: 1 1/60
	Choice: 2 1/30
	Choice: 3 1/15
	Choice: 4 1/8
	Choice: 5 1/4
	Choice: 6 1/2
	Choice: 7 1
	Choice: 8 2
	Choice: 9 4
	Choice: 10 8
	Choice: 11 15
	Choice: 12 30
	Choice: 13 Unknown value 000d
	Choice: 14 Unknown value 000e
	Choice: 15 Unknown value 000f
	Choice: 16 Unknown value 0010
	Choice: 17 Unknown value 0011
	Choice: 18 Unknown value 0012
	Choice: 19 Unknown value 0013
	Choice: 20 Unknown value 0014
	Choice: 21 Unknown value 0015
	Choice: 22 Unknown value 0016
	Choice: 23 Unknown value 0017
/main/capturesettings/longexpnr
	Label: Long Exp Noise Reduction
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/autofocusmode
	Label: Auto Focus Mode
	Type: RADIO
	Current: AF-A
	Choice: 0 AF-S
	Choice: 1 AF-C
	Choice: 2 AF-A
	Choice: 3 MF (fixed)
	Choice: 4 MF (selection)
/main/capturesettings/assistlight
	Label: Assist Light
	Type: RADIO
	Current: On
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/exposurecompensation
	Label: Exposure Compensation
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/nikonflashmode
	Label: Flash Mode
	Type: RADIO
	Current: iTTL
	Choice: 0 iTTL
	Choice: 1 Manual
	Choice: 2 Commander
	Choice: 3 Repeating
/main/capturesettings/af-area-illumination
	Label: AF Area Illumination
	Type: RADIO
	Current: Auto
	Choice: 0 Auto
	Choice: 1 Off
	Choice: 2 On
/main/capturesettings/afbeep
	Label: AF Beep Mode
	Type: TOGGLE
	Current: 0
/main/capturesettings/f-number
	Label: F-Number
	Type: RADIO
	Current: f/3.5
	Choice: 0 f/3.5
	Choice: 1 f/4
	Choice: 2 f/4.5
	Choice: 3 f/5
	Choice: 4 f/5.6
	Choice: 5 f/6.3
	Choice: 6 f/7.1
	Choice: 7 f/8
	Choice: 8 f/9
	Choice: 9 f/10
	Choice: 10 f/11
	Choice: 11 f/13
	Choice: 12 f/14
	Choice: 13 f/16
	Choice: 14 f/18
	Choice: 15 f/20
	Choice: 16 f/22
/main/capturesettings/focallength
	Label: Focal Length
	Type: RANGE
	Current: 18
	Bottom: 18
	Top: 200
	Step: 0.01
/main/capturesettings/focusmode
	Label: Focus Mode
	Type: RADIO
	Current: AF-A
	Choice: 0 Manual
	Choice: 1 AF-S
	Choice: 2 AF-C
	Choice: 3 AF-A
/main/capturesettings/exposurebiascompensation
	Label: Exposure Bias Compensation
	Type: RADIO
	Current: 0
	Choice: 0 -5000
	Choice: 1 -4666
	Choice: 2 -4333
	Choice: 3 -4000
	Choice: 4 -3666
	Choice: 5 -3333
	Choice: 6 -3000
	Choice: 7 -2666
	Choice: 8 -2333
	Choice: 9 -2000
	Choice: 10 -1666
	Choice: 11 -1333
	Choice: 12 -1000
	Choice: 13 -666
	Choice: 14 -333
	Choice: 15 0
	Choice: 16 333
	Choice: 17 666
	Choice: 18 1000
	Choice: 19 1333
	Choice: 20 1666
	Choice: 21 2000
	Choice: 22 2333
	Choice: 23 2666
	Choice: 24 3000
	Choice: 25 3333
	Choice: 26 3666
	Choice: 27 4000
	Choice: 28 4333
	Choice: 29 4666
	Choice: 30 5000
/main/capturesettings/exptime
	Label: Exposure Time
	Type: RADIO
	Current: 30s
	Choice: 0 0.002s
	Choice: 1 30s
/main/capturesettings/expprogram
	Label: Exposure Program
	Type: RADIO
	Current: Night Landscape
	Choice: 0 M
	Choice: 1 P
	Choice: 2 A
	Choice: 3 S
	Choice: 4 Auto
	Choice: 5 Portrait
	Choice: 6 Landscape
	Choice: 7 Macro
	Choice: 8 Sports
	Choice: 9 Night Portrait
	Choice: 10 Night Landscape
/main/capturesettings/capturemode
	Label: Still Capture Mode
	Type: RADIO
	Current: Continuous Low Speed
	Choice: 0 Single Shot
	Choice: 1 Burst
	Choice: 2 Continuous Low Speed
	Choice: 3 Timer
	Choice: 4 Timer + Remote
	Choice: 5 Timer + Remote 2
/main/capturesettings/focusmetermode
	Label: Focus Metering Mode
	Type: RADIO
	Current: Closest Subject
	Choice: 0 Multi-spot
	Choice: 1 Single Area
	Choice: 2 Closest Subject
	Choice: 3 Group Dynamic
/main/capturesettings/exposuremetermode
	Label: Exposure Metering Mode
	Type: RADIO
	Current: Multi Spot
	Choice: 0 Center Weighted
	Choice: 1 Multi Spot
	Choice: 2 Center Spot
/main/capturesettings/flashmode
	Label: Flash Mode
	Type: RADIO
	Current: Flash off
	Choice: 0 Flash off
/main/capturesettings/nikon-shutterspeed
	Label: Nikon Shutter Speed
	Type: RADIO
	Current: 4
	Choice: 0 1/4000
	Choice: 1 4
/main/capturesettings/focusareawrap
	Label: Focus Area Wrap
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/exposurelock
	Label: Exposure Lock
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/aelaflmode
	Label: AE-L/AF-L Mode
	Type: RADIO
	Current: AE/AF Lock
	Choice: 0 AE/AF Lock
	Choice: 1 AE Lock only
	Choice: 2 AF Lock Only
	Choice: 3 AF Lock Hold
	Choice: 4 AF On
	Choice: 5 Flash Level Lock
/main/capturesettings/filenrsequencing
	Label: File Number Sequencing
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/flashsign
	Label: Flash Sign
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/viewfindergrid
	Label: Viewfinder Grid
	Type: RADIO
	Current: On
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/imagerotationflag
	Label: Image Rotation Flag
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/nocfcardrelease
	Label: Release without CF card
	Type: RADIO
	Current: On
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/flashmodemanualpower
	Label: Flash Mode Manual Power
	Type: RADIO
	Current: Full
	Choice: 0 Full
	Choice: 1 1/2
	Choice: 2 1/4
	Choice: 3 1/8
	Choice: 4 1/16
	Choice: 5 Unknown value 0005
	Choice: 6 Unknown value 0006
	Choice: 7 Unknown value 0007
	Choice: 8 Unknown value 0008
	Choice: 9 Unknown value 0009
	Choice: 10 Unknown value 000a
	Choice: 11 Unknown value 000b
	Choice: 12 Unknown value 000c
	Choice: 13 Unknown value 000d
	Choice: 14 Unknown value 000e
	Choice: 15 Unknown value 000f
	Choice: 16 Unknown value 0010
	Choice: 17 Unknown value 0011
	Choice: 18 Unknown value 0012
	Choice: 19 Unknown value 0013
	Choice: 20 Unknown value 0014
	Choice: 21 Unknown value 0015
/main/capturesettings/autofocusarea
	Label: Auto Focus Area
	Type: RADIO
	Current: Top
	Choice: 0 Top
	Choice: 1 Bottom
	Choice: 2 Left
	Choice: 3 Right
	Choice: 4 Unknown value 0005
	Choice: 5 Unknown value 0006
	Choice: 6 Unknown value 0007
	Choice: 7 Unknown value 0008
	Choice: 8 Unknown value 0009
	Choice: 9 Unknown value 000a
	Choice: 10 Unknown value 000b
/main/capturesettings/flashexposurecompensation
	Label: Flash Exposure Compensation
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 1
	Step: 0.333333
/main/capturesettings/bracketing
	Label: Bracketing
	Type: RADIO
	Current: Off
	Choice: 0 On
	Choice: 1 Off
/main/capturesettings/evstep
	Label: EV Step
	Type: RADIO
	Current: 1/3
	Choice: 0 1/3
	Choice: 1 1/2
	Choice: 2 Unknown value 0002
/main/capturesettings/bracketset
	Label: Bracket Set
	Type: RADIO
	Current: AE & Flash
	Choice: 0 AE & Flash
	Choice: 1 AE only
	Choice: 2 Flash only
	Choice: 3 WB bracketing
	Choice: 4 ADL bracketing
/main/capturesettings/bracketorder
	Label: Bracket Order
	Type: RADIO
	Current: MTR > Under
	Choice: 0 MTR > Under
	Choice: 1 Under > MTR
/main/capturesettings/burstnumber
	Label: Burst Number
	Type: RANGE
	Current: 1
	Bottom: 1
	Top: 100
	Step: 1
/main/capturesettings/autowhitebias
	Label: Auto White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/tungstenwhitebias
	Label: Tungsten White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/flourescentwhitebias
	Label: Fluorescent White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/daylightwhitebias
	Label: Daylight White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/flashwhitebias
	Label: Flash White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/cloudywhitebias
	Label: Cloudy White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/shadewhitebias
	Label: Shady White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/capturesettings/whitebiaspresetno
	Label: White Balance Bias Preset Nr
	Type: RADIO
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/capturesettings/whitebiaspreset0
	Label: White Balance Bias Preset 0
	Type: TEXT
	Current: 30212431
/main/capturesettings/whitebiaspreset1
	Label: White Balance Bias Preset 1
	Type: TEXT
	Current: 30212431
/main/capturesettings/whitebiaspreset2
	Label: White Balance Bias Preset 2
	Type: TEXT
	Current: 30212431
/main/capturesettings/whitebiaspreset3
	Label: White Balance Bias Preset 3
	Type: TEXT
	Current: 30212431
/main/capturesettings/whitebiaspreset4
	Label: White Balance Bias Preset 4
	Type: TEXT
	Current: 30212431
/main/capturesettings/selftimerdelay
	Label: Selftimer Delay
	Type: RADIO
	Current: 10 seconds
	Choice: 0 2 seconds
	Choice: 1 5 seconds
	Choice: 2 10 seconds
	Choice: 3 20 seconds
/main/capturesettings/centerweightsize
	Label: Center Weight Area
	Type: RADIO
	Current: 8 mm
	Choice: 0 6 mm
	Choice: 1 8 mm
	Choice: 2 10 mm
/main/capturesettings/flashshutterspeed
	Label: Flash Shutter Speed
	Type: RADIO
	Current: 1/60
	Choice: 0 1/60
	Choice: 1 1/30
	Choice: 2 1/15
	Choice: 3 1/8
	Choice: 4 1/4
	Choice: 5 1/2
	Choice: 6 1
	Choice: 7 2
	Choice: 8 4
	Choice: 9 8
	Choice: 10 15
	Choice: 11 30
/main/capturesettings/remotetimeout
	Label: Remote Timeout
	Type: RADIO
	Current: 1 minute
	Choice: 0 1 minute
	Choice: 1 5 minutes
	Choice: 2 10 minutes
	Choice: 3 15 minutes
/main/other/5001
	Label: Battery Level
	Type: MENU
	Current: 40
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
	Choice: 24 24
	Choice: 25 25
	Choice: 26 26
	Choice: 27 27
	Choice: 28 28
	Choice: 29 29
	Choice: 30 30
	Choice: 31 31
	Choice: 32 32
	Choice: 33 33
	Choice: 34 34
	Choice: 35 35
	Choice: 36 36
	Choice: 37 37
	Choice: 38 38
	Choice: 39 39
	Choice: 40 40
	Choice: 41 41
	Choice: 42 42
	Choice: 43 43
	Choice: 44 44
	Choice: 45 45
	Choice: 46 46
	Choice: 47 47
	Choice: 48 48
	Choice: 49 49
	Choice: 50 50
	Choice: 51 51
	Choice: 52 52
	Choice: 53 53
	Choice: 54 54
	Choice: 55 55
	Choice: 56 56
	Choice: 57 57
	Choice: 58 58
	Choice: 59 59
	Choice: 60 60
	Choice: 61 61
	Choice: 62 62
	Choice: 63 63
	Choice: 64 64
	Choice: 65 65
	Choice: 66 66
	Choice: 67 67
	Choice: 68 68
	Choice: 69 69
	Choice: 70 70
	Choice: 71 71
	Choice: 72 72
	Choice: 73 73
	Choice: 74 74
	Choice: 75 75
	Choice: 76 76
	Choice: 77 77
	Choice: 78 78
	Choice: 79 79
	Choice: 80 80
	Choice: 81 81
	Choice: 82 82
	Choice: 83 83
	Choice: 84 84
	Choice: 85 85
	Choice: 86 86
	Choice: 87 87
	Choice: 88 88
	Choice: 89 89
	Choice: 90 90
	Choice: 91 91
	Choice: 92 92
	Choice: 93 93
	Choice: 94 94
	Choice: 95 95
	Choice: 96 96
	Choice: 97 97
	Choice: 98 98
	Choice: 99 99
	Choice: 100 100
/main/other/5003
	Label: Image Size
	Type: MENU
	Current: 4288x2848
	Choice: 0 4288x2848
	Choice: 1 3216x2136
	Choice: 2 2144x1424
/main/other/5004
	Label: Compression Setting
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 7
/main/other/5005
	Label: White Balance
	Type: MENU
	Current: 2
	Choice: 0 2
	Choice: 1 4
	Choice: 2 5
	Choice: 3 6
	Choice: 4 7
	Choice: 5 32784
	Choice: 6 32785
	Choice: 7 32786
	Choice: 8 32787
/main/other/5007
	Label: F-Number
	Type: MENU
	Current: 350
	Choice: 0 350
	Choice: 1 400
	Choice: 2 450
	Choice: 3 500
	Choice: 4 560
	Choice: 5 630
	Choice: 6 710
	Choice: 7 800
	Choice: 8 900
	Choice: 9 1000
	Choice: 10 1100
	Choice: 11 1300
	Choice: 12 1400
	Choice: 13 1600
	Choice: 14 1800
	Choice: 15 2000
	Choice: 16 2200
/main/other/5008
	Label: Focal Length
	Type: RANGE
	Current: 1800
	Bottom: 1800
	Top: 20000
	Step: 1
/main/other/500a
	Label: Focus Mode
	Type: MENU
	Current: 32786
	Choice: 0 1
	Choice: 1 32784
	Choice: 2 32785
	Choice: 3 32786
/main/other/500b
	Label: Exposure Metering Mode
	Type: MENU
	Current: 3
	Choice: 0 2
	Choice: 1 3
	Choice: 2 4
/main/other/500c
	Label: Flash Mode
	Type: MENU
	Current: 2
	Choice: 0 2
/main/other/500d
	Label: Exposure Time
	Type: MENU
	Current: 30000
	Choice: 0 2
	Choice: 1 30000
/main/other/500e
	Label: Exposure Program Mode
	Type: MENU
	Current: 32790
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 32784
	Choice: 5 32785
	Choice: 6 32786
	Choice: 7 32787
	Choice: 8 32788
	Choice: 9 32789
	Choice: 10 32790
/main/other/500f
	Label: Exposure Index (film speed ISO)
	Type: MENU
	Current: 800
	Choice: 0 100
	Choice: 1 125
	Choice: 2 160
	Choice: 3 200
	Choice: 4 250
	Choice: 5 320
	Choice: 6 400
	Choice: 7 500
	Choice: 8 640
	Choice: 9 800
	Choice: 10 1000
	Choice: 11 1250
	Choice: 12 1600
	Choice: 13 2000
	Choice: 14 2500
	Choice: 15 3200
	Choice: 16 4000
	Choice: 17 5000
	Choice: 18 6400
/main/other/5010
	Label: Exposure Bias Compensation
	Type: MENU
	Current: 0
	Choice: 0 -5000
	Choice: 1 -4666
	Choice: 2 -4333
	Choice: 3 -4000
	Choice: 4 -3666
	Choice: 5 -3333
	Choice: 6 -3000
	Choice: 7 -2666
	Choice: 8 -2333
	Choice: 9 -2000
	Choice: 10 -1666
	Choice: 11 -1333
	Choice: 12 -1000
	Choice: 13 -666
	Choice: 14 -333
	Choice: 15 0
	Choice: 16 333
	Choice: 17 666
	Choice: 18 1000
	Choice: 19 1333
	Choice: 20 1666
	Choice: 21 2000
	Choice: 22 2333
	Choice: 23 2666
	Choice: 24 3000
	Choice: 25 3333
	Choice: 26 3666
	Choice: 27 4000
	Choice: 28 4333
	Choice: 29 4666
	Choice: 30 5000
/main/other/5011
	Label: Date & Time
	Type: TEXT
	Current: 20090724T225424
/main/other/5013
	Label: Still Capture Mode
	Type: MENU
	Current: 32784
	Choice: 0 1
	Choice: 1 2
	Choice: 2 32784
	Choice: 3 32785
	Choice: 4 32788
	Choice: 5 32789
/main/other/5018
	Label: Burst Number
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 7
	Choice: 7 8
	Choice: 8 9
	Choice: 9 10
	Choice: 10 11
	Choice: 11 12
	Choice: 12 13
	Choice: 13 14
	Choice: 14 15
	Choice: 15 16
	Choice: 16 17
	Choice: 17 18
	Choice: 18 19
	Choice: 19 20
	Choice: 20 21
	Choice: 21 22
	Choice: 22 23
	Choice: 23 24
	Choice: 24 25
	Choice: 25 26
	Choice: 26 27
	Choice: 27 28
	Choice: 28 29
	Choice: 29 30
	Choice: 30 31
	Choice: 31 32
	Choice: 32 33
	Choice: 33 34
	Choice: 34 35
	Choice: 35 36
	Choice: 36 37
	Choice: 37 38
	Choice: 38 39
	Choice: 39 40
	Choice: 40 41
	Choice: 41 42
	Choice: 42 43
	Choice: 43 44
	Choice: 44 45
	Choice: 45 46
	Choice: 46 47
	Choice: 47 48
	Choice: 48 49
	Choice: 49 50
	Choice: 50 51
	Choice: 51 52
	Choice: 52 53
	Choice: 53 54
	Choice: 54 55
	Choice: 55 56
	Choice: 56 57
	Choice: 57 58
	Choice: 58 59
	Choice: 59 60
	Choice: 60 61
	Choice: 61 62
	Choice: 62 63
	Choice: 63 64
	Choice: 64 65
	Choice: 65 66
	Choice: 66 67
	Choice: 67 68
	Choice: 68 69
	Choice: 69 70
	Choice: 70 71
	Choice: 71 72
	Choice: 72 73
	Choice: 73 74
	Choice: 74 75
	Choice: 75 76
	Choice: 76 77
	Choice: 77 78
	Choice: 78 79
	Choice: 79 80
	Choice: 80 81
	Choice: 81 82
	Choice: 82 83
	Choice: 83 84
	Choice: 84 85
	Choice: 85 86
	Choice: 86 87
	Choice: 87 88
	Choice: 88 89
	Choice: 89 90
	Choice: 90 91
	Choice: 91 92
	Choice: 92 93
	Choice: 93 94
	Choice: 94 95
	Choice: 95 96
	Choice: 96 97
	Choice: 97 98
	Choice: 98 99
	Choice: 99 100
/main/other/501c
	Label: Focus Metering Mode
	Type: MENU
	Current: 32785
	Choice: 0 2
	Choice: 1 32784
	Choice: 2 32785
	Choice: 3 32786
/main/other/d406
	Label: PTP Property 0xd406
	Type: TEXT
	Current: Windows/6.0.5330.0 MTPClassDriver/6.0.5330.0
/main/other/d407
	Label: PTP Property 0xd407
	Type: TEXT
	Current: 1
/main/other/d017
	Label: Auto White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d018
	Label: Tungsten White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d019
	Label: Fluorescent White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01a
	Label: Daylight White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01b
	Label: Flash White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01c
	Label: Cloudy White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01d
	Label: Shady White Balance Bias
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d01e
	Label: White Balance Colour Temperature
	Type: MENU
	Current: 20
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
	Choice: 24 24
	Choice: 25 25
	Choice: 26 26
	Choice: 27 27
	Choice: 28 28
	Choice: 29 29
	Choice: 30 30
/main/other/d01f
	Label: White Balance Preset Number
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d020
	Label: White Balance Preset Name 0
	Type: TEXT
	Current:                                     
/main/other/d021
	Label: White Balance Preset Name 1
	Type: TEXT
	Current:                                     
/main/other/d022
	Label: White Balance Preset Name 2
	Type: TEXT
	Current:                                     
/main/other/d023
	Label: White Balance Preset Name 3
	Type: TEXT
	Current:                                     
/main/other/d024
	Label: White Balance Preset Name 4
	Type: TEXT
	Current:                                     
/main/other/d025
	Label: White Balance Preset Value 0
	Type: TEXT
	Current: 30212431
/main/other/d026
	Label: White Balance Preset Value 1
	Type: TEXT
	Current: 30212431
/main/other/d027
	Label: White Balance Preset Value 2
	Type: TEXT
	Current: 30212431
/main/other/d028
	Label: White Balance Preset Value 3
	Type: TEXT
	Current: 30212431
/main/other/d029
	Label: White Balance Preset Value 4
	Type: TEXT
	Current: 30212431
/main/other/d032
	Label: Color Space
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d045
	Label: Reset Menu Bank
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d04f
	Label: Focus Area Wrap
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d050
	Label: Vertical AF On
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
/main/other/d052
	Label: Focus Area Zone
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d054
	Label: Auto ISO
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d056
	Label: Exposure Step
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d058
	Label: Exposure Compensation
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d059
	Label: Centre Weight Area
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d05a
	Label: Exposure Base Matrix
	Type: MENU
	Current: 0
	Choice: 0 -6
	Choice: 1 -5
	Choice: 2 -4
	Choice: 3 -3
	Choice: 4 -2
	Choice: 5 -1
	Choice: 6 0
	Choice: 7 1
	Choice: 8 2
	Choice: 9 3
	Choice: 10 4
	Choice: 11 5
	Choice: 12 6
/main/other/d05b
	Label: Exposure Base Center
	Type: MENU
	Current: 0
	Choice: 0 -6
	Choice: 1 -5
	Choice: 2 -4
	Choice: 3 -3
	Choice: 4 -2
	Choice: 5 -1
	Choice: 6 0
	Choice: 7 1
	Choice: 8 2
	Choice: 9 3
	Choice: 10 4
	Choice: 11 5
	Choice: 12 6
/main/other/d05c
	Label: Exposure Base Spot
	Type: MENU
	Current: 0
	Choice: 0 -6
	Choice: 1 -5
	Choice: 2 -4
	Choice: 3 -3
	Choice: 4 -2
	Choice: 5 -1
	Choice: 6 0
	Choice: 7 1
	Choice: 8 2
	Choice: 9 3
	Choice: 10 4
	Choice: 11 5
	Choice: 12 6
/main/other/d05d
	Label: Live View AF
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d05e
	Label: Exposure Lock
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d05f
	Label: Focus Lock
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d062
	Label: Auto Meter Off Time
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
/main/other/d063
	Label: Self Timer Delay
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d065
	Label: Img Conf Time
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d068
	Label: Shooting Speed
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d06a
	Label: Exposure delay mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d06b
	Label: Long Exposure Noise Reduction
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d06c
	Label: File Number Sequencing
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d06f
	Label: LCD Illumination
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d070
	Label: High ISO noise reduction
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d071
	Label: On screen tips
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d075
	Label: Flash Shutter Speed
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
/main/other/d077
	Label: Modeling Flash
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d078
	Label: Bracket Set
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d07a
	Label: Bracket Order
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d080
	Label: Center Button Shooting Mode
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d084
	Label: Assign Func. Button
	Type: MENU
	Current: 3
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
/main/other/d085
	Label: Customise Command Dials
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d086
	Label: Reverse Command Dial
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d088
	Label: Menus and Playback
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d08a
	Label: No CF Card Release
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d090
	Label: Image Comment String
	Type: TEXT
	Current:                                     
/main/other/d091
	Label: Image Comment Enable
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d092
	Label: Image Rotation
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d0a0
	Label: Movie Screen Size
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d0a1
	Label: Movie Voice
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d0c0
	Label: Bracketing Enable
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d0c1
	Label: Exposure Bracketing Step
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
/main/other/d0c2
	Label: Exposure Bracketing Program
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d0c3
	Label: Auto Exposure Bracket Count
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
/main/other/d0c4
	Label: White Balance Bracket Step
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d0c5
	Label: White Balance Bracket Program
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d0e0
	Label: Lens ID
	Type: TEXT
	Current: 139
/main/other/d0e1
	Label: Lens Sort
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d0e2
	Label: Lens Type
	Type: TEXT
	Current: 15
/main/other/d0e3
	Label: Min. Focal Length
	Type: TEXT
	Current: 1800
/main/other/d0e4
	Label: Max. Focal Length
	Type: TEXT
	Current: 20000
/main/other/d0e5
	Label: Max. Aperture at Min. Focal Length
	Type: TEXT
	Current: 350
/main/other/d0e6
	Label: Max. Aperture at Max. Focal Length
	Type: TEXT
	Current: 560
/main/other/d0f0
	Label: Finder ISO Display
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d0f2
	Label: Auto Off Photo
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d0f3
	Label: Auto Off Menu
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d0f4
	Label: Auto Off Info
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d0f5
	Label: Self Timer Shot Number
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
/main/other/d100
	Label: Nikon Exposure Time
	Type: MENU
	Current: 262145
	Choice: 0 69536
	Choice: 1 262145
/main/other/d101
	Label: AC Power
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d102
	Label: Warning Status
	Type: TEXT
	Current: 0
/main/other/d103
	Label: Maximum Shots
	Type: MENU
	Current: 20
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
	Choice: 24 24
	Choice: 25 25
	Choice: 26 26
	Choice: 27 27
	Choice: 28 28
	Choice: 29 29
	Choice: 30 30
	Choice: 31 31
	Choice: 32 32
	Choice: 33 33
	Choice: 34 34
	Choice: 35 35
	Choice: 36 36
	Choice: 37 37
	Choice: 38 38
	Choice: 39 39
	Choice: 40 40
	Choice: 41 41
	Choice: 42 42
	Choice: 43 43
	Choice: 44 44
	Choice: 45 45
	Choice: 46 46
	Choice: 47 47
	Choice: 48 48
	Choice: 49 49
	Choice: 50 50
	Choice: 51 51
	Choice: 52 52
	Choice: 53 53
	Choice: 54 54
	Choice: 55 55
	Choice: 56 56
	Choice: 57 57
	Choice: 58 58
	Choice: 59 59
	Choice: 60 60
	Choice: 61 61
	Choice: 62 62
	Choice: 63 63
	Choice: 64 64
	Choice: 65 65
	Choice: 66 66
	Choice: 67 67
	Choice: 68 68
	Choice: 69 69
	Choice: 70 70
	Choice: 71 71
	Choice: 72 72
	Choice: 73 73
	Choice: 74 74
	Choice: 75 75
	Choice: 76 76
	Choice: 77 77
	Choice: 78 78
	Choice: 79 79
	Choice: 80 80
	Choice: 81 81
	Choice: 82 82
	Choice: 83 83
	Choice: 84 84
	Choice: 85 85
	Choice: 86 86
	Choice: 87 87
	Choice: 88 88
	Choice: 89 89
	Choice: 90 90
	Choice: 91 91
	Choice: 92 92
	Choice: 93 93
	Choice: 94 94
	Choice: 95 95
	Choice: 96 96
	Choice: 97 97
	Choice: 98 98
	Choice: 99 99
/main/other/d104
	Label: AF Locked
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d105
	Label: AE Locked
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d106
	Label: FV Locked
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d108
	Label: Active AF Sensor
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 7
	Choice: 7 8
	Choice: 8 9
	Choice: 9 10
	Choice: 10 11
/main/other/d109
	Label: Flexible Program
	Type: RANGE
	Current: 0
	Bottom: -30
	Top: 30
	Step: 2
/main/other/d10b
	Label: Recording Media
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d10c
	Label: USB Speed
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d10d
	Label: CCD Serial Number
	Type: TEXT
	Current: 1399081             
/main/other/d10e
	Label: Camera Orientation
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d114
	Label: Illum Setting
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d120
	Label: External Flash Attached
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d121
	Label: External Flash Status
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d122
	Label: External Flash Sort
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d124
	Label: External Flash Compensation
	Type: MENU
	Current: 0
	Choice: 0 -18
	Choice: 1 -17
	Choice: 2 -16
	Choice: 3 -15
	Choice: 4 -14
	Choice: 5 -13
	Choice: 6 -12
	Choice: 7 -11
	Choice: 8 -10
	Choice: 9 -9
	Choice: 10 -8
	Choice: 11 -7
	Choice: 12 -6
	Choice: 13 -5
	Choice: 14 -4
	Choice: 15 -3
	Choice: 16 -2
	Choice: 17 -1
	Choice: 18 0
	Choice: 19 1
	Choice: 20 2
	Choice: 21 3
	Choice: 22 4
	Choice: 23 5
	Choice: 24 6
	Choice: 25 7
	Choice: 26 8
	Choice: 27 9
	Choice: 28 10
	Choice: 29 11
	Choice: 30 12
	Choice: 31 13
	Choice: 32 14
	Choice: 33 15
	Choice: 34 16
	Choice: 35 17
	Choice: 36 18
/main/other/d125
	Label: External Flash Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
/main/other/d126
	Label: Flash Exposure Compensation
	Type: RANGE
	Current: 0
	Bottom: -18
	Top: 6
	Step: 2
/main/other/d14e
	Label: ISO Auto Time
	Type: MENU
	Current: 5
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d14f
	Label: Flourescent Type
	Type: MENU
	Current: 3
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
/main/other/d150
	Label: Tune Colour Temperature
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d151
	Label: Tune Preset 0
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d152
	Label: Tune Preset 1
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d153
	Label: Tune Preset 2
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d154
	Label: Tune Preset 3
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d155
	Label: Tune Preset 4
	Type: RANGE
	Current: 84
	Bottom: 0
	Top: 168
	Step: 1
/main/other/d160
	Label: AF Beep Mode
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d161
	Label: Autofocus Mode
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d163
	Label: AF Assist Lamp
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d164
	Label: Auto ISO P/A/DVP Setting
	Type: MENU
	Current: 18
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
/main/other/d166
	Label: AF Area Illumination
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d167
	Label: Flash Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d169
	Label: Flash Sign
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d16a
	Label: PTP Property 0xd16a
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d16b
	Label: Remote Timeout
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d16c
	Label: Viewfinder Grid Display
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d16d
	Label: Flash Mode Manual Power
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
/main/other/d16f
	Label: Auto FP
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d181
	Label: Warning Display
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d182
	Label: Battery Cell Kind
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d183
	Label: ISO Auto High Limit
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
/main/other/d187
	Label: Info Disp Setting
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d18d
	Label: Indicator Display
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1a2
	Label: Live View Status
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1a3
	Label: Live View Image Zoom Ratio
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d1a4
	Label: Live View Prohibit Condition
	Type: TEXT
	Current: 1
/main/other/d1b0
	Label: Exposure Display Status
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
/main/other/d1b1
	Label: Exposure Indicate Status
	Type: MENU
	Current: 0
	Choice: 0 -60
	Choice: 1 -59
	Choice: 2 -58
	Choice: 3 -57
	Choice: 4 -56
	Choice: 5 -55
	Choice: 6 -54
	Choice: 7 -53
	Choice: 8 -52
	Choice: 9 -51
	Choice: 10 -50
	Choice: 11 -49
	Choice: 12 -48
	Choice: 13 -47
	Choice: 14 -46
	Choice: 15 -45
	Choice: 16 -44
	Choice: 17 -43
	Choice: 18 -42
	Choice: 19 -41
	Choice: 20 -40
	Choice: 21 -39
	Choice: 22 -38
	Choice: 23 -37
	Choice: 24 -36
	Choice: 25 -35
	Choice: 26 -34
	Choice: 27 -33
	Choice: 28 -32
	Choice: 29 -31
	Choice: 30 -30
	Choice: 31 -29
	Choice: 32 -28
	Choice: 33 -27
	Choice: 34 -26
	Choice: 35 -25
	Choice: 36 -24
	Choice: 37 -23
	Choice: 38 -22
	Choice: 39 -21
	Choice: 40 -20
	Choice: 41 -19
	Choice: 42 -18
	Choice: 43 -17
	Choice: 44 -16
	Choice: 45 -15
	Choice: 46 -14
	Choice: 47 -13
	Choice: 48 -12
	Choice: 49 -11
	Choice: 50 -10
	Choice: 51 -9
	Choice: 52 -8
	Choice: 53 -7
	Choice: 54 -6
	Choice: 55 -5
	Choice: 56 -4
	Choice: 57 -3
	Choice: 58 -2
	Choice: 59 -1
	Choice: 60 0
	Choice: 61 1
	Choice: 62 2
	Choice: 63 3
	Choice: 64 4
	Choice: 65 5
	Choice: 66 6
	Choice: 67 7
	Choice: 68 8
	Choice: 69 9
	Choice: 70 10
	Choice: 71 11
	Choice: 72 12
	Choice: 73 13
	Choice: 74 14
	Choice: 75 15
	Choice: 76 16
	Choice: 77 17
	Choice: 78 18
	Choice: 79 19
	Choice: 80 20
	Choice: 81 21
	Choice: 82 22
	Choice: 83 23
	Choice: 84 24
	Choice: 85 25
	Choice: 86 26
	Choice: 87 27
	Choice: 88 28
	Choice: 89 29
	Choice: 90 30
	Choice: 91 31
	Choice: 92 32
	Choice: 93 33
	Choice: 94 34
	Choice: 95 35
	Choice: 96 36
	Choice: 97 37
	Choice: 98 38
	Choice: 99 39
	Choice: 100 40
	Choice: 101 41
	Choice: 102 42
	Choice: 103 43
	Choice: 104 44
	Choice: 105 45
	Choice: 106 46
	Choice: 107 47
	Choice: 108 48
	Choice: 109 49
	Choice: 110 50
	Choice: 111 51
	Choice: 112 52
	Choice: 113 53
	Choice: 114 54
	Choice: 115 55
	Choice: 116 56
	Choice: 117 57
	Choice: 118 58
	Choice: 119 59
	Choice: 120 60
/main/other/d1b2
	Label: PTP Property 0xd1b2
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
/main/other/d1b3
	Label: Exposure Indicate Lightup
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1c0
	Label: Flash Open
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1c1
	Label: Flash Charged
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
/main/other/d1d0
	Label: Flash MRepeat Value
	Type: MENU
	Current: 3
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
/main/other/d1d1
	Label: Flash MRepeat Count
	Type: MENU
	Current: 8
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
/main/other/d1d2
	Label: Flash MRepeat Interval
	Type: MENU
	Current: 9
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
/main/other/d1d3
	Label: Flash Command Channel
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d1d4
	Label: Flash Command Self Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
/main/other/d1d5
	Label: Flash Command Self Compensation
	Type: MENU
	Current: 9
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
/main/other/d1d6
	Label: Flash Command Self Value
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
/main/other/d1d7
	Label: Flash Command A Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d1d8
	Label: Flash Command A Compensation
	Type: MENU
	Current: 9
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
/main/other/d1d9
	Label: Flash Command A Value
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
/main/other/d1da
	Label: Flash Command B Mode
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
/main/other/d1db
	Label: Flash Command B Compensation
	Type: MENU
	Current: 9
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
/main/other/d1dc
	Label: Flash Command B Value
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
/main/other/d200
	Label: Active Pic Ctrl Item
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 101
	Choice: 7 102
	Choice: 8 103
	Choice: 9 104
	Choice: 10 201
	Choice: 11 202
	Choice: 12 203
	Choice: 13 204
	Choice: 14 205
	Choice: 15 206
	Choice: 16 207
	Choice: 17 208
	Choice: 18 209
/main/other/d201
	Label: Change Pic Ctrl Item
	Type: MENU
	Current: 0