forked from usnistgov/CASE-Implementation-ExifTool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
predicates_discovered.txt
2311 lines (2311 loc) · 128 KB
/
predicates_discovered.txt
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
http://ns.exiftool.ca/1.0/toolkit
http://ns.exiftool.ca/AFCP/AFCP/1.0/PreviewImage
http://ns.exiftool.ca/AFCP/AFCP/1.0/Text
http://ns.exiftool.ca/AFCP/AFCP/1.0/ThumbnailImage
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Ag
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Again
http://ns.exiftool.ca/APP12/PictureInfo/1.0/AmbBgain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/AmbCBal
http://ns.exiftool.ca/APP12/PictureInfo/1.0/AmbRgain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Aperture
http://ns.exiftool.ca/APP12/PictureInfo/1.0/B5100
http://ns.exiftool.ca/APP12/PictureInfo/1.0/BH
http://ns.exiftool.ca/APP12/PictureInfo/1.0/BHL
http://ns.exiftool.ca/APP12/PictureInfo/1.0/BL
http://ns.exiftool.ca/APP12/PictureInfo/1.0/BStrobe
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Bg
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Bgain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Blk0
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Blk1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Boff
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM6
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM7
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM8
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CAM9
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CBal
http://ns.exiftool.ca/APP12/PictureInfo/1.0/COLOR1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/COLOR2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/COLOR3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/COLOR4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/CameraType
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Color
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ColorMode
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ContTake
http://ns.exiftool.ca/APP12/PictureInfo/1.0/DateTimeOriginal
http://ns.exiftool.ca/APP12/PictureInfo/1.0/EXP1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/EXP2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/EXP3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ExpAdj
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ExposRatio
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Exposure
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ExposureCompensation
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ExposureTime
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FCS1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FCS2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FCS3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FCS4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FCS5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FCS6
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FCS7
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FMean
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FNumber
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FRmean
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FSadj
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FirmwareVersion
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Flash
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FlashMode
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FlashTime
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Fnumber
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Focus
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FocusMode
http://ns.exiftool.ca/APP12/PictureInfo/1.0/FocusPos
http://ns.exiftool.ca/APP12/PictureInfo/1.0/GBgain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/GBoff
http://ns.exiftool.ca/APP12/PictureInfo/1.0/GH
http://ns.exiftool.ca/APP12/PictureInfo/1.0/GHL
http://ns.exiftool.ca/APP12/PictureInfo/1.0/GL
http://ns.exiftool.ca/APP12/PictureInfo/1.0/GRgain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/GRoff
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Gain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Gg
http://ns.exiftool.ca/APP12/PictureInfo/1.0/HeightLight
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ID
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMbb
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMbg
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMbr
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMgb
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMgg
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMgr
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMrb
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMrg
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IMrr
http://ns.exiftool.ca/APP12/PictureInfo/1.0/IRValue
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ImageSize
http://ns.exiftool.ca/APP12/PictureInfo/1.0/JPEG1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS0
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS6
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LS7
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LevelRatio
http://ns.exiftool.ca/APP12/PictureInfo/1.0/LightS
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MODE1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MODE2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MODE3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MODE4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MODE5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MODE6
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MTR1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MTR2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MTRX1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Macro
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Mean
http://ns.exiftool.ca/APP12/PictureInfo/1.0/MotorPos
http://ns.exiftool.ca/APP12/PictureInfo/1.0/OTP
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ObjectDistance
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Offset
http://ns.exiftool.ca/APP12/PictureInfo/1.0/PicLen
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Protect
http://ns.exiftool.ca/APP12/PictureInfo/1.0/QF
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Quality
http://ns.exiftool.ca/APP12/PictureInfo/1.0/R5100
http://ns.exiftool.ca/APP12/PictureInfo/1.0/REV
http://ns.exiftool.ca/APP12/PictureInfo/1.0/RH
http://ns.exiftool.ca/APP12/PictureInfo/1.0/RHL
http://ns.exiftool.ca/APP12/PictureInfo/1.0/RL
http://ns.exiftool.ca/APP12/PictureInfo/1.0/RStrobe
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Ratio
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Resolution
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Rg
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Rgain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Roff
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S0
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S6
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S7
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S8
http://ns.exiftool.ca/APP12/PictureInfo/1.0/S9
http://ns.exiftool.ca/APP12/PictureInfo/1.0/STB1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/STB2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/STB3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/STB4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/STB5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/STB6
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Sa
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Sb
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Sc
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Sd
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Se
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Selftimer
http://ns.exiftool.ca/APP12/PictureInfo/1.0/SerialNumber
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Sf
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Sg
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Sh
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Strobe
http://ns.exiftool.ca/APP12/PictureInfo/1.0/StrobeTime
http://ns.exiftool.ca/APP12/PictureInfo/1.0/T0
http://ns.exiftool.ca/APP12/PictureInfo/1.0/T1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/T2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/T3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/T4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/T5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/TagB
http://ns.exiftool.ca/APP12/PictureInfo/1.0/TagP
http://ns.exiftool.ca/APP12/PictureInfo/1.0/TagQ
http://ns.exiftool.ca/APP12/PictureInfo/1.0/TagR
http://ns.exiftool.ca/APP12/PictureInfo/1.0/ThmLen
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Type
http://ns.exiftool.ca/APP12/PictureInfo/1.0/VFExposureTime
http://ns.exiftool.ca/APP12/PictureInfo/1.0/VFGain
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Version
http://ns.exiftool.ca/APP12/PictureInfo/1.0/WB1
http://ns.exiftool.ca/APP12/PictureInfo/1.0/WB2
http://ns.exiftool.ca/APP12/PictureInfo/1.0/WB3
http://ns.exiftool.ca/APP12/PictureInfo/1.0/WB4
http://ns.exiftool.ca/APP12/PictureInfo/1.0/WB5
http://ns.exiftool.ca/APP12/PictureInfo/1.0/WB6
http://ns.exiftool.ca/APP12/PictureInfo/1.0/YLevel
http://ns.exiftool.ca/APP12/PictureInfo/1.0/YTarget
http://ns.exiftool.ca/APP12/PictureInfo/1.0/Zoom
http://ns.exiftool.ca/APP14/Adobe/1.0/APP14Flags0
http://ns.exiftool.ca/APP14/Adobe/1.0/APP14Flags1
http://ns.exiftool.ca/APP14/Adobe/1.0/ColorTransform
http://ns.exiftool.ca/APP14/Adobe/1.0/DCTEncodeVersion
http://ns.exiftool.ca/APP15/GraphConv/1.0/Quality
http://ns.exiftool.ca/APP8/SPIFF/1.0/BitsPerSample
http://ns.exiftool.ca/APP8/SPIFF/1.0/ColorComponents
http://ns.exiftool.ca/APP8/SPIFF/1.0/ColorSpace
http://ns.exiftool.ca/APP8/SPIFF/1.0/Compression
http://ns.exiftool.ca/APP8/SPIFF/1.0/ImageHeight
http://ns.exiftool.ca/APP8/SPIFF/1.0/ImageWidth
http://ns.exiftool.ca/APP8/SPIFF/1.0/ProfileID
http://ns.exiftool.ca/APP8/SPIFF/1.0/ResolutionUnit
http://ns.exiftool.ca/APP8/SPIFF/1.0/SPIFFVersion
http://ns.exiftool.ca/APP8/SPIFF/1.0/XResolution
http://ns.exiftool.ca/APP8/SPIFF/1.0/YResolution
http://ns.exiftool.ca/Composite/1.0/Aperture
http://ns.exiftool.ca/Composite/1.0/BlueBalance
http://ns.exiftool.ca/Composite/1.0/CircleOfConfusion
http://ns.exiftool.ca/Composite/1.0/ConditionalFEC
http://ns.exiftool.ca/Composite/1.0/DOF
http://ns.exiftool.ca/Composite/1.0/DateCreated
http://ns.exiftool.ca/Composite/1.0/DateTimeCreated
http://ns.exiftool.ca/Composite/1.0/DateTimeOriginal
http://ns.exiftool.ca/Composite/1.0/DigitalZoom
http://ns.exiftool.ca/Composite/1.0/DriveMode
http://ns.exiftool.ca/Composite/1.0/FOV
http://ns.exiftool.ca/Composite/1.0/Flash
http://ns.exiftool.ca/Composite/1.0/FlashType
http://ns.exiftool.ca/Composite/1.0/FocalLength35efl
http://ns.exiftool.ca/Composite/1.0/GPSAltitude
http://ns.exiftool.ca/Composite/1.0/GPSDateTime
http://ns.exiftool.ca/Composite/1.0/GPSLatitude
http://ns.exiftool.ca/Composite/1.0/GPSLongitude
http://ns.exiftool.ca/Composite/1.0/GPSPosition
http://ns.exiftool.ca/Composite/1.0/HyperfocalDistance
http://ns.exiftool.ca/Composite/1.0/ISO
http://ns.exiftool.ca/Composite/1.0/ImageSize
http://ns.exiftool.ca/Composite/1.0/Lens
http://ns.exiftool.ca/Composite/1.0/Lens35efl
http://ns.exiftool.ca/Composite/1.0/LensID
http://ns.exiftool.ca/Composite/1.0/LensSpec
http://ns.exiftool.ca/Composite/1.0/LightValue
http://ns.exiftool.ca/Composite/1.0/Megapixels
http://ns.exiftool.ca/Composite/1.0/PreviewImageSize
http://ns.exiftool.ca/Composite/1.0/RedBalance
http://ns.exiftool.ca/Composite/1.0/RedEyeReduction
http://ns.exiftool.ca/Composite/1.0/ScaleFactor35efl
http://ns.exiftool.ca/Composite/1.0/ShootingMode
http://ns.exiftool.ca/Composite/1.0/ShutterCurtainHack
http://ns.exiftool.ca/Composite/1.0/ShutterSpeed
http://ns.exiftool.ca/Composite/1.0/SubSecCreateDate
http://ns.exiftool.ca/Composite/1.0/SubSecDateTimeOriginal
http://ns.exiftool.ca/Composite/1.0/SubSecModifyDate
http://ns.exiftool.ca/Composite/1.0/WB_RGGBLevels
http://ns.exiftool.ca/Ducky/Ducky/1.0/Comment
http://ns.exiftool.ca/Ducky/Ducky/1.0/Copyright
http://ns.exiftool.ca/Ducky/Ducky/1.0/Quality
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ApertureValue
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Brightness
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/BrightnessValue
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/CFAPattern
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ColorSpace
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ComponentsConfiguration
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/CompressedBitsPerPixel
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Compression
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Contrast
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Converter
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/CreateDate
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/CustomRendered
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/DateTimeOriginal
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/DeviceSettingDescription
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/DigitalZoomRatio
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExifImageHeight
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExifImageWidth
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExifVersion
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Exposure
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExposureCompensation
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExposureIndex
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExposureMode
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExposureProgram
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ExposureTime
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FNumber
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FileSource
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Flash
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FlashEnergy
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FlashpixVersion
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FocalLength
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FocalLengthIn35mmFormat
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FocalPlaneResolutionUnit
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FocalPlaneXResolution
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/FocalPlaneYResolution
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/GainControl
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Gamma
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ISO
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ImageDescription
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ImageHeight
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ImageUniqueID
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ImageWidth
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Lens
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/LightSource
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Make
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/MakerNoteMinolta3
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/MakerNoteUnknownText
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/MaxApertureValue
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/MeteringMode
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ModifyDate
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/MoireFilter
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Noise
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/OffsetSchema
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Opto-ElectricConvFactor
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Orientation
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/OtherImage
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/OtherImageLength
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/OtherImageStart
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/RawFile
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/RelatedSoundFile
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ResolutionUnit
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Saturation
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SceneCaptureType
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SceneType
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SensingMethod
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SerialNumber
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Shadows
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Sharpness
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/ShutterSpeedValue
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Smoothness
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Software
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SpatialFrequencyResponse
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SpectralSensitivity
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SubSecTime
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SubSecTimeDigitized
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SubSecTimeOriginal
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SubjectArea
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SubjectDistance
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SubjectDistanceRange
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/SubjectLocation
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Temperature
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/Tint
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/UserComment
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/WhiteBalance
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/XResolution
http://ns.exiftool.ca/EXIF/ExifIFD/1.0/YResolution
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSAltitude
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSAltitudeRef
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSDOP
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSDateStamp
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSImgDirection
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSImgDirectionRef
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSLatitude
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSLatitudeRef
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSLongitude
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSLongitudeRef
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSMapDatum
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSMeasureMode
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSSatellites
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSSpeed
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSSpeedRef
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSStatus
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSTimeStamp
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSTrack
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSTrackRef
http://ns.exiftool.ca/EXIF/GPS/1.0/GPSVersionID
http://ns.exiftool.ca/EXIF/IFD0/1.0/Artist
http://ns.exiftool.ca/EXIF/IFD0/1.0/BitsPerSample
http://ns.exiftool.ca/EXIF/IFD0/1.0/Compression
http://ns.exiftool.ca/EXIF/IFD0/1.0/Contrast
http://ns.exiftool.ca/EXIF/IFD0/1.0/Copyright
http://ns.exiftool.ca/EXIF/IFD0/1.0/CustomRendered
http://ns.exiftool.ca/EXIF/IFD0/1.0/DateTimeOriginal
http://ns.exiftool.ca/EXIF/IFD0/1.0/DeviceSettingDescription
http://ns.exiftool.ca/EXIF/IFD0/1.0/DigitalZoomRatio
http://ns.exiftool.ca/EXIF/IFD0/1.0/DocumentName
http://ns.exiftool.ca/EXIF/IFD0/1.0/ExposureMode
http://ns.exiftool.ca/EXIF/IFD0/1.0/ExtraSamples
http://ns.exiftool.ca/EXIF/IFD0/1.0/FillOrder
http://ns.exiftool.ca/EXIF/IFD0/1.0/FocalLengthIn35mmFormat
http://ns.exiftool.ca/EXIF/IFD0/1.0/GainControl
http://ns.exiftool.ca/EXIF/IFD0/1.0/Gamma
http://ns.exiftool.ca/EXIF/IFD0/1.0/HostComputer
http://ns.exiftool.ca/EXIF/IFD0/1.0/ImageDescription
http://ns.exiftool.ca/EXIF/IFD0/1.0/ImageHeight
http://ns.exiftool.ca/EXIF/IFD0/1.0/ImageNumber
http://ns.exiftool.ca/EXIF/IFD0/1.0/ImageWidth
http://ns.exiftool.ca/EXIF/IFD0/1.0/MSDocumentText
http://ns.exiftool.ca/EXIF/IFD0/1.0/MSDocumentTextPosition
http://ns.exiftool.ca/EXIF/IFD0/1.0/MSPropertySetStorage
http://ns.exiftool.ca/EXIF/IFD0/1.0/Make
http://ns.exiftool.ca/EXIF/IFD0/1.0/Model
http://ns.exiftool.ca/EXIF/IFD0/1.0/Model2
http://ns.exiftool.ca/EXIF/IFD0/1.0/ModifyDate
http://ns.exiftool.ca/EXIF/IFD0/1.0/Noise
http://ns.exiftool.ca/EXIF/IFD0/1.0/OffsetSchema
http://ns.exiftool.ca/EXIF/IFD0/1.0/Orientation
http://ns.exiftool.ca/EXIF/IFD0/1.0/OtherImage
http://ns.exiftool.ca/EXIF/IFD0/1.0/OtherImageLength
http://ns.exiftool.ca/EXIF/IFD0/1.0/OtherImageStart
http://ns.exiftool.ca/EXIF/IFD0/1.0/PageName
http://ns.exiftool.ca/EXIF/IFD0/1.0/PageNumber
http://ns.exiftool.ca/EXIF/IFD0/1.0/PhotometricInterpretation
http://ns.exiftool.ca/EXIF/IFD0/1.0/PlanarConfiguration
http://ns.exiftool.ca/EXIF/IFD0/1.0/Predictor
http://ns.exiftool.ca/EXIF/IFD0/1.0/PrimaryChromaticities
http://ns.exiftool.ca/EXIF/IFD0/1.0/ProcessingSoftware
http://ns.exiftool.ca/EXIF/IFD0/1.0/Rating
http://ns.exiftool.ca/EXIF/IFD0/1.0/ReferenceBlackWhite
http://ns.exiftool.ca/EXIF/IFD0/1.0/RelatedImageHeight
http://ns.exiftool.ca/EXIF/IFD0/1.0/RelatedImageWidth
http://ns.exiftool.ca/EXIF/IFD0/1.0/ResolutionUnit
http://ns.exiftool.ca/EXIF/IFD0/1.0/RowsPerStrip
http://ns.exiftool.ca/EXIF/IFD0/1.0/SampleFormat
http://ns.exiftool.ca/EXIF/IFD0/1.0/SamplesPerPixel
http://ns.exiftool.ca/EXIF/IFD0/1.0/Saturation
http://ns.exiftool.ca/EXIF/IFD0/1.0/SceneCaptureType
http://ns.exiftool.ca/EXIF/IFD0/1.0/SensingMethod
http://ns.exiftool.ca/EXIF/IFD0/1.0/Sharpness
http://ns.exiftool.ca/EXIF/IFD0/1.0/Software
http://ns.exiftool.ca/EXIF/IFD0/1.0/SpatialFrequencyResponse
http://ns.exiftool.ca/EXIF/IFD0/1.0/StripByteCounts
http://ns.exiftool.ca/EXIF/IFD0/1.0/StripOffsets
http://ns.exiftool.ca/EXIF/IFD0/1.0/SubfileType
http://ns.exiftool.ca/EXIF/IFD0/1.0/SubjectArea
http://ns.exiftool.ca/EXIF/IFD0/1.0/SubjectDistanceRange
http://ns.exiftool.ca/EXIF/IFD0/1.0/TimeZoneOffset
http://ns.exiftool.ca/EXIF/IFD0/1.0/WhiteBalance
http://ns.exiftool.ca/EXIF/IFD0/1.0/WhitePoint
http://ns.exiftool.ca/EXIF/IFD0/1.0/XPAuthor
http://ns.exiftool.ca/EXIF/IFD0/1.0/XPComment
http://ns.exiftool.ca/EXIF/IFD0/1.0/XPKeywords
http://ns.exiftool.ca/EXIF/IFD0/1.0/XPSubject
http://ns.exiftool.ca/EXIF/IFD0/1.0/XPTitle
http://ns.exiftool.ca/EXIF/IFD0/1.0/XResolution
http://ns.exiftool.ca/EXIF/IFD0/1.0/YCbCrCoefficients
http://ns.exiftool.ca/EXIF/IFD0/1.0/YCbCrPositioning
http://ns.exiftool.ca/EXIF/IFD0/1.0/YResolution
http://ns.exiftool.ca/EXIF/IFD1/1.0/BitsPerSample
http://ns.exiftool.ca/EXIF/IFD1/1.0/Compression
http://ns.exiftool.ca/EXIF/IFD1/1.0/ImageHeight
http://ns.exiftool.ca/EXIF/IFD1/1.0/ImageWidth
http://ns.exiftool.ca/EXIF/IFD1/1.0/Make
http://ns.exiftool.ca/EXIF/IFD1/1.0/Model
http://ns.exiftool.ca/EXIF/IFD1/1.0/ModifyDate
http://ns.exiftool.ca/EXIF/IFD1/1.0/Orientation
http://ns.exiftool.ca/EXIF/IFD1/1.0/PhotometricInterpretation
http://ns.exiftool.ca/EXIF/IFD1/1.0/PlanarConfiguration
http://ns.exiftool.ca/EXIF/IFD1/1.0/ReferenceBlackWhite
http://ns.exiftool.ca/EXIF/IFD1/1.0/ResolutionUnit
http://ns.exiftool.ca/EXIF/IFD1/1.0/RowsPerStrip
http://ns.exiftool.ca/EXIF/IFD1/1.0/SamplesPerPixel
http://ns.exiftool.ca/EXIF/IFD1/1.0/Software
http://ns.exiftool.ca/EXIF/IFD1/1.0/StripByteCounts
http://ns.exiftool.ca/EXIF/IFD1/1.0/StripOffsets
http://ns.exiftool.ca/EXIF/IFD1/1.0/SubfileType
http://ns.exiftool.ca/EXIF/IFD1/1.0/ThumbnailImage
http://ns.exiftool.ca/EXIF/IFD1/1.0/ThumbnailLength
http://ns.exiftool.ca/EXIF/IFD1/1.0/ThumbnailOffset
http://ns.exiftool.ca/EXIF/IFD1/1.0/UserComment
http://ns.exiftool.ca/EXIF/IFD1/1.0/XResolution
http://ns.exiftool.ca/EXIF/IFD1/1.0/YCbCrCoefficients
http://ns.exiftool.ca/EXIF/IFD1/1.0/YCbCrPositioning
http://ns.exiftool.ca/EXIF/IFD1/1.0/YCbCrSubSampling
http://ns.exiftool.ca/EXIF/IFD1/1.0/YResolution
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/Compression
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/InteropIndex
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/InteropVersion
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/ModifyDate
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/Orientation
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/OtherImage
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/OtherImageLength
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/OtherImageStart
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/RelatedImageHeight
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/RelatedImageWidth
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/ResolutionUnit
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/XResolution
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/YCbCrPositioning
http://ns.exiftool.ca/EXIF/InteropIFD/1.0/YResolution
http://ns.exiftool.ca/ExifTool/1.0/ExifToolVersion
http://ns.exiftool.ca/ExifTool/1.0/Warning
http://ns.exiftool.ca/ExifTool/ExifTool2/1.0/Warning
http://ns.exiftool.ca/File/1.0/BitsPerSample
http://ns.exiftool.ca/File/1.0/ColorComponents
http://ns.exiftool.ca/File/1.0/Comment
http://ns.exiftool.ca/File/1.0/CurrentIPTCDigest
http://ns.exiftool.ca/File/1.0/EncodingProcess
http://ns.exiftool.ca/File/1.0/ExifByteOrder
http://ns.exiftool.ca/File/1.0/FileType
http://ns.exiftool.ca/File/1.0/FileTypeExtension
http://ns.exiftool.ca/File/1.0/ImageHeight
http://ns.exiftool.ca/File/1.0/ImageWidth
http://ns.exiftool.ca/File/1.0/MIMEType
http://ns.exiftool.ca/File/1.0/PreviewImage
http://ns.exiftool.ca/File/1.0/YCbCrSubSampling
http://ns.exiftool.ca/File/System/1.0/Directory
http://ns.exiftool.ca/File/System/1.0/FileAccessDate
http://ns.exiftool.ca/File/System/1.0/FileInodeChangeDate
http://ns.exiftool.ca/File/System/1.0/FileModifyDate
http://ns.exiftool.ca/File/System/1.0/FileName
http://ns.exiftool.ca/File/System/1.0/FilePermissions
http://ns.exiftool.ca/File/System/1.0/FileSize
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/CodePage
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/CreatingApplication
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/ExtensionClassID
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/ExtensionCreateDate
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/ExtensionDescription
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/ExtensionModifyDate
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/ExtensionName
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/ExtensionPersistence
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/PreviewImage
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/ScreenNail
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/Storage-StreamPathname
http://ns.exiftool.ca/FlashPix/FlashPix/1.0/UsedExtensionNumbers
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/ColorPlanes
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/CropBottom
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/CropLeft
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/CropRight
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/CropTop
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/OriginalImageHeight
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/OriginalImageWidth
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/PreviewImage
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/Rotation
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/ThumbnailImage
http://ns.exiftool.ca/FotoStation/FotoStation/1.0/XYResolution
http://ns.exiftool.ca/ICC_Profile/ICC-chrm/1.0/ChromaticityChannel1
http://ns.exiftool.ca/ICC_Profile/ICC-chrm/1.0/ChromaticityChannel2
http://ns.exiftool.ca/ICC_Profile/ICC-chrm/1.0/ChromaticityChannel3
http://ns.exiftool.ca/ICC_Profile/ICC-chrm/1.0/ChromaticityChannel4
http://ns.exiftool.ca/ICC_Profile/ICC-chrm/1.0/ChromaticityChannels
http://ns.exiftool.ca/ICC_Profile/ICC-chrm/1.0/ChromaticityColorant
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/CMMFlags
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ColorSpaceData
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ConnectionSpaceIlluminant
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/DeviceAttributes
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/DeviceManufacturer
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/DeviceModel
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/PrimaryPlatform
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileCMMType
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileClass
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileConnectionSpace
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileCreator
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileDateTime
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileFileSignature
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileID
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/ProfileVersion
http://ns.exiftool.ca/ICC_Profile/ICC-header/1.0/RenderingIntent
http://ns.exiftool.ca/ICC_Profile/ICC-meas/1.0/MeasurementBacking
http://ns.exiftool.ca/ICC_Profile/ICC-meas/1.0/MeasurementFlare
http://ns.exiftool.ca/ICC_Profile/ICC-meas/1.0/MeasurementGeometry
http://ns.exiftool.ca/ICC_Profile/ICC-meas/1.0/MeasurementIlluminant
http://ns.exiftool.ca/ICC_Profile/ICC-meas/1.0/MeasurementObserver
http://ns.exiftool.ca/ICC_Profile/ICC-view/1.0/ViewingCondIlluminant
http://ns.exiftool.ca/ICC_Profile/ICC-view/1.0/ViewingCondIlluminantType
http://ns.exiftool.ca/ICC_Profile/ICC-view/1.0/ViewingCondSurround
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/AToB0
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/AToB1
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/AToB2
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/BToA0
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/BToA1
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/BToA2
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/BlueMatrixColumn
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/BlueTRC
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/CharTarget
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ChromaticAdaptation
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/DeviceMfgDesc
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/DeviceModelDesc
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/Gamut
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/GrayTRC
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/GreenMatrixColumn
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/GreenTRC
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/Luminance
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/MakeAndModel
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/MediaBlackPoint
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/MediaWhitePoint
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/NativeDisplayInfo
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileCopyright
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescription
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-da-DK
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-de-DE
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-es-ES
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-fi-FI
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-fr-FR
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-fr-FU
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-it-IT
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-ja-JP
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-ko-KR
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-nb-NO
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-nl-NL
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-no-NO
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-pt-BR
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-pt-PT
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-ru-RU
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-sv-SE
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-tr-TR
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-zh-CN
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ProfileDescriptionML-zh-TW
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/RedMatrixColumn
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/RedTRC
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/Technology
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/VideoCardGamma
http://ns.exiftool.ca/ICC_Profile/ICC_Profile/1.0/ViewingCondDesc
http://ns.exiftool.ca/IPTC/IPTC/1.0/ApplicationRecordVersion
http://ns.exiftool.ca/IPTC/IPTC/1.0/By-line
http://ns.exiftool.ca/IPTC/IPTC/1.0/By-lineTitle
http://ns.exiftool.ca/IPTC/IPTC/1.0/Caption-Abstract
http://ns.exiftool.ca/IPTC/IPTC/1.0/Category
http://ns.exiftool.ca/IPTC/IPTC/1.0/City
http://ns.exiftool.ca/IPTC/IPTC/1.0/CodedCharacterSet
http://ns.exiftool.ca/IPTC/IPTC/1.0/Contact
http://ns.exiftool.ca/IPTC/IPTC/1.0/CopyrightNotice
http://ns.exiftool.ca/IPTC/IPTC/1.0/Country-PrimaryLocationCode
http://ns.exiftool.ca/IPTC/IPTC/1.0/Country-PrimaryLocationName
http://ns.exiftool.ca/IPTC/IPTC/1.0/Credit
http://ns.exiftool.ca/IPTC/IPTC/1.0/DateCreated
http://ns.exiftool.ca/IPTC/IPTC/1.0/DocumentHistory
http://ns.exiftool.ca/IPTC/IPTC/1.0/EnvelopePriority
http://ns.exiftool.ca/IPTC/IPTC/1.0/EnvelopeRecordVersion
http://ns.exiftool.ca/IPTC/IPTC/1.0/ExifCameraInfo
http://ns.exiftool.ca/IPTC/IPTC/1.0/Headline
http://ns.exiftool.ca/IPTC/IPTC/1.0/ImageOrientation
http://ns.exiftool.ca/IPTC/IPTC/1.0/ImageType
http://ns.exiftool.ca/IPTC/IPTC/1.0/Keywords
http://ns.exiftool.ca/IPTC/IPTC/1.0/ObjectCycle
http://ns.exiftool.ca/IPTC/IPTC/1.0/ObjectName
http://ns.exiftool.ca/IPTC/IPTC/1.0/OriginalTransmissionReference
http://ns.exiftool.ca/IPTC/IPTC/1.0/OriginatingProgram
http://ns.exiftool.ca/IPTC/IPTC/1.0/Prefs
http://ns.exiftool.ca/IPTC/IPTC/1.0/ProgramVersion
http://ns.exiftool.ca/IPTC/IPTC/1.0/Province-State
http://ns.exiftool.ca/IPTC/IPTC/1.0/ReleaseDate
http://ns.exiftool.ca/IPTC/IPTC/1.0/ReleaseTime
http://ns.exiftool.ca/IPTC/IPTC/1.0/Source
http://ns.exiftool.ca/IPTC/IPTC/1.0/SpecialInstructions
http://ns.exiftool.ca/IPTC/IPTC/1.0/Sub-location
http://ns.exiftool.ca/IPTC/IPTC/1.0/SupplementalCategories
http://ns.exiftool.ca/IPTC/IPTC/1.0/TimeCreated
http://ns.exiftool.ca/IPTC/IPTC/1.0/Urgency
http://ns.exiftool.ca/IPTC/IPTC/1.0/Writer-Editor
http://ns.exiftool.ca/IPTC/IPTC2/1.0/ApplicationRecordVersion
http://ns.exiftool.ca/IPTC/IPTC2/1.0/By-line
http://ns.exiftool.ca/IPTC/IPTC2/1.0/By-lineTitle
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Caption-Abstract
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Category
http://ns.exiftool.ca/IPTC/IPTC2/1.0/City
http://ns.exiftool.ca/IPTC/IPTC2/1.0/CodedCharacterSet
http://ns.exiftool.ca/IPTC/IPTC2/1.0/CopyrightNotice
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Country-PrimaryLocationCode
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Country-PrimaryLocationName
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Credit
http://ns.exiftool.ca/IPTC/IPTC2/1.0/DateCreated
http://ns.exiftool.ca/IPTC/IPTC2/1.0/DateSent
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Destination
http://ns.exiftool.ca/IPTC/IPTC2/1.0/DocumentHistory
http://ns.exiftool.ca/IPTC/IPTC2/1.0/EnvelopeNumber
http://ns.exiftool.ca/IPTC/IPTC2/1.0/EnvelopePriority
http://ns.exiftool.ca/IPTC/IPTC2/1.0/EnvelopeRecordVersion
http://ns.exiftool.ca/IPTC/IPTC2/1.0/ExifCameraInfo
http://ns.exiftool.ca/IPTC/IPTC2/1.0/FileFormat
http://ns.exiftool.ca/IPTC/IPTC2/1.0/FileVersion
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Headline
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Keywords
http://ns.exiftool.ca/IPTC/IPTC2/1.0/ObjectName
http://ns.exiftool.ca/IPTC/IPTC2/1.0/OriginalTransmissionReference
http://ns.exiftool.ca/IPTC/IPTC2/1.0/OriginatingProgram
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Province-State
http://ns.exiftool.ca/IPTC/IPTC2/1.0/ServiceIdentifier
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Source
http://ns.exiftool.ca/IPTC/IPTC2/1.0/SpecialInstructions
http://ns.exiftool.ca/IPTC/IPTC2/1.0/SupplementalCategories
http://ns.exiftool.ca/IPTC/IPTC2/1.0/TimeCreated
http://ns.exiftool.ca/IPTC/IPTC2/1.0/TimeSent
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Urgency
http://ns.exiftool.ca/IPTC/IPTC2/1.0/Writer-Editor
http://ns.exiftool.ca/IPTC/IPTC3/1.0/ApplicationRecordVersion
http://ns.exiftool.ca/IPTC/IPTC3/1.0/Caption-Abstract
http://ns.exiftool.ca/IPTC/IPTC3/1.0/CopyrightNotice
http://ns.exiftool.ca/IPTC/IPTC3/1.0/Credit
http://ns.exiftool.ca/IPTC/IPTC3/1.0/Headline
http://ns.exiftool.ca/IPTC/IPTC3/1.0/ObjectName
http://ns.exiftool.ca/IPTC/IPTC3/1.0/Source
http://ns.exiftool.ca/IPTC/IPTC3/1.0/SupplementalCategories
http://ns.exiftool.ca/JFIF/JFIF/1.0/JFIFVersion
http://ns.exiftool.ca/JFIF/JFIF/1.0/ResolutionUnit
http://ns.exiftool.ca/JFIF/JFIF/1.0/ThumbnailHeight
http://ns.exiftool.ca/JFIF/JFIF/1.0/ThumbnailTIFF
http://ns.exiftool.ca/JFIF/JFIF/1.0/ThumbnailWidth
http://ns.exiftool.ca/JFIF/JFIF/1.0/XResolution
http://ns.exiftool.ca/JFIF/JFIF/1.0/YResolution
http://ns.exiftool.ca/JFIF/JFXX/1.0/ThumbnailImage
http://ns.exiftool.ca/JFIF/JFXX/1.0/ThumbnailTIFF
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ApertureValue
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/BaseISO
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/CanonFileDescription
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/CanonFirmwareVersion
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/CanonImageType
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ColorBW
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ColorBitDepth
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ComponentBitDepth
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/DateTimeOriginal
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ExposureCompensation
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FileFormat
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FileNumber
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FlashGuideNumber
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FlashThreshold
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FocalLength
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FocalPlaneXSize
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FocalPlaneYSize
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FocalType
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/FreeBytes
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ImageHeight
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ImageWidth
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/Make
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/MeasuredEV
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/Model
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/OriginalFileName
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/OwnerName
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/PixelAspectRatio
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ROMOperationMode
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/RecordID
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/Rotation
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ShutterReleaseMethod
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ShutterReleaseTiming
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ShutterSpeedValue
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/TargetCompressionRatio
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/TargetDistanceSetting
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/TargetImageType
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/ThumbnailFileName
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/TimeZoneCode
http://ns.exiftool.ca/MakerNotes/CIFF/1.0/TimeZoneInfo
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AEBBracketValue
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AESetting
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFAreaHeight
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFAreaHeights
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFAreaMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFAreaWidth
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFAreaWidths
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFAreaXPositions
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFAreaYPositions
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFImageHeight
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFImageWidth
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFPoint
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFPointsInFocus
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AFPointsInFocus1D
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AutoExposureBracketing
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AutoISO
http://ns.exiftool.ca/MakerNotes/Canon/1.0/AutoRotate
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BaseISO
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BlackMaskBottomBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BlackMaskLeftBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BlackMaskRightBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BlackMaskTopBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BracketMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BracketShotNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BracketValue
http://ns.exiftool.ca/MakerNotes/Canon/1.0/BulbDuration
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CameraISO
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CameraTemperature
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CameraType
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonExposureMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonFileLength
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonFirmwareVersion
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonFlashMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonImageHeight
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonImageSize
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonImageType
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonImageWidth
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CanonModelID
http://ns.exiftool.ca/MakerNotes/Canon/1.0/Categories
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorDataVersion
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorSpace
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempAsShot
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempAuto
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempCloudy
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempCustom
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempCustom1
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempCustom2
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempDaylight
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempFlash
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempFlashData
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempFluorescent
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempKelvin
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempMeasured
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempPC1
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempPC2
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempPC3
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempShade
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTempTungsten
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTemperature
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ColorTone
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ContinuousDrive
http://ns.exiftool.ca/MakerNotes/Canon/1.0/Contrast
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ControlMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CropBottomMargin
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CropLeftMargin
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CropRightMargin
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CropTopMargin
http://ns.exiftool.ca/MakerNotes/Canon/1.0/CustomPictureStyleFileName
http://ns.exiftool.ca/MakerNotes/Canon/1.0/DateStampMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/DigitalGain
http://ns.exiftool.ca/MakerNotes/Canon/1.0/DigitalZoom
http://ns.exiftool.ca/MakerNotes/Canon/1.0/DisplayAperture
http://ns.exiftool.ca/MakerNotes/Canon/1.0/EasyMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ExposureCompensation
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ExposureTime
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FaceDetectFrameSize
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FaceWidth
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FacesDetected
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FileNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FilterEffect
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FirmwareRevision
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FlashActivity
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FlashBatteryLevel
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FlashBits
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FlashExposureComp
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FlashGuideNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FlashOutput
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocalLength
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocalPlaneXSize
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocalPlaneYSize
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocalType
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocalUnits
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocusContinuous
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocusDistanceLower
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocusDistanceUpper
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocusMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/FocusRange
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ISO
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ImageStabilization
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ImageUniqueID
http://ns.exiftool.ca/MakerNotes/Canon/1.0/InternalSerialNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/JPEGQuality
http://ns.exiftool.ca/MakerNotes/Canon/1.0/LensModel
http://ns.exiftool.ca/MakerNotes/Canon/1.0/LensType
http://ns.exiftool.ca/MakerNotes/Canon/1.0/LongExposureNoiseReduction2
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MacroMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ManualFlashOutput
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MaxAperture
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MaxFocalLength
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MeasuredEV
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MeasuredEV2
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MeasuredRGGB
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MeasuredRGGBData
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MeteringMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MinAperture
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MinFocalLength
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedColorTemp
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedDigitalGain
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedParamFlag
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedPictureStyle
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedSensorBlueLevel
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedSensorRedLevel
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedSharpness
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedSharpnessFreq
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedToneCurve
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedWhiteBalance
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedWhiteBalanceBlue
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ModifiedWhiteBalanceRed
http://ns.exiftool.ca/MakerNotes/Canon/1.0/MyColorMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/NDFilter
http://ns.exiftool.ca/MakerNotes/Canon/1.0/NumAFPoints
http://ns.exiftool.ca/MakerNotes/Canon/1.0/OpticalZoomCode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/OriginalDecisionDataOffset
http://ns.exiftool.ca/MakerNotes/Canon/1.0/OwnerName
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PanoramaDirection
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PanoramaFrameNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PerChannelBlackLevel
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PhotoEffect
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PictureStyle
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PictureStylePC
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PictureStyleUserDef
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PreviewImage
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PreviewImageHeight
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PreviewImageLength
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PreviewImageStart
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PreviewImageWidth
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PreviewQuality
http://ns.exiftool.ca/MakerNotes/Canon/1.0/PrimaryAFPoint
http://ns.exiftool.ca/MakerNotes/Canon/1.0/Quality
http://ns.exiftool.ca/MakerNotes/Canon/1.0/RawJpgQuality
http://ns.exiftool.ca/MakerNotes/Canon/1.0/RawJpgSize
http://ns.exiftool.ca/MakerNotes/Canon/1.0/RawMeasuredRGGB
http://ns.exiftool.ca/MakerNotes/Canon/1.0/RecordMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/Rotation
http://ns.exiftool.ca/MakerNotes/Canon/1.0/Saturation
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SelfTimer
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SelfTimer2
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorBlueLevel
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorBottomBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorHeight
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorLeftBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorRedLevel
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorRightBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorTopBorder
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SensorWidth
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SequenceNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SerialNumber
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SerialNumberFormat
http://ns.exiftool.ca/MakerNotes/Canon/1.0/Sharpness
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SharpnessFreqTable
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SharpnessFrequency
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SharpnessTable
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ShutterCount
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SlowShutter
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SpotMeteringMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/SuperMacro
http://ns.exiftool.ca/MakerNotes/Canon/1.0/TargetAperture
http://ns.exiftool.ca/MakerNotes/Canon/1.0/TargetExposureTime
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ThumbnailImageValidArea
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ToneCurve
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ToneCurveMatching
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ToneCurveTable
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ToningEffect
http://ns.exiftool.ca/MakerNotes/Canon/1.0/VRDOffset
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ValidAFPoints
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WBBracketMode
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WBBracketValueAB
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WBBracketValueGM
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WBShiftAB
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WBShiftGM
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBBlackLevels
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsAsShot
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsAuto
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsCloudy
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsCustom
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsCustom1
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsCustom2
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsDaylight
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsFlash
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsFluorescent
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsKelvin
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsMeasured
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsPC1
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsPC2
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsPC3
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsShade
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WB_RGGBLevelsTungsten
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WhiteBalance
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WhiteBalanceBlue
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WhiteBalanceMatching
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WhiteBalanceRed
http://ns.exiftool.ca/MakerNotes/Canon/1.0/WhiteBalanceTable
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ZoomSourceWidth
http://ns.exiftool.ca/MakerNotes/Canon/1.0/ZoomTargetWidth
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AEBSequenceAutoCancel
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFAssist
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFAssistBeam
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFPointActivationArea
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFPointIllumination
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFPointRegistration
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFPointSelection
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFPointSelectionMethod
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AFPointSpotMetering
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AIServoContinuousShooting
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AIServoTrackingSensitivity
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AddOriginalDecisionData
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/AssistButtonFunction
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/ETTLII
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/ExposureLevelIncrements
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/FillFlashAutoReduction
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/FinderDisplayDuringExposure
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/FlashFiring
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/FlashSyncSpeedAv
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/FocusingScreen
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/ISOExpansion
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/ISOSpeedExpansion
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/LCDDisplayAtPowerOn
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/LCDPanels
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/LensAFStopButton
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/LongExposureNoiseReduction
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/MagnifiedView
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/ManualTv
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/MenuButtonDisplayPosition
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/MenuButtonReturn
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/MirrorLockup
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF0CustomFuncRegistration
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF10RetainProgramShift
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF13DrivePriority
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF14DisableFocusSearch
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF15DisableAFAssistBeam
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF16AutoFocusPointShoot
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF17DisableAFPointSel
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF18EnableAutoAFPointSel
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF19ContinuousShootSpeed
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF19ShootingSpeedHigh
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF19ShootingSpeedLow
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF1DisableShootingModes
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF1Value
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF20LimitContinousShots
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF20MaxContinousShots
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF21EnableQuietOperation
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF23FELockTime
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF23PostReleaseTime
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF23SetTimerLengths
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF23ShutterButtonTime
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF24LightLCDDuringBulb
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25AEMode
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25AFMode
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25AFPointSel
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25ColorMatrix
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25DefaultClearSettings
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25DriveMode
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25ImageSize
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25MeteringMode
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25Parameters
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF25WBMode
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF26ShortenReleaseLag
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF27ReverseDialRotation
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF27Value
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF28NoQuickDialExpComp
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF29QuickDialSwitchOff
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF2DisableMeteringModes
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF2Value
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF30EnlargementMode
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF31OriginalDecisionData
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF3ManualExposureMetering
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF3Value
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF4ExposureTimeLimits
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF4ExposureTimeMax
http://ns.exiftool.ca/MakerNotes/CanonCustom/1.0/PF4ExposureTimeMin