diff --git a/bin/Changes b/bin/Changes index 1e1e781..afe2a83 100644 --- a/bin/Changes +++ b/bin/Changes @@ -7,6 +7,19 @@ RSS feed: https://exiftool.org/rss.xml Note: The most recent production release is Version 12.76. (Other versions are considered development releases, and are not uploaded to MetaCPAN.) +Sept. 25, 2024 - Version 12.97 + + - Added ability to ignore up to 4095 bytes of garbage at the end of an INDD + file with the -m option + - Added a new Canon RFLensType value (thanks Norbert Wasser) + - Added a new Nikon Z LensID + - Decode a number of new Nikon Z6_3 tags (thanks Warren Hatch) + - Decode a few more FujiFilm tags (thanks Greybeard) + - Enhanced %C format code to allow file-name collisions to be avoided by using + a colon instead of a decimal in the format modifier + - Fixed bug which could result in hang when using %C code in an output file + name + Sept. 1, 2024 - Version 12.96 - More improvements to handling of trailers on video files (and add ability to diff --git a/bin/META.json b/bin/META.json index 82b8a0d..973afba 100644 --- a/bin/META.json +++ b/bin/META.json @@ -50,5 +50,5 @@ } }, "release_status" : "stable", - "version" : "12.96" + "version" : "12.97" } diff --git a/bin/META.yml b/bin/META.yml index 8e95d09..bbb9acc 100644 --- a/bin/META.yml +++ b/bin/META.yml @@ -31,4 +31,4 @@ recommends: Time::HiRes: '0' requires: perl: '5.004' -version: '12.96' +version: '12.97' diff --git a/bin/README b/bin/README index c0e195c..487e396 100644 --- a/bin/README +++ b/bin/README @@ -109,8 +109,8 @@ your home directory, then you would type the following commands in a terminal window to extract and run ExifTool: cd ~/Desktop - gzip -dc Image-ExifTool-12.96.tar.gz | tar -xf - - cd Image-ExifTool-12.96 + gzip -dc Image-ExifTool-12.97.tar.gz | tar -xf - + cd Image-ExifTool-12.97 ./exiftool t/images/ExifTool.jpg Note: These commands extract meta information from one of the test images. diff --git a/bin/exiftool b/bin/exiftool index 995c8dd..6976b06 100755 --- a/bin/exiftool +++ b/bin/exiftool @@ -11,7 +11,7 @@ use strict; use warnings; require 5.004; -my $version = '12.96'; +my $version = '12.97'; # add our 'lib' directory to the include list BEFORE 'use Image::ExifTool' my $exePath; @@ -4301,17 +4301,20 @@ sub Num2Alpha($) sub NextUnusedFilename($;$) { my ($fmt, $okfile) = @_; - return $fmt unless $fmt =~ /%[-+]?\d*\.?\d*[lun]?[cC]/; + return $fmt unless $fmt =~ /%[-+]?\d*[.:]?\d*[lun]?[cC]/; my %sep = ( '-' => '-', '+' => '_' ); my ($copy, $alpha) = (0, 'a'); + my $lastFile; for (;;) { my ($filename, $pos) = ('', 0); - while ($fmt =~ /(%([-+]?)(\d*)(\.?)(\d*)([lun]?)([cC]))/g) { + while ($fmt =~ /(%([-+]?)(\d*)([.:]?)(\d*)([lun]?)([cC]))/g) { $filename .= substr($fmt, $pos, pos($fmt) - $pos - length($1)); $pos = pos($fmt); my ($sign, $wid, $dec, $wid2, $mod, $tok) = ($2, $3 || 0, $4, $5 || 0, $6, $7); my $seq; if ($tok eq 'C') { + # increment sequence number for %C on collision if ':' is used + $sign eq '-' ? ++$seqFileDir : ++$seqFileNum if $copy and $dec eq ':'; $seq = $wid + ($sign eq '-' ? $seqFileDir : $seqFileNum) - 1; $wid = $wid2; } else { @@ -4340,6 +4343,8 @@ sub NextUnusedFilename($;$) my ($fn, $ok) = (AbsPath($filename), AbsPath($okfile)); return $okfile if defined $fn and defined $ok and $fn eq $ok; } + return $filename if defined $lastFile and $lastFile eq $filename; + $lastFile = $filename; ++$copy; ++$alpha; } @@ -4639,6 +4644,10 @@ sub PrintErrors($$$) return $$info{Error}; } +#===================================================================================== +# NOTE: Be sure to update windows_exiftool.txt with any changes to this documentation! +#vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv + __END__ =head1 NAME @@ -5170,16 +5179,14 @@ B<-struct> option for details. E'-IEI'E) is not the same as interpolating its value inside a string (ie. E'-IE$I'E) for source tags which are list-type tags, -L, tag names containing wildcards, -or UserParam variables. When copying directly, the values of each matching -source tag are copied individually to the destination tag (as if they were -separate assignments). However, when interpolated inside a string, list -items and the values of shortcut tags are concatenated (with a separator set -by the B<-sep> option), and wildcards are not allowed. Also, UserParam -variables are available only when interpolated in a string. Another -difference is that a minor warning is generated if a tag doesn't exist when -interpolating its value in a string (with C<$>), but isn't when copying the -tag directly. +L, or tag names containing +wildcards. When copying directly, the values of each matching source tag +are copied individually to the destination tag (as if they were separate +assignments). However, when interpolated inside a string, list items and +the values of shortcut tags are concatenated (with a separator set by the +B<-sep> option), and wildcards are not allowed.Another difference is that a +minor warning is generated if a tag doesn't exist when interpolating its +value in a string (with C<$>), but isn't when copying the tag directly. Finally, the behaviour is different when a destination tag or group of C is used. When copying directly, a destination group and/or tag name @@ -5655,7 +5662,7 @@ with this command: produces output like this: - -- Generated by ExifTool 12.96 -- + -- Generated by ExifTool 12.97 -- File: a.jpg - 2003:10:31 15:44:19 (f/5.6, 1/60s, ISO 100) File: b.jpg - 2006:05:23 11:57:38 @@ -5897,7 +5904,13 @@ A leading '-' causes the number to be reset at the start of each new directory (in the original directory structure if the files are being moved), and '+' has no effect. The number before the decimal place gives the starting index, the number after the decimal place gives the field -width. The following examples show the output filenames when used with the +width. To preserve synchronization with the processed file number, by +default the copy number is not incremented to avoid file name collisions, so +any existing same-named file will cause an error. However using a colon +instead of a decimal point causes the number to be incremented to avoid +collisions with existing files. + +The following examples show the output filenames when used with the command C: -w %C%f.txt # 0rose.txt, 1star.txt, 2jet.txt diff --git a/bin/lib/Image/ExifTool.pm b/bin/lib/Image/ExifTool.pm index 3bac9cb..5f5f5f3 100644 --- a/bin/lib/Image/ExifTool.pm +++ b/bin/lib/Image/ExifTool.pm @@ -29,7 +29,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes %jpegMarker %specialTags %fileTypeLookup $testLen $exeDir %static_vars $advFmtSelf); -$VERSION = '12.96'; +$VERSION = '12.97'; $RELEASE = ''; @ISA = qw(Exporter); %EXPORT_TAGS = ( diff --git a/bin/lib/Image/ExifTool/Canon.pm b/bin/lib/Image/ExifTool/Canon.pm index b211367..e4471d0 100644 --- a/bin/lib/Image/ExifTool/Canon.pm +++ b/bin/lib/Image/ExifTool/Canon.pm @@ -6999,6 +6999,7 @@ my %ciMaxFocal = ( 314 => 'Canon RF 24-105mm F2.8 L IS USM Z', #42 315 => 'Canon RF-S 10-18mm F4.5-6.3 IS STM', #42 316 => 'Canon RF 35mm F1.4 L VCM', #42 + 318 => 'Canon RF 28-70mm F2.8 IS STM', #42 # Note: add new RF lenses to %canonLensTypes with ID 61182 }, }, diff --git a/bin/lib/Image/ExifTool/FujiFilm.pm b/bin/lib/Image/ExifTool/FujiFilm.pm index ce42735..9a6ede8 100644 --- a/bin/lib/Image/ExifTool/FujiFilm.pm +++ b/bin/lib/Image/ExifTool/FujiFilm.pm @@ -31,7 +31,7 @@ use vars qw($VERSION); use Image::ExifTool qw(:DataAccess :Utils); use Image::ExifTool::Exif; -$VERSION = '1.95'; +$VERSION = '1.96'; sub ProcessFujiDir($$$); sub ProcessFaceRec($$$); @@ -1252,6 +1252,28 @@ my %faceCategories = ( ValueConv => 'my @v=reverse split(" ",$val);"@v"', # reverse to show width first PrintConv => '$val=~tr/ /:/; $val', }, + 0x117 => { + Name => 'RawZoomActive', + Format => 'int32u', + Count => 1, + PrintConv => { 0 => 'No', 1 => 'Yes' }, + }, + 0x118 => { + Name => 'RawZoomTopLeft', + Format => 'int16u', + Count => 2, + Notes => 'relative to RawCroppedImageSize', + ValueConv => 'my @v=reverse split(" ",$val);"@v"', # reverse to show width first + PrintConv => '$val=~tr/ /x/; $val', + }, + 0x119 => { + Name => 'RawZoomSize', + Format => 'int16u', + Count => 2, + Notes => 'relative to RawCroppedImageSize', + ValueConv => 'my @v=reverse split(" ",$val);"@v"', # reverse to show width first + PrintConv => '$val=~tr/ /x/; $val', + }, 0x121 => [ { Name => 'RawImageSize', diff --git a/bin/lib/Image/ExifTool/InDesign.pm b/bin/lib/Image/ExifTool/InDesign.pm index edde79d..2131fef 100644 --- a/bin/lib/Image/ExifTool/InDesign.pm +++ b/bin/lib/Image/ExifTool/InDesign.pm @@ -14,7 +14,7 @@ use strict; use vars qw($VERSION); use Image::ExifTool qw(:DataAccess :Utils); -$VERSION = '1.07'; +$VERSION = '1.08'; # map for writing metadata to InDesign files (currently only write XMP) my %indMap = ( @@ -101,8 +101,22 @@ sub ProcessIND($$) for (;;) { $raf->Read($hdr, 32) or last; unless (length($hdr) == 32 and $hdr =~ /^\Q$objectHeaderGUID/) { - # this must be null padding or we have an error - $hdr =~ /^\0+$/ or $err = 'Corrupt file or unsupported InDesign version'; + # this must be null padding or we have a possible error + last if $hdr =~ /^\0+$/; + # (could be up to 4095 bytes of non-null garbage plus 4095 null bytes from ExifTool) + $raf->Read($buff, 8196) and $hdr .= $buff; + $hdr =~ s/\0+$//; # remove trailing nulls + if (length($hdr) > 4095) { + $err = 'Corrupt file or unsupported InDesign version'; + last; + } + my $non = 'Non-null padding at end of file'; + if (not $outfile) { + $et->Warn($non, 1); + } elsif (not $et->Error($non, 1)) { + Write($outfile, $hdr) or $err = 1; + $writeLen += length $hdr; + } last; } my $len = Get32u(\$hdr, 24); diff --git a/bin/lib/Image/ExifTool/Jpeg2000.pm b/bin/lib/Image/ExifTool/Jpeg2000.pm index 68c08ab..7428c11 100644 --- a/bin/lib/Image/ExifTool/Jpeg2000.pm +++ b/bin/lib/Image/ExifTool/Jpeg2000.pm @@ -1543,7 +1543,7 @@ sub ProcessJP2($$) # check to be sure this is a valid JPG2000 file return 0 unless $raf->Read($hdr,12) == 12; - unless ($hdr eq "\0\0\0\x0cjP \x0d\x0a\x87\x0a" or # (ref 1) + unless ($hdr eq "\0\0\0\x0cjP \x0d\x0a\x87\x0a" or # (ref 1) $hdr eq "\0\0\0\x0cjP\x1a\x1a\x0d\x0a\x87\x0a" or # (ref 2) $$et{IsJXL}) { diff --git a/bin/lib/Image/ExifTool/Nikon.pm b/bin/lib/Image/ExifTool/Nikon.pm index 6baf851..b2de819 100644 --- a/bin/lib/Image/ExifTool/Nikon.pm +++ b/bin/lib/Image/ExifTool/Nikon.pm @@ -65,7 +65,7 @@ use Image::ExifTool::Exif; use Image::ExifTool::GPS; use Image::ExifTool::XMP; -$VERSION = '4.37'; +$VERSION = '4.38'; sub LensIDConv($$$); sub ProcessNikonAVI($$$); @@ -955,6 +955,7 @@ my %hdrLevelZ8 = ( my %highFrameRateZ9 = ( 0 => 'Off', 1 => 'CH', + 2 => 'CH*', #28 (Z6III) 3 => 'C30', 5 => 'C60', 4 => 'C120', @@ -987,6 +988,39 @@ my %infoZSeries = ( Notes => 'Z Series cameras thru October 2023', ); +my %iSOAutoHiLimitZ6III = ( #28 + 5 => 'ISO 200', + 6 => 'ISO 250', + 7 => 'ISO 320', + 8 => 'ISO 400', + 9 => 'ISO 500', + 10 => 'ISO 640', + 11 => 'ISO 800', + 12 => 'ISO 1000', + 13 => 'ISO 1250', + 14 => 'ISO 1600', + 15 => 'ISO 2000', + 16 => 'ISO 2500', + 17 => 'ISO 3200', + 18 => 'ISO 4000', + 19 => 'ISO 5000', + 20 => 'ISO 6400', + 21 => 'ISO 8000', + 22 => 'ISO 10000', + 23 => 'ISO 12800', + 24 => 'ISO 16000', + 25 => 'ISO 20000', + 26 => 'ISO 25600', + 27 => 'ISO 32000', + 28 => 'ISO 40000', + 29 => 'ISO 51200', + 30 => 'ISO 64000', + 31 => 'ISO Hi 0.3', + 32 => 'ISO Hi 0.7', + 33 => 'ISO Hi 1.0', + 35 => 'ISO Hi 1.7', +); + my %iSOAutoHiLimitZ7 = ( 0 => 'ISO 64', 1 => 'ISO 80', @@ -1112,6 +1146,18 @@ my %movieFlickerReductionZ9 = ( 2 => '60Hz', ); +my %movieFrameRateZ6III = ( #28 + 0 => '240p', + 1 => '200p', + 2 => '120p', + 3 => '100p', + 4 => '60p', + 5 => '50p', + 6 => '30p', + 7 => '25p', + 8 => '24p', +); + my %movieFrameRateZ7 = ( 0 => '120p', 1 => '100p', @@ -1126,6 +1172,7 @@ my %movieFrameSizeZ9 = ( 1 => '1920x1080', 2 => '3840x2160', 3 => '7680x4320', + 7 => '5376x3024', #28 (Z6III) ); my %movieSlowMotion = ( @@ -1226,6 +1273,13 @@ my %secondarySlotFunctionZ9 = ( 3 => 'JPG Primary + JPG Secondary', ); +my %subjectDetectionAreaMZ6III = ( #28 + 0 => 'Off', + 1 => 'All', + 2 => 'Wide (L)', + 3 => 'Wide (S)', +); + my %subjectDetectionZ9 = ( 0 => 'Off', 1 => 'Auto', @@ -2465,7 +2519,16 @@ my %base64coord = ( ByteOrder => 'BigEndian', }, }, - { # (Z6_2 firmware version 1.00 and Z7II firmware versions 1.00 & 1.01, ref 28) + { # (Z6_3 firmware version 1.00, ref 28) + Condition => '$$valPt =~ /^0809/', + Name => 'ShotInfoZ6III', + SubDirectory => { + TagTable => 'Image::ExifTool::Nikon::ShotInfoZ6III', + DecryptStart => 4, + ByteOrder => 'LittleEndian', + }, + }, + { # (Z6_2 firmware version 1.00 and Z7_2 firmware versions 1.00 & 1.01, ref 28) # 0800=Z6/Z7 0801=Z50 0802=Z5 0803=Z6II/Z7II 0804=Zfc 0807=Z30 0808=Zf Condition => '$$valPt =~ /^080[0123478]/', Name => 'ShotInfoZ7II', @@ -5374,7 +5437,7 @@ my %nikonFocalConversions = ( %binaryDataAttrs, NOTES => 'Tags found in the encrypted LensData from cameras such as the Z6 and Z7.', GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, - DATAMEMBER => [ 0x03, 0x2f, 0x35, 0x4c, 0x56, 0x58 ], + DATAMEMBER => [ 0x03, 0x2f, 0x30, 0x4c, 0x56, 0x58 ], 0x00 => { Name => 'LensDataVersion', Format => 'string[4]', @@ -5478,6 +5541,7 @@ my %nikonFocalConversions = ( Condition => '$$self{NewLensData}', Notes => 'tags from here onward used for Nikkor Z lenses only', Format => 'int16u', + RawConv => '$$self{LensID} = $val', #28 non-zero = > Native Z lens; 0 => DSLR lens via FTZ style adapter or non-Nikon Z-mount lens (or no lens attached) PrintConv => { 1 => 'Nikkor Z 24-70mm f/4 S', 2 => 'Nikkor Z 14-30mm f/4 S', @@ -5517,19 +5581,21 @@ my %nikonFocalConversions = ( 45 => 'Nikkor Z 600mm f/6.3 VR S', #28 46 => 'Nikkor Z 135mm f/1.8 S Plena', #28 48 => 'Nikkor Z 28-400mm f/4-8 VR', #30 + 2305 => 'Laowa FFII 10mm F2.8 C&D Dreamer', #30 32768 => 'Nikkor Z 400mm f/2.8 TC VR S TC-1.4x', #28 32769 => 'Nikkor Z 600mm f/4 TC VR S TC-1.4x', #28 }, }, - 0x35 => { #28 - Name => 'LensMountType', - RawConv => '$$self{LensMountType} = $val', # 0=> DSLR lens via FTZ style adapter; 1=> Native Z lens; - Format => 'int8u', - #Unknown => 1, - PrintConv => { - 0 => 'F-mount Lens', - 1 => 'Z-mount Lens', - }, + 0x34 => { #28 + Name => 'LensFirmwareVersion', + Condition => '$$self{LensID} and $$self{LensID} != 0', #only valid for Z-mount lenses + Format => 'int16u', #4 bits each for version, release amd modification in VRM scheme. + PrintConv => q{ + my $version = int($val / 256); + my $release = int(($val - 256 * $version)/16); + my $modification = $val - (256 * $version + 16 * $release); + return sprintf("%.0f.%.0f.%.0f", $version,$release,$modification); + }, }, 0x36 => { #PH Name => 'MaxAperture', @@ -5562,41 +5628,50 @@ my %nikonFocalConversions = ( 0x4c => { #28 Name => 'FocusDistanceRangeWidth', #reflects the number of discrete absolute lens positions that are mapped to the reported FocusDistance. Will be 1 near CFD reflecting very narrow focus distance bands (i.e., quite accurate). Near Infinity will be something like 32. Note: 0 at infinity. Format => 'int8u', - Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1 and $$self{FocusMode} ne "Manual"', + Condition => '$$self{LensID} and $$self{LensID} != 0 and $$self{FocusMode} ne "Manual"', RawConv => '$$self{FocusDistanceRangeWidth} = $val', Unknown => 1, }, 0x4e => { #28 Name => 'FocusDistance', Format => 'int16u', - Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1', + Condition => '$$self{LensID} and $$self{LensID} != 0', #only valid for Z-mount lenses RawConv => '$val = $val/256', # 1st byte is the fractional component. This byte was not previously considered in the legacy calculation (which only used the 2nd byte). When 2nd byte < 80; distance is < 1 meter ValueConv => '2**(($val-80)/12)', # in m #slighly more accurate than the legacy calcualtion of '0.01 * 10**($val/40)'. Tested at all focus positions using the 105mm,70-200mm & 600mm ValueConvInv => '$val>0 ? log(12*($val+80)/log(2) : 0', #was '$val>0 ? 40*log($val*100)/log(10) : 0' PrintConv => q{ - (defined $$self{FocusStepsFromInfinity} and not $$self{FocusStepsFromInfinity}) ? "Inf" : $val < 1 ? $val < 0.35 ? sprintf("%.4f m", $val): sprintf("%.3f m", $val): sprintf("%.2f m", $val), #distances less than 35mm are quite accurate with increasingly less precision past 1m + (defined $$self{FocusStepsFromInfinity} and $$self{FocusStepsFromInfinity} eq 0) ? "Inf" : $val < 100 ? $val < 10 ? $val < 1 ? $val < 0.35 ? sprintf("%.4f m", $val): sprintf("%.3f m", $val): sprintf("%.2f m", $val) : sprintf("%.1f m", $val) : sprintf("%.0f m", $val), }, }, - 0x56 => { #28 #not valif for focus mode M + 0x56 => { #28 #not valid for focus mode M Name => 'LensDriveEnd', # byte contains: 1 at CFD/MOD; 2 at Infinity; 0 otherwise - Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1 and $$self{FocusMode} ne "Manual"', + Condition => '$$self{LensID} and $$self{LensID} != 0 and $$self{FocusMode} ne "Manual"', #valid for Z-mount lenses in focus modes other than M Format => 'int8u', RawConv => 'unless (defined $$self{FocusDistanceRangeWidth} and not $$self{FocusDistanceRangeWidth}) { if ($val == 0 ) {$$self{LensDriveEnd} = "No"} else { $$self{LensDriveEnd} = "CFD"}; } else{ $$self{LensDriveEnd} = "Inf"}', Unknown => 1, }, 0x58 => { #28 Name => 'FocusStepsFromInfinity', - Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1', #valid for both AF and manual focus modes + Condition => '$$self{LensID} and $$self{LensID} != 0', #valid for Z-mount lenses in both AF and manual focus modes Format => 'int8u', RawConv => '$$self{FocusStepsFromInfinity} = $val', # 0 at Infinity, otherwise a small positive number monotonically increasing towards CFD. Unknown => 1, }, 0x5a => { #28 Name => 'LensPositionAbsolute', # <=0 at infinity. Typical value at CFD might be 58000. Only valid for Z-mount lenses. - Condition => '$$self{NewLensData} and $$self{LensMountType} and $$self{LensMountType} == 1', + Condition => '$$self{LensID} and $$self{LensID} != 0', # Only valid for Z-mount lenses. Format => 'int32s', #Unknown => 1, }, + 0x5f => { #28 + Name => 'LensMountType', + Format => 'int8u', + Mask => 0x01, + PrintConv => { + 0 => 'Z-mount', + 1 => 'F-mount', + }, + }, ); # Unknown Nikon lens data (note: data may need decrypting after byte 4) @@ -5637,38 +5712,6 @@ my %nikonFocalConversions = ( Notes => 'P6000', PrintConv => \%offOn, }, - # for Nikon Z6iii JPG and RAW images (version 0809), - # the offset table starts at 0x24 and is as follows - # JPG Offset Size NEF Offset Size - # 0) 0x0000 0 0) 0x009c 21604 - # 1) 0x0000 0 1) 0x5500 6008 - # 2) 0x009c 2528 2) 0x6c78 2528 - # 3) 0x0a7c 200 3) 0x7658 200 - # 4) 0x0b44 2488 4) 0x7720 2488 - # 5) 0x14fc 1468 5) 0x80d8 1468 - # 6) 0x1ab8 1032 6) 0x8694 1032 - # 7) 0x1ec0 256 7) 0x8a9c 256 - # 8) 0x1fc0 800 8) 0x8b9c 800 - # 9) 0x22e0 144 9) 0x8ebc 144 - # 10) 0x2370 64 10) 0x8f4c 64 - # 11) 0x0000 0 11) 0x0000 0 - # 12) 0x23b0 5009 12) 0x8f8c 5009 - # 13) 0x3741 1536 13) 0xa31d 1536 - # 14) 0x3d41 11928 14) 0xa91d 11928 - # 15) 0x6bd9 5937 15) 0xd7b5 5937 - # 16) 0x830a 500 16) 0xeee6 500 - # 17) 0x84fe 160 17) 0xf0da 160 - # 18) 0x859e 464 18) 0xf17a 464 - # 19) 0x876e 8 19) 0xf34a 8 - # 20) 0x8776 64 20) 0xf352 64 - # 21) 0x87b6 6 21) 0xf392 6 - # 22) 0x87bc 48 22) 0xf398 48 - # 23) 0x87ec 20 23) 0xf3c8 20 - # 24) 0x8800 108 24) 0xf3dc 108 - # 25) 0x886c 8 25) 0xf448 8 - # 26) 0x8874 2420 26) 0xf450 2420 - # 27) 0x0000 0 27) 0x0000 0 - # 28) 0x0000 0 28) 0x0000 0 0x66 => { Name => 'VR_0x66', Condition => '$$self{ShotInfoVersion} eq "0204"', @@ -8292,6 +8335,69 @@ my %nikonFocalConversions = ( }, ); +# shot information for the Z6III firmware 1.00 (encrypted) - ref 28 +%Image::ExifTool::Nikon::ShotInfoZ6III = ( + PROCESS_PROC => \&ProcessNikonEncrypted, + WRITE_PROC => \&ProcessNikonEncrypted, + CHECK_PROC => \&Image::ExifTool::CheckBinaryData, + VARS => { ID_LABEL => 'Index', NIKON_OFFSETS => 0x24 }, + DATAMEMBER => [ 0x04 ], + IS_SUBDIR => [ 0x88, 0x90 ], + WRITABLE => 1, + GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, + NOTES => 'These tags are extracted from encrypted data in images from the Z6III.', + 0x00 => { + Name => 'ShotInfoVersion', + Format => 'string[4]', + Writable => 0, + }, + 0x04 => { + Name => 'FirmwareVersion', + DataMember => 'FirmwareVersion', + Format => 'string[8]', + Writable => 0, + RawConv => '$$self{FirmwareVersion} = $val', + }, + 0x0e => { + Name => 'FirmwareVersion2', + Format => 'string[8]', + Writable => 0, + Hidden => 1, + }, + 0x18 => { + Name => 'FirmwareVersion3', + Format => 'string[8]', + Writable => 0, + Hidden => 1, + }, + 0x24 => { + Name => 'NumberOffsets', # number of entries in offset table. offsets are from start of ShotInfo data. + Format => 'int32u', + Writable => 0, + Hidden => 1, + }, + #0x28 Offset1 - non-zero for NEF only + #0x2c Offset2 - non-zero for NEF only + #0x38 Offset5 - contains SkinSoftening at 0x2d1 - mapping is %offLowNormalHighZ7 + 0x88 => { + Name => 'OrientationOffset', + Condition => '$$self{ShutterMode} and $$self{ShutterMode} ne 96', #not valid for C30/C60/C120 + Format => 'int32u', + SubDirectory => { + TagTable => 'Image::ExifTool::Nikon::OrientationInfo', + Start => '$val', + } + }, + 0x90 => { + Name => 'MenuOffset', + Format => 'int32u', + SubDirectory => { + TagTable => 'Image::ExifTool::Nikon::MenuSettingsZ6III', + Start => '$val', + }, + }, +); + # shot information for the Z7II firmware 1.00 (encrypted) - ref 28 %Image::ExifTool::Nikon::ShotInfoZ7II = ( PROCESS_PROC => \&ProcessNikonEncrypted, @@ -8680,7 +8786,7 @@ my %nikonFocalConversions = ( my $DynamicL = 2; my $start = 502; #FX, 16:9 & 1:1 formats - my $increment = 259; #FX, & 16:9 formats + my $increment = 259; #FX & 16:9 formats $start = $start + 5 * $increment if $imageArea == $OneToOne; # need to provide additional offset for the cropped horizontal pixels in 1:1 (19 vs 29 horizontal focus positions) $start = $start - $increment if $val < 49 and ($imageArea == $FX or $imageArea == $WideScreen); #calculations for the left side of the frames are offset by 1 position from the right side @@ -8994,6 +9100,203 @@ my %nikonFocalConversions = ( }, ); +%Image::ExifTool::Nikon::MenuSettingsZ6III = ( + %binaryDataAttrs, + GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, + NOTES => 'These tags are used by the Z6III.', + DATAMEMBER => [ 360, 444, 492, 496, 724, 748, 832, 838, 852, 880, 904, 1050 ], + IS_SUBDIR => [ 1255 ], + 360 => { + Name => 'SingleFrame', #0=> Single Frame 1=> one of the continuous modes + Hidden => 1, + RawConv => '$$self{SingleFrame} = $val', + }, + 364 => { + Name => 'HighFrameRate', #CH and C30/C60/C120 but not CL + PrintConv => \%highFrameRateZ9, + }, + 444 => { + Name => 'MultipleExposureMode', + RawConv => '$$self{MultipleExposureMode} = $val', + PrintConv => \%multipleExposureModeZ9, + }, + 446 => {Name => 'MultiExposureShots', Condition => '$$self{MultipleExposureMode} != 0'}, #range 2-9 + 476 => { + Name => 'IntervalDurationHours', + Format => 'int32u', + }, + 480 => { + Name => 'IntervalDurationMinutes', + Format => 'int32u', + }, + 484 => { + Name => 'IntervalDurationSeconds', + Format => 'int32u', + }, + 492 => { + Name => 'Intervals', + Format => 'int32u', + RawConv => '$$self{IntervalShootingIntervals} = $val', + }, + 496 => { + Name => 'ShotsPerInterval', + Format => 'int32u', + RawConv => '$$self{IntervalShootingShotsPerInterval} = $val', + }, + 500 => { + Name => 'IntervalExposureSmoothing', + Format => 'int8u', + PrintConv => \%offOn, + }, + 502 => { + Name => 'IntervalPriority', + Format => 'int8u', + PrintConv => \%offOn, + }, + 536 => { + Name => 'FocusShiftNumberShots', + }, + 540 => { + Name => 'FocusShiftStepWidth', + }, + 544 => { + Name => 'FocusShiftInterval', + PrintConv => '$val == 1? "1 Second" : sprintf("%.0f Seconds",$val)', + }, + 548 => { + Name => 'FocusShiftExposureLock', + PrintConv => \%offOn, + }, + 648 => { Name => 'AutoISO', PrintConv => \%offOn }, + 650 => { + Name => 'ISOAutoHiLimit', + Format => 'int16u', + Unknown => 1, + ValueConv => '($val-104)/8', + ValueConvInv => '8 * ($val + 104)', + PrintConv => \%iSOAutoHiLimitZ6III, + }, + #652 => ISOAutoFlashLimit # only when ISOAutoFlashLimitSameAsHiLimit == 0 + #654 => ISOAutoFlashLimitSameAsHiLimit 1=> Same as ISOAutoHiLimit 0=> Separate (use ISOAutoFlashLimit) + 718 => { + Name => 'DiffractionCompensation', + Format => 'int8u', + PrintConv => \%offOn, + }, + 719 => { + Name => 'AutoDistortionControl', + Format => 'int8u', + PrintConv => \%offOn, + }, + 720 => { Name => 'FlickerReductionShooting',PrintConv => \%offOn }, + 722 => { Name => 'NikonMeteringMode', PrintConv => \%meteringModeZ7}, + 724 => { + Name => 'FlashControlMode', + RawConv => '$$self{FlashControlMode} = $val', + PrintConv => \%flashControlModeZ7, + }, + 730 => { + Name => 'FlashGNDistance', + Condition => '$$self{FlashControlMode} == 2', + Unknown => 1, + ValueConv => '$val + 3', + PrintConv => \%flashGNDistance, + }, + 734 => { + Name => 'FlashOutput', # range[0,24] with 0=>Full; 1=>50%; then decreasing flash power in 1/3 stops to 0.39% (1/256 full power). also found in FlashInfoUnknown at offset 0x0a (with different mappings) + Condition => '$$self{FlashControlMode} >= 3', + Unknown => 1, + ValueConv => '2 ** (-$val/3)', + ValueConvInv => '$val>0 ? -3*log($val)/log(2) : 0', + PrintConv => '$val>0.99 ? "Full" : sprintf("%.1f%%",$val*100)', + PrintConvInv => '$val=~/(\d+)/ ? $1/100 : 1', + }, + 742 => { Name => 'FlashWirelessOption', PrintConv => \%flashWirelessOptionZ7, Unknown => 1 }, + 744 => { Name => 'FlashRemoteControl', PrintConv => \%flashRemoteControlZ7, Unknown => 1 }, + 748 => { + Name => 'FlashMasterControlMode', # tag name chosen for compatibility with those found in FlashInfo0102 & FlashInfo0103 + RawConv => '$$self{FlashGroupOptionsMasterMode} = $val', + PrintConv => \%flashGroupOptionsMode, + }, + 750 => { + Name => 'FlashMasterCompensation', + Format => 'int8s', + Condition => '$$self{FlashGroupOptionsMasterMode} != 3', # other than 'Off' + Unknown => 1, + ValueConv => '$val/6', + ValueConvInv => '6 * $val', + PrintConv => '$val ? sprintf("%+.1f",$val) : 0', + PrintConvInv => '$val', + }, + 754 => { + Name => 'FlashMasterOutput', + Unknown => 1, + Condition => '$$self{FlashGroupOptionsMasterMode} == 1', # only for Mode=M + ValueConv => '2 ** (-$val/3)', + ValueConvInv => '$val>0 ? -3*log($val)/log(2) : 0', + PrintConv => '$val>0.99 ? "Full" : sprintf("%.1f%%",$val*100)', + PrintConvInv => '$val=~/(\d+)/ ? $1/100 : 1', + }, + 832 => { Name => 'AFAreaMode', RawConv => '$$self{AFAreaMode} = $val', PrintConv => \%aFAreaModeZ9}, + 834 => { Name => 'VRMode', PrintConv => \%vRModeZ9}, + 838 => { + Name => 'BracketSet', + RawConv => '$$self{BracketSet} = $val', + PrintConv => \%bracketSetZ9, + }, + 840 => { + Name => 'BracketProgram', + Condition => '$$self{BracketSet} < 3', + Notes => 'AE and/or Flash Bracketing', + PrintConv => \%bracketProgramZ9, + }, + 842 => { + Name => 'BracketIncrement', + Condition => '$$self{BracketSet} < 3', + Notes => 'AE and/or Flash Bracketing', + PrintConv => \%bracketIncrementZ9, + }, + 852 => { Name => 'HDR', RawConv => '$$self{HDR} = $val', PrintConv => \%multipleExposureModeZ9 }, + 858 => { Name => 'SecondarySlotFunction', PrintConv => \%secondarySlotFunctionZ9 }, + 864 => { Name => 'HDRLevel', Condition => '$$self{HDR} ne 0', PrintConv => \%hdrLevelZ8 }, + 868 => { Name => 'Slot2JpgSize', PrintConv => { 0 => 'Large (6048x4032)', 1 => 'Medium (4528x3024)', 2 => 'Small (3024x2016)' }, Unknown => 1}, + 878 => { Name => 'SubjectDetection', PrintConv => \%subjectDetectionZ9 }, + 880 => { + Name => 'DynamicAFAreaSize', + Condition => '$$self{AFAreaMode} == 2', + RawConv => '$$self{DynamicAFAreaSize} = $val', + PrintConv => \%dynamicAfAreaModesZ9, + }, + 884 => { Name => 'ToneMap', PrintConv => { 0 => 'SDR', 1 => 'HLG' }, Unknown => 1 }, + 888 => { Name => 'PortraitImpressionBalance', PrintConv => \%portraitImpressionBalanceZ8 }, + 902 => { Name => 'HighFrequencyFlickerReduction', PrintConv => \%offOn, Unknown => 1 }, + 904 => { Name => 'PixelShiftShooting', RawConv => '$$self{PixelShiftShooting} = $val', PrintConv => \%multipleExposureModeZ9 }, #off/on/on (series) + 906 => { Name => 'PixelShiftNumberShots', Condition => '$$self{PixelShiftShooting} > 0', PrintConv => \%pixelShiftNumberShots }, + 908 => { Name => 'PixelShiftDelay', Condition => '$$self{PixelShiftShooting} > 0', PrintConv => '$val == 0? "No Delay" : sprintf("%.0f sec",$val)' }, #seconds in set {0,1,2,3,5,10} + 910 => { Name => 'PixelShiftInterval', Condition => '$$self{PixelShiftShooting} > 0', PrintConv => '$val == 0? "No Delay" : sprintf("%.0f sec",$val)' }, #seconds in integer range [0,30] + 1002 => { Name => 'SubjectDetectionAreaMF', PrintConv => \%subjectDetectionAreaMZ6III }, #new tag with Z6III + 1004 => { Name => 'LinkVRToFocusPoint', PrintConv => \%offOn, Unknown => 1 }, #new tag with Z6III + #1044 => { Name => 'MovieFrameRateH264',PrintConv => \%movieFrameRateZ6III, Unknown => 1 }, #new tag with Z6III - only valid for H.264, frame rates for other movie types are at 1164 + 1046 => { Name => 'MovieSlowMotion', PrintConv => \%movieSlowMotion, Unknown => 1 }, + 1050 => { Name => 'MovieType', RawConv => '$$self{MovieType} = $val' , PrintConv => \%movieTypeZ9}, + 1162 => { Name => 'MovieFrameSize', PrintConv => \%movieFrameSizeZ9, Unknown => 1 }, + 1164 => { Name => 'MovieFrameRate', Condition => '$$self{MovieType} != 1', PrintConv => \%movieFrameRateZ6III, Unknown => 1 }, + 1255 => { + Name => 'CustomSettingsZ6III', + Format => 'undef[700]', + SubDirectory => { TagTable => 'Image::ExifTool::NikonCustom::SettingsZ6III' }, + }, + 2300 => { Name => 'Language', PrintConv => \%languageZ9, Unknown => 1 }, + 2302 => { Name => 'TimeZone', PrintConv => \%timeZoneZ9 }, + 2308 => { Name => 'MonitorBrightness', PrintConv => \%monitorBrightnessZ9, Unknown => 1 }, # settings: -5 to +5 and Lo1, Lo2, Hi1, Hi2 + 2444 => { Name => 'EmptySlotRelease', PrintConv => { 0 => 'Disable Release', 1 => 'Enable Release' }, Unknown => 1 }, + 2450 => { Name => 'EnergySavingMode', PrintConv => \%offOn, Unknown => 1 }, + 2476 => { Name => 'USBPowerDelivery', PrintConv => \%offOn, Unknown => 1 }, + 2480 => { Name => 'SaveFocusPosition', PrintConv => \%offOn, Unknown => 1 }, + 2487 => { Name => 'SilentPhotography', PrintConv => \%offOn, Unknown => 1 }, + 2496 => { Name => 'AirplaneMode', PrintConv => \%offOn, Unknown => 1 }, +), + %Image::ExifTool::Nikon::MenuSettingsZ7II = ( %binaryDataAttrs, GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, @@ -9079,16 +9382,6 @@ my %nikonFocalConversions = ( PrintConv => \%offOn, }, #324 => {Name => 'FlickerReductionShooting',}, # redundant with tag in NikonSettings - 326 => { - Name => 'NikonMeteringMode', - Unknown => 1, - PrintConv => { - 0 => 'Matrix', - 1 => 'Center', - 2 => 'Spot', - 3 => 'Highlight' - }, - }, 326 => { Name => 'NikonMeteringMode', PrintConv => \%meteringModeZ7}, 328 => { Name => 'FlashControlMode', # this and nearby tag values for flash may be set from either the Photo Shooting Menu or using the Flash unit menu diff --git a/bin/lib/Image/ExifTool/NikonCustom.pm b/bin/lib/Image/ExifTool/NikonCustom.pm index 3a908cb..a9debb9 100644 --- a/bin/lib/Image/ExifTool/NikonCustom.pm +++ b/bin/lib/Image/ExifTool/NikonCustom.pm @@ -15,7 +15,7 @@ package Image::ExifTool::NikonCustom; use strict; use vars qw($VERSION @ISA @EXPORT_OK %buttonsZ9); -$VERSION = '1.25'; +$VERSION = '1.26'; @ISA = qw(Exporter); @EXPORT_OK = qw(%buttonsZ9); @@ -94,6 +94,7 @@ $VERSION = '1.25'; 89 => 'Set Picture Control (HLG)', 90 => 'Skin Softening', 91 => 'Portrait Impression Balance', + 92 => 'Fast AF-On', 97 => 'High Frequency Flicker Reduction', 98 => 'Switch FX/DX', 99 => 'View Mode (Photo LV)', @@ -113,7 +114,7 @@ $VERSION = '1.25'; 115 => 'Delete', 116 => 'Pixel Shift Shooting', 117 => 'Cycle AF-area Mode', - 118 => 'Raw Processing (Current)', #118-131 are Retouch options + 118 => 'Raw Processing (Current)', #118-131 are Playback Retouch options 119 => 'Raw Processing (Multiple)', 120 => 'Trim', 121 => 'Resize (Current)', @@ -129,6 +130,103 @@ $VERSION = '1.25'; 131 => 'Motion Blend', }, ); +my %buttonsZ6III= ( + SeparateTable => 'ButtonsZ6III', + PrintConv => { + 0 => 'None', + 1 => 'Preview', + 3 => 'FV Lock', + 4 => 'AE/AF Lock', + 5 => 'AE Lock Only', + 6 => 'AE Lock (reset on release)', + 7 => 'AE Lock (hold)', + 8 => 'AF Lock Only', + 9 => 'AF-On', + 10 => 'Flash Disable/Enable', + 11 => 'Bracketing Burst', + 12 => '+NEF(RAW)', + 18 => 'Virtual Horizon', + 19 => 'Synchronized Release', + 20 => 'My Menu', + 21 => 'My Menu Top Item', + 22 => 'Playback', + 23 => 'Rating', + 24 => 'Protect', + 25 => 'Zoom', + 26 => 'Focus Peaking', + 27 => 'Flash Mode/Compensation', + 28 => 'Image Area', + 30 => 'Non-CPU Lens', + 31 => 'Active-D Lighting', + 32 => 'Exposure Delay Mode', + 33 => '1 Stop Speed/Aperture', + 34 => 'White Balance', + 35 => 'Metering', + 36 => 'Auto Bracketing', + 37 => 'Multiple Exposure', + 38 => 'HDR Overlay', + 39 => 'Picture Control', + 40 => 'Quality', + 41 => 'Focus Mode/AF AreaMode', + 42 => 'Select Center Focus Point', + 44 => 'Record Movie', + 45 => 'Thumbnail On/Off', + 46 => 'View Histograms', + 47 => 'Choose Folder', + 48 => 'Power Aperture (Open)', + 49 => 'Power Aperture (Close)', + 52 => 'Microphone Sensitivity', + 53 => 'Release Mode', + 57 => 'Preset Focus Point', + 58 => 'AE/AWB Lock (hold)', + 59 => 'AF-AreaMode', + 60 => 'AF-AreaMode + AF-On', + 61 => 'Recall Shooting Functions', + 64 => 'Filtered Playback', + 65 => 'Same as AF-On', + 66 => 'Voice Memo', + 70 => 'Photo Shooting Bank', + 71 => 'ISO', + 72 => 'Shooting Mode', + 73 => 'Exposure Compensation', + 76 => 'Silent Mode', + 78 => 'LiveView Information', + 79 => 'AWB Lock (hold)', + 80 => 'Grid Display', + 81 => 'Starlight View', + 82 => 'Select To Send (PC)', + 83 => 'Select To Send (FTP)', + 84 => 'Pattern Tone Range', + 85 => 'Control Lock', + 86 => 'Save Focus Position', + 87 => 'Recall Focus Position', + 88 => 'Recall Shooting Functions (Hold)', + 89 => 'Set Picture Control (HLG)', + 90 => 'Skin Softening', + 91 => 'Portrait Impression Balance', + 97 => 'High Frequency Flicker Reduction', + 98 => 'Switch FX/DX', + 99 => 'View Mode (Photo LV)', + 100 => 'Photo Flicker Reduction', + 101 => 'Filtered Playback (Select Criteria)', + 103 => 'Start Series Playback', + 104 => 'View Assist', + 105 => 'Hi-Res Zoom+', + 106 => 'Hi-Res Zoom-', + 108 => 'Override Other Cameras', + 109 => 'DISP - Cycle Information Display (shooting)', # Shooting Mode + 110 => 'DISP - Cycle Information Display (playback)', # Playback mode + 111 => 'Resume Shooting', + 112 => 'Switch Eyes', + 113 => 'Power Zoom +', + 114 => 'Power Zoom -', + 115 => 'Delete', + 116 => 'Pixel Shift Shooting', + 117 => 'Cycle AF-area Mode', + 118 => 'Pixel Shift Shooting', + 119 => 'Move Focus Point', + }, +); my %dialsZ9 = ( 0 => '1 Frame', 1 => '10 Frames', @@ -199,6 +297,17 @@ my %thirdHalfFull = ( 1 => '1/2 EV', 2 => '1 EV', ); +my %touchFnAreaZ6III = ( + 0 => 'Entire Frame', + 1 => 'Right Half', + 2 => 'Top Right Quadrant', + 3 => 'Bottom Right Quadrant', + 4 => 'Left Half', + 5 => 'Top Left Quadrant', + 6 => 'Bottom Left Quadrant', + 7 => 'Top Half', + 8 => 'Bottom Half', +); my %limitNolimit = ( 0 => 'Limit', 1 => 'No Limit' ); my %offOn = ( 0 => 'Off', 1 => 'On' ); @@ -9700,6 +9809,308 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' ); }, ); +# Z6III custom settings (ref 1) #base at offset27 + 1255 (firmware 1.0.0) +%Image::ExifTool::NikonCustom::SettingsZ6III = ( + PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData, + WRITE_PROC => \&Image::ExifTool::WriteBinaryData, + CHECK_PROC => \&Image::ExifTool::CheckBinaryData, + WRITABLE => 1, + FIRST_ENTRY => 0, + GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' }, + NOTES => 'Custom settings for the Z6III.', + DATAMEMBER => [ 189 ], + 3 => { # CSa1 + Name => 'AF-CPrioritySelection', + PrintConv => { + 0 => 'Release', + 1 => 'Release + Focus', + 3 => 'Focus', + }, + }, + 5 => { Name => 'AF-SPrioritySelection', PrintConv => {0 => 'Release',1 => 'Focus'}}, #CSa2 + 7 => { # CSa3 #when AFAreaMode is 3D-tracking, blocked shot response will be 3, regardless of this setting + Name => 'BlockShotAFResponse', + PrintConv => { + 1 => '1 (Quick)', + 2 => '2', + 3 => '3 (Normal)', + 4 => '4', + 5 => '5 (Delayed)', + }, + }, + 11 => {Name => 'AFPointSel',PrintConv => { 0 => 'Use All',1 => 'Use Half' }}, # CSa4 + 13 => { # CSa5 + Name => 'StoreByOrientation', + PrintConv => { + 0 => 'Off', + 1 => 'Focus Point', + 2 => 'Focus Point and AF-area mode', + }, + }, + 15 => { Name => 'AFActivation', PrintConv => {0 => 'AF-On Only', 1 => 'Shutter/AF-On'}}, # CSa6-a + 16 => { Name => 'AF-OnOutOfFocusRelease', PrintConv => {0 => 'Disable', 1 => 'Enable'}, Unknown => 1}, # CSa6-b + 17 => { Name => 'LimitAF-AreaModeSelPinpoint', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 19 => { Name => 'LimitAF-AreaModeSelWideAF_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 20 => { Name => 'LimitAF-AreaModeSelWideAF_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 21 => { Name => 'LimitAFAreaModeSelAuto', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 22 => { Name => 'FocusPointWrap', PrintConv => { 0 => 'No Wrap', 1 => 'Wrap' }, Unknown => 1 }, # CSa10 + 23 => { Name => 'ManualFocusPointIllumination', PrintConv => {0 => 'On During Focus Point Selection Only', 1 => 'On', }, Unknown => 1 }, # CSa10a + 24 => { Name => 'DynamicAreaAFAssist', PrintConv => { 0 => 'Focus Point Only',1 => 'Focus and Surrounding Points',}, Unknown => 1 }, # CSa10b + + 26 => { Name => 'AF-AssistIlluminator', PrintConv => \%offOn }, # CSa11 + 27 => { Name => 'ManualFocusRingInAFMode', PrintConv => \%offOn }, # CSa14 + 29 => { Name => 'ExposureControlStepSize', PrintConv => \%thirdHalfFull }, # CSb2 + 31 => { # CSb3 + Name => 'EasyExposureCompensation', + PrintConv => { + 0 => 'Off', + 1 => 'On', + 2 => 'On (auto reset)', + }, + }, + 33 => { # CSb5 + Name => 'CenterWeightedAreaSize', + PrintConv => { + 0 => 'Standard', + 1 => 'Small', + 4 => 'Average', + }, + }, + 35 => { # CSb6-a + Name => 'FineTuneOptMatrixMetering', + Format => 'int8s', + ValueConv => '$val / 6', + ValueConvInv => 'int($val*6)', + PrintConv => '$val ? sprintf("%+.2f", $val) : 0', + PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)', + }, + 37 => { # CSb6-b + Name => 'FineTuneOptCenterWeighted', + Format => 'int8s', + ValueConv => '$val / 6', + ValueConvInv => 'int($val*6)', + PrintConv => '$val ? sprintf("%+.2f", $val) : 0', + PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)', + }, + 39 => { # CSb6-c + Name => 'FineTuneOptSpotMetering', + Format => 'int8s', + ValueConv => '$val / 6', + ValueConvInv => 'int($val*6)', + PrintConv => '$val ? sprintf("%+.2f", $val) : 0', + PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)', + }, + 41 => { # CSb6-d + Name => 'FineTuneOptHighlightWeighted', + Format => 'int8s', + ValueConv => '$val / 6', + ValueConvInv => 'int($val*6)', + PrintConv => '$val ? sprintf("%+.2f", $val) : 0', + PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)', + }, + 43 => { # CSc1 + Name => 'ShutterReleaseButtonAE-L', + PrintConv => { + 0 => 'Off', + 1 => 'On (Half Press)', + 2 => 'On (Burst Mode)', + }, + }, + 45 => { # CSc2-a + Name => 'SelfTimerTime', + PrintConv => { + 0 => '2 s', + 1 => '5 s', + 2 => '10 s', + 3 => '20 s', + }, + }, + 49 => { Name => 'SelfTimerShotCount', }, # CSc2-b 1-9 + 53 => { # CSc2-c + Name => 'SelfTimerShotInterval', + PrintConv => { + 0 => '0.5 s', + 1 => '1 s', + 2 => '2 s', + 3 => '3 s', + }, + }, + 55 => { Name => 'PlaybackMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc3-a + 57 => { Name => 'MenuMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc3-b + 59 => { Name => 'ImageReviewMonitorOffTime', %powerOffDelayTimesZ9 }, # CSc3-d + 61 => { Name => 'ShootingInfoMonitorOffTime',%powerOffDelayTimesZ9 }, # CSc3-c + + 63 => { Name => 'CLModeShootingSpeed', ValueConv => '$val + 1', ValueConvInv => '$val - 1', PrintConv => '"$val fps"', PrintConvInv => '$val=~s/\s*fps//i; $val' }, # CSd1b + 65 => { # CSd2 # values: 1-200 & 'No Limit' + Name => 'MaxContinuousRelease', + Format => 'int16s', + ValueConv => '($val eq -1 ? \'No Limit\' : $val ) ', + }, + 69 => { Name => 'SyncReleaseMode', PrintConv => { 0 => 'No Sync', 1 => 'Sync' }, Unknown => 1 }, # CSd4 + 75 => { Name => 'LimitSelectableImageAreaDX', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-1 + 76 => { Name => 'LimitSelectableImageArea1To1', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-2 + 77 => { Name => 'LimitSelectableImageArea16To9', PrintConv => \%limitNolimit, Unknown => 1 }, # CSd6-3 + 78 => { Name => 'FileNumberSequence', PrintConv => \%offOn }, # CSd7 + 81 => { #CSa12b + Name => 'FocusPeakingLevel', + Unknown => 1, + PrintConv => { + 0 => 'High Sensitivity', + 1 => 'Standard Sensitivity', + 2 => 'Low Sensitivity', + }, + }, + 83 => { #CSa12c + Name => 'FocusPeakingHighlightColor', + Unknown => 1, + PrintConv => { + 0 => 'Red', + 1 => 'Yellow', + 2 => 'Blue', + 3 => 'White', + }, + }, + 85 => { Name => 'ContinuousModeDisplay', PrintConv => \%offOn }, # CSd14 + 87 => { # CSe1-a Previous cameras reported this with HighSpeedSync indicator appended as '(Auto FP)'. + Name => 'FlashSyncSpeed', + ValueConv => '($val-144)/8', + PrintConv => { + 0 => '1/60 s', + 1 => '1/80 s', + 2 => '1/100 s', + 3 => '1/125 s', + 4 => '1/160 s', + 5 => '1/200 s', + }, + }, + 89 => { Name => 'HighSpeedSync', PrintConv => \%offOn }, # CSe1-b + 91 => { # CSe2 + Name => 'FlashShutterSpeed', + ValueConv => 'my $t = ($val - 16) % 24; $t ? $val / 24 : 2 + ($val - 16) / 24', #unusual decode perhaps due to need to accommodate 4 new values? + PrintConv => { + 0 => '1 s', + 1 => '1/2 s', + 2 => '1/4 s', + 3 => '1/8 s', + 4 => '1/15 s', + 5 => '1/30 s', + 6 => '1/60 s', + 7 => '30 s', + 8 => '15 s', + 9 => '8 s', + 10 => '4 s', + 11 => '2 s', + }, + }, + 93 => { Name => 'FlashExposureCompArea', PrintConv => { 0 => 'Entire Frame', 1 => 'Background Only' } }, # CSe3 + 95 => { Name => 'AutoFlashISOSensitivity', PrintConv => { 0 => 'Subject and Background',1 => 'Subject Only'} }, # CSe4 + 97 => { Name => 'ModelingFlash', PrintConv => \%offOn }, # CSe5 + 99 => { # CSe6 + Name => 'AutoBracketModeM', + PrintConv => { + 0 => 'Flash/Speed', + 1 => 'Flash/Speed/Aperture', + 2 => 'Flash/Aperture', + 3 => 'Flash Only', + 4 => 'Flash/ISO', + }, + }, + 101 => { Name => 'AutoBracketOrder', PrintConv => { 0 => '0,-,+',1 => '-,0,+' } }, # CSe7 + 103 => { Name => 'Func1Button', %buttonsZ6III }, # CSf2-a + 119 => { Name => 'Func2Button', %buttonsZ6III }, # CSf2-b + 135 => { Name => 'AFOnButton', %buttonsZ6III }, # CSf2-d + 147 => { Name => 'SubSelector', %buttonsZ6III , Unknown => 1}, # CSf2-g + 159 => { Name => 'AssignMovieRecordButton', %buttonsZ6III , Unknown => 1}, # CSf2-m + 163 => { Name => 'LensFunc1Button', %buttonsZ6III }, # CSf2-q + 171 => { Name => 'LensFunc2Button', %buttonsZ6III }, # CSf2-p + 177 => { # CSf2-u + Name => 'LensControlRing', + PrintConv => { + 0 => 'None (Disabled)', + 1 => 'Focus (M/A)', + 2 => 'ISO Sensitivity', + 3 => 'Exposure Compensation', + 4 => 'Aperture', + }, + }, + 179 => { Name => 'MultiSelectorShootMode', %buttonsZ6III }, # CSf2-h called the OK button in camera, tag name retained for compatibility + 183 => { Name => 'MultiSelectorPlaybackMode', %buttonsZ6III }, # CSf3f + 187 => { Name => 'ShutterSpeedLock', PrintConv => \%offOn }, # CSf5-a + 188 => { Name => 'ApertureLock', PrintConv => \%offOn }, # CSf5-b + 189 => { # CSf6-a Previous cameras reported this tag as part of CmdDialsReverseRotation. Blend with CSf5-b separate settings together to match extant tag name and values + Name => 'CmdDialsReverseRotExposureComp', + RawConv => '$$self{CmdDialsReverseRotExposureComp} = $val', + Hidden => 1, + }, + 190 => [{ # CSf6-b (continued from above) + Name => 'CmdDialsReverseRotation', + Condition => '$$self{CmdDialsReverseRotExposureComp} == 0', + PrintConv => { + 0 => 'No', + 1 => 'Shutter Speed & Aperture', + }, + },{ + Name => 'CmdDialsReverseRotation', + PrintConv => { + 0 => 'Exposure Compensation', + 1 => 'Exposure Compensation, Shutter Speed & Aperture', + }, + }], + 195 => { Name => 'UseDialWithoutHold', PrintConv => \%offOn, Unknown => 1 }, # CSf7 + 197 => { Name => 'ReverseIndicators', PrintConv => { 0 => '+ 0 -', 1 => '- 0 +' }, Unknown => 1 }, # CSf8 + 199 => { Name => 'MovieFunc1Button', %buttonsZ6III }, # CSg2-a + 205 => { Name => 'MovieFunc2Button', %buttonsZ6III }, # CSg2-b + 211 => { Name => 'MovieAF-OnButton', %buttonsZ6III }, # CSg2-f + 223 => { # CSg2-z + Name => 'MovieLensControlRing', + PrintConv => { + 0 => 'None (Disabled)', + 2 => 'ISO Sensitivity', + 3 => 'Exposure Compensation', + 4 => 'Power Aperture', + 5 => 'Hi-Res Zoom', + }, + }, + 225 => { Name => 'MovieMultiSelector', %buttonsZ6III, Unknown => 1}, # CSg2-h + 229 => { Name => 'MovieAFSpeed', ValueConv => '$val - 5', ValueConvInv => '$val + 5' }, # CSg5-a + 231 => { Name => 'MovieAFSpeedApply', PrintConv => {0 => 'Always', 1 => 'Only During Recording'},}, # CSg5-b + 233 => { # CSg6 + Name => 'MovieAFTrackingSensitivity', + PrintConv => { + 0 => '1 (High)', + 1 => '2', + 2 => '3', + 3 => '4 (Normal)', + 4 => '5', + 5 => '6', + 6 => '7 (Low)', + }, + }, + 241 => { Name => 'LCDIllumination', PrintConv => \%offOn, Unknown => 1 }, # CSd13 + 242 => { Name => 'ExtendedShutterSpeeds', PrintConv => \%offOn }, # CSd7 + 245 => { Name => 'FocusPointPersistence', PrintConv => {0 => 'Auto', 1 => 'Off'} }, # CSa7 + 257 => { Name => 'FlashBurstPriority', PrintConv => { 0 => 'Frame Rate',1 => 'Exposure'}, Unknown => 1 }, # CSe8 + 319 => { Name => 'LimitAF-AreaModeSelDynamic_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 320 => { Name => 'LimitAF-AreaModeSelDynamic_M', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 321 => { Name => 'LimitAF-AreaModeSelDynamic_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 323 => { Name => 'LimitAF-AreaModeSel3DTracking', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 325 => { Name => 'PlaybackFlickUp', PrintConv => \%flicksZ9, Unknown => 1}, # CSf14-a + 329 => { Name => 'PlaybackFlickDown', PrintConv => \%flicksZ9, Unknown => 1}, # CSf14-b + 333 => { Name => 'ISOStepSize', PrintConv => \%thirdHalfFull }, # CSb1 + 340 => { Name => 'TouchFn', PrintConv => \%offOn, Unknown => 1}, # CSf4a + 341 => { Name => 'TouchFnRole', %buttonsZ6III , Unknown => 1}, # CSf4b + 345 => { Name => 'TouchFnAreaWide', PrintConv => \%touchFnAreaZ6III, Unknown => 1}, # CSf4c-1 + 347 => { Name => 'TouchFnAreaTall', PrintConv => \%touchFnAreaZ6III, Unknown => 1}, # CSf4c-2 + 350 => { Name => 'EVFImageFrame', PrintConv => \%offOn, Unknown => 1 }, # CSd16 + 351 => { Name => 'EVFGrid', PrintConv => \%evfGridsZ9, Unknown => 1 }, # CSd17 + 353 => { Name => 'VirtualHorizonStyle', PrintConv => {0 => 'Type A (Cockpit)', 1 => 'Type B (Sides)' }, Unknown => 1}, #CSd18 + 415 => { Name => 'Func1ButtonPlaybackMode', %buttonsZ6III , Unknown => 1}, # CSf3-a + 417 => { Name => 'Func2ButtonPlaybackMode', %buttonsZ6III , Unknown => 1}, # CSf3-b + 431 => { Name => 'MovieRecordButtonPlaybackMode', %buttonsZ6III , Unknown => 1}, # CSf3-m + 463 => { Name => 'ControlRingResponse', PrintConv => { 0 => 'High', 1 => 'Low' } }, # CSf11 + 559 => { Name => 'FocusPeakingDisplay', PrintConv => \%offOn, Unknown => 1}, # CSa12a +); + # Z8 custom settings (ref 1) #base at offset26 + 1195 (firmware 1.0.0) %Image::ExifTool::NikonCustom::SettingsZ8 = ( PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData, @@ -9960,7 +10371,6 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' ); 193 => { Name => 'ReverseIndicators', PrintConv => { 0 => '+ 0 -', 1 => '- 0 +' }, Unknown => 1 }, # CSf7 195 => { Name => 'MovieFunc1Button', %buttonsZ9}, # CSg2-a 199 => { Name => 'MovieFunc2Button', %buttonsZ9}, # CSg2-b - 203 => { Name => 'MovieAF-OnButton', %buttonsZ9}, # CSg2-f 215 => { # CSg2-z Name => 'MovieLensControlRing', @@ -9993,11 +10403,11 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' ); 261 => { Name => 'FocusPointPersistence', PrintConv => {0 => 'Auto', 1 => 'Off'} }, # CSa7 263 => { Name => 'AutoFocusModeRestrictions', PrintConv => \%focusModeRestrictionsZ9, Unknown => 1}, # CSa9 267 => { Name => 'CHModeShootingSpeed', ValueConv => '$val + 1', ValueConvInv => '$val - 1', PrintConv => '"$val fps"', PrintConvInv => '$val=~s/\s*fps//i; $val' }, # CSd1a - 273 => { Name => 'FlashBurstPriority', PrintConv => { 0 => 'Frame Rate',1 => 'Exposure'}, Unknown => 1 }, # CSe8 - 335 => { Name => 'LimitAF-AreaModeSelDynamic_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 - 336 => { Name => 'LimitAF-AreaModeSelDynamic_M', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 - 337 => { Name => 'LimitAF-AreaModeSelDynamic_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 - 339 => { Name => 'LimitAF-AreaModeSel3DTracking', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 273 => { Name => 'FlashBurstPriority', PrintConv => { 0 => 'Frame Rate',1 => 'Exposure'}, Unknown => 1 }, # CSe8 + 335 => { Name => 'LimitAF-AreaModeSelDynamic_S', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 336 => { Name => 'LimitAF-AreaModeSelDynamic_M', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 337 => { Name => 'LimitAF-AreaModeSelDynamic_L', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 + 339 => { Name => 'LimitAF-AreaModeSel3DTracking', PrintConv => \%limitNolimit, Unknown => 1 }, # CSa8 341 => { Name => 'PlaybackFlickUp', PrintConv => \%flicksZ9, Unknown => 1}, # CSf12-a 345 => { Name => 'PlaybackFlickDown', PrintConv => \%flicksZ9, Unknown => 1}, # CSf12-b 349 => { Name => 'ISOStepSize', PrintConv => \%thirdHalfFull }, # CSb1 @@ -10008,9 +10418,9 @@ my %noYes = ( 0 => 'No', 1 => 'Yes' ); 421 => { Name => 'Func1ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-a 423 => { Name => 'Func2ButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-b 437 => { Name => 'MovieRecordButtonPlaybackMode', %buttonsZ9, Unknown => 1}, # CSf3-m - 453 => { Name => 'WBButtonPlaybackMode', %buttonsZ9}, #CSf2 - 461 => { Name => 'CommandDialVideoPlaybackMode', PrintConv => \%dialsVideoZ9, Unknown => 1}, # CSf3-b - 465 => { Name => 'SubCommandDialVideoPlaybackMode', PrintConv => \%dialsVideoZ9, Unknown => 1}, # CSf3-b + 453 => { Name => 'WBButtonPlaybackMode', %buttonsZ9}, # CSf2 + 461 => { Name => 'CommandDialVideoPlaybackMode', PrintConv => \%dialsVideoZ9, Unknown => 1}, # CSf3-b + 465 => { Name => 'SubCommandDialVideoPlaybackMode',PrintConv => \%dialsVideoZ9, Unknown => 1}, # CSf3-b 467 => { Name => 'FocusPointLock', PrintConv => \%offOn, Unknown => 1}, # CSf4-c 459 => { Name => 'CommandDialPlaybackMode', PrintConv => \%dialsZ9, Unknown => 1}, # CSf3-k 463 => { Name => 'SubCommandDialPlaybackMode', PrintConv => \%dialsZ9, Unknown => 1}, # CSf3-l diff --git a/bin/lib/Image/ExifTool/QuickTimeStream.pl b/bin/lib/Image/ExifTool/QuickTimeStream.pl index 3b37e89..89f0b48 100644 --- a/bin/lib/Image/ExifTool/QuickTimeStream.pl +++ b/bin/lib/Image/ExifTool/QuickTimeStream.pl @@ -341,6 +341,7 @@ package Image::ExifTool::QuickTime; }, # djmd - DJI AC003 Osmo Action 4 cam #TODO djmd => { SubDirectory => { TagTable => 'Image::ExifTool::DJI::djmd', ByteOrder => 'Little-Endian' } }, + # (also DJI_20240615181302_0006_D.LRF) # dbgi - DJI AC003 Osmo Action 4 cam -- lots more unknown stuff Unknown00 => { Unknown => 1 }, Unknown01 => { Unknown => 1 }, diff --git a/bin/lib/Image/ExifTool/TagLookup.pm b/bin/lib/Image/ExifTool/TagLookup.pm index d26cb6b..b8ec050 100644 --- a/bin/lib/Image/ExifTool/TagLookup.pm +++ b/bin/lib/Image/ExifTool/TagLookup.pm @@ -277,6 +277,7 @@ my @tableList = ( 'Image::ExifTool::Nikon::MakerNotes0x51', 'Image::ExifTool::Nikon::MakerNotes0x56', 'Image::ExifTool::Nikon::MenuSettingsD850', + 'Image::ExifTool::Nikon::MenuSettingsZ6III', 'Image::ExifTool::Nikon::MenuSettingsZ7II', 'Image::ExifTool::Nikon::MenuSettingsZ8', 'Image::ExifTool::Nikon::MenuSettingsZ8v2', @@ -354,6 +355,7 @@ my @tableList = ( 'Image::ExifTool::NikonCustom::SettingsD810', 'Image::ExifTool::NikonCustom::SettingsD850', 'Image::ExifTool::NikonCustom::SettingsD90', + 'Image::ExifTool::NikonCustom::SettingsZ6III', 'Image::ExifTool::NikonCustom::SettingsZ8', 'Image::ExifTool::NikonCustom::SettingsZ9', 'Image::ExifTool::NikonCustom::SettingsZ9v4', @@ -587,376 +589,376 @@ my @tableList = ( # lookup for all writable tags my %tagLookup = ( 'aberrationcorrectiondistance' => { 114 => 0x69 }, - 'about' => { 538 => 'about' }, - 'aboutcvterm' => { 529 => 'AboutCvTerm' }, - 'aboutcvtermcvid' => { 529 => [\'AboutCvTerm','AboutCvTermCvId'] }, - 'aboutcvtermid' => { 529 => [\'AboutCvTerm','AboutCvTermCvTermId'] }, - 'aboutcvtermname' => { 529 => [\'AboutCvTerm','AboutCvTermCvTermName'] }, - 'aboutcvtermrefinedabout' => { 529 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] }, + 'about' => { 540 => 'about' }, + 'aboutcvterm' => { 531 => 'AboutCvTerm' }, + 'aboutcvtermcvid' => { 531 => [\'AboutCvTerm','AboutCvTermCvId'] }, + 'aboutcvtermid' => { 531 => [\'AboutCvTerm','AboutCvTermCvTermId'] }, + 'aboutcvtermname' => { 531 => [\'AboutCvTerm','AboutCvTermCvTermName'] }, + 'aboutcvtermrefinedabout' => { 531 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] }, 'absolutealtitude' => { 121 => 'AbsoluteAltitude' }, - 'abspeakaudiofilepath' => { 544 => 'absPeakAudioFilePath' }, - 'academicfield' => { 534 => 'academicField' }, - 'acceleration' => { 124 => 0x9404, 522 => 'Acceleration' }, + 'abspeakaudiofilepath' => { 546 => 'absPeakAudioFilePath' }, + 'academicfield' => { 536 => 'academicField' }, + 'acceleration' => { 124 => 0x9404, 524 => 'Acceleration' }, 'accelerationtracking' => { 89 => 0x518 }, 'accelerationvector' => { 1 => 0x8 }, - 'accelerometer' => { 421 => 0x3 }, - 'accelerometerdata' => { 411 => 'vrot' }, - 'accelerometerx' => { 350 => 0x8d }, - 'accelerometery' => { 350 => 0x8e }, - 'accelerometerz' => { 350 => 0x8c }, - 'accessoryserialnumber' => { 350 => 0x54 }, - 'accessorytype' => { 350 => 0x53 }, - 'acdseeregion' => { 490 => [\'Regions','RegionsRegionList'] }, - 'acdseeregionalgarea' => { 490 => [\'Regions','RegionsRegionListALGArea'] }, - 'acdseeregionalgareah' => { 490 => [\'Regions','RegionsRegionListALGAreaH'] }, - 'acdseeregionalgareaw' => { 490 => [\'Regions','RegionsRegionListALGAreaW'] }, - 'acdseeregionalgareax' => { 490 => [\'Regions','RegionsRegionListALGAreaX'] }, - 'acdseeregionalgareay' => { 490 => [\'Regions','RegionsRegionListALGAreaY'] }, - 'acdseeregionappliedtodimensions' => { 490 => [\'Regions','RegionsAppliedToDimensions'] }, - 'acdseeregionappliedtodimensionsh' => { 490 => [\'Regions','RegionsAppliedToDimensionsH'] }, - 'acdseeregionappliedtodimensionsunit' => { 490 => [\'Regions','RegionsAppliedToDimensionsUnit'] }, - 'acdseeregionappliedtodimensionsw' => { 490 => [\'Regions','RegionsAppliedToDimensionsW'] }, - 'acdseeregiondlyarea' => { 490 => [\'Regions','RegionsRegionListDLYArea'] }, - 'acdseeregiondlyareah' => { 490 => [\'Regions','RegionsRegionListDLYAreaH'] }, - 'acdseeregiondlyareaw' => { 490 => [\'Regions','RegionsRegionListDLYAreaW'] }, - 'acdseeregiondlyareax' => { 490 => [\'Regions','RegionsRegionListDLYAreaX'] }, - 'acdseeregiondlyareay' => { 490 => [\'Regions','RegionsRegionListDLYAreaY'] }, - 'acdseeregionname' => { 490 => [\'Regions','RegionsRegionListName'] }, - 'acdseeregionnameassigntype' => { 490 => [\'Regions','RegionsRegionListNameAssignType'] }, - 'acdseeregiontype' => { 490 => [\'Regions','RegionsRegionListType'] }, + 'accelerometer' => { 423 => 0x3 }, + 'accelerometerdata' => { 413 => 'vrot' }, + 'accelerometerx' => { 352 => 0x8d }, + 'accelerometery' => { 352 => 0x8e }, + 'accelerometerz' => { 352 => 0x8c }, + 'accessoryserialnumber' => { 352 => 0x54 }, + 'accessorytype' => { 352 => 0x53 }, + 'acdseeregion' => { 492 => [\'Regions','RegionsRegionList'] }, + 'acdseeregionalgarea' => { 492 => [\'Regions','RegionsRegionListALGArea'] }, + 'acdseeregionalgareah' => { 492 => [\'Regions','RegionsRegionListALGAreaH'] }, + 'acdseeregionalgareaw' => { 492 => [\'Regions','RegionsRegionListALGAreaW'] }, + 'acdseeregionalgareax' => { 492 => [\'Regions','RegionsRegionListALGAreaX'] }, + 'acdseeregionalgareay' => { 492 => [\'Regions','RegionsRegionListALGAreaY'] }, + 'acdseeregionappliedtodimensions' => { 492 => [\'Regions','RegionsAppliedToDimensions'] }, + 'acdseeregionappliedtodimensionsh' => { 492 => [\'Regions','RegionsAppliedToDimensionsH'] }, + 'acdseeregionappliedtodimensionsunit' => { 492 => [\'Regions','RegionsAppliedToDimensionsUnit'] }, + 'acdseeregionappliedtodimensionsw' => { 492 => [\'Regions','RegionsAppliedToDimensionsW'] }, + 'acdseeregiondlyarea' => { 492 => [\'Regions','RegionsRegionListDLYArea'] }, + 'acdseeregiondlyareah' => { 492 => [\'Regions','RegionsRegionListDLYAreaH'] }, + 'acdseeregiondlyareaw' => { 492 => [\'Regions','RegionsRegionListDLYAreaW'] }, + 'acdseeregiondlyareax' => { 492 => [\'Regions','RegionsRegionListDLYAreaX'] }, + 'acdseeregiondlyareay' => { 492 => [\'Regions','RegionsRegionListDLYAreaY'] }, + 'acdseeregionname' => { 492 => [\'Regions','RegionsRegionListName'] }, + 'acdseeregionnameassigntype' => { 492 => [\'Regions','RegionsRegionListNameAssignType'] }, + 'acdseeregiontype' => { 492 => [\'Regions','RegionsRegionListType'] }, 'actionadvised' => { 136 => 0x2a }, 'activearea' => { 124 => 0xc68d }, - 'actived-lighting' => { 241 => 0x22, 297 => 0x24 }, - 'actived-lightingmode' => { 297 => 0x25 }, + 'actived-lighting' => { 241 => 0x22, 298 => 0x24 }, + 'actived-lightingmode' => { 298 => 0x25 }, 'adaptervoltage' => { 143 => 0x407 }, 'addaspectratioinfo' => { 89 => 0x80e }, 'addiptcinformation' => { 89 => 0x815 }, - 'additionalmodelinformation' => { 529 => 'AddlModelInfo' }, + 'additionalmodelinformation' => { 531 => 'AddlModelInfo' }, 'addoriginaldecisiondata' => { 89 => 0x80f, 90 => 0x11, 91 => 0x13, 94 => 0x14 }, 'address' => { 166 => 'Address' }, - 'adjustmentmode' => { 428 => 0x15 }, + 'adjustmentmode' => { 430 => 0x15 }, 'adlbracketingstep' => { 203 => 0x17 }, 'adlbracketingtype' => { 203 => 0x18 }, 'adobe' => { 125 => 'Adobe' }, - 'adultcontentwarning' => { 336 => 'AdultContentWarning', 537 => 'adultContentWarning' }, + 'adultcontentwarning' => { 338 => 'AdultContentWarning', 539 => 'adultContentWarning' }, 'advancedfilter' => { 132 => 0x1201 }, - 'advancedraw' => { 299 => 0x76a43203 }, - 'advancedscenetype' => { 350 => 0x3d }, - 'advisory' => { 542 => 'Advisory' }, - 'ae_iso' => { 358 => 0x2, 359 => 0x4, 360 => 0x12 }, - 'aeaperture' => { 358 => 0x1, 359 => 0x3, 360 => 0x11 }, - 'aeaperturesteps' => { 358 => 0x8, 359 => 0xb }, + 'advancedraw' => { 300 => 0x76a43203 }, + 'advancedscenetype' => { 352 => 0x3d }, + 'advisory' => { 544 => 'Advisory' }, + 'ae_iso' => { 360 => 0x2, 361 => 0x4, 362 => 0x12 }, + 'aeaperture' => { 360 => 0x1, 361 => 0x3, 362 => 0x11 }, + 'aeaperturesteps' => { 360 => 0x8, 361 => 0xb }, 'aeaverage' => { 1 => 0x6 }, 'aebautocancel' => { 89 => 0x104 }, 'aebbracketvalue' => { 81 => 0x11 }, - 'aebracketingsteps' => { 203 => 0xf, 204 => 0xf, 279 => 0x174c }, + 'aebracketingsteps' => { 203 => 0xf, 204 => 0xf, 280 => 0x174c }, 'aebsequence' => { 89 => 0x105 }, 'aebsequenceautocancel' => { 87 => 0x9, 88 => 0x9, 90 => 0x8, 91 => 0x9, 94 => 0x9, 95 => 0x7 }, 'aebshotcount' => { 89 => 0x106 }, - 'aebxv' => { 358 => 0x4, 359 => 0x6 }, - 'aeerror' => { 359 => 0x8 }, - 'aeexposuretime' => { 358 => 0x0, 359 => 0x2, 360 => 0x10 }, + 'aebxv' => { 360 => 0x4, 361 => 0x6 }, + 'aeerror' => { 361 => 0x8 }, + 'aeexposuretime' => { 360 => 0x0, 361 => 0x2, 362 => 0x10 }, 'aelbutton' => { 189 => 0x45 }, 'aelexposureindicator' => { 189 => 0x51 }, - 'aelock' => { 189 => 0x5b, 308 => '4.2', 317 => '4.2', 326 => 0x201, 386 => 0x48, 438 => 0x40, 439 => 0x40, 440 => [0x86,0x286] }, - 'aelockbutton' => { 306 => '16.1', 308 => '4.1', 311 => '15.1', 312 => '16.1', 313 => '16.1', 315 => '30.1', 316 => '16.1', 317 => '4.1', 319 => '17.1', 321 => '17.1' }, - 'aelockbuttonplusdials' => { 306 => '16.2', 315 => '32.1', 319 => '44.1' }, - 'aelockformb-d80' => { 321 => '3.1' }, + 'aelock' => { 189 => 0x5b, 309 => '4.2', 318 => '4.2', 328 => 0x201, 388 => 0x48, 440 => 0x40, 441 => 0x40, 442 => [0x86,0x286] }, + 'aelockbutton' => { 307 => '16.1', 309 => '4.1', 312 => '15.1', 313 => '16.1', 314 => '16.1', 316 => '30.1', 317 => '16.1', 318 => '4.1', 320 => '17.1', 322 => '17.1' }, + 'aelockbuttonplusdials' => { 307 => '16.2', 316 => '32.1', 320 => '44.1' }, + 'aelockformb-d80' => { 322 => '3.1' }, 'aelockmetermodeafterfocus' => { 89 => 0x114 }, 'aematrix' => { 1 => 0x2 }, - 'aemaxaperture' => { 358 => 0x9, 359 => 0x10, 360 => 0x1c }, - 'aemaxaperture2' => { 358 => 0xa, 359 => 0x11, 360 => 0x1d }, - 'aemeteringmode' => { 358 => 0xc }, - 'aemeteringmode2' => { 358 => '13.1' }, - 'aemeteringsegments' => { 192 => 0x628, 386 => 0x209 }, + 'aemaxaperture' => { 360 => 0x9, 361 => 0x10, 362 => 0x1c }, + 'aemaxaperture2' => { 360 => 0xa, 361 => 0x11, 362 => 0x1d }, + 'aemeteringmode' => { 360 => 0xc }, + 'aemeteringmode2' => { 360 => '13.1' }, + 'aemeteringsegments' => { 192 => 0x628, 388 => 0x209 }, 'aemicroadjustment' => { 89 => 0x110 }, - 'aeminaperture' => { 358 => 0xb, 359 => 0x12, 360 => 0x1e }, - 'aeminexposuretime' => { 358 => 0x5, 359 => 0x13, 360 => 0x1f }, - 'aeprogrammode' => { 358 => 0x6 }, - 'aeprojectlink' => { 516 => 'aeProjectLink' }, - 'aeprojectlinkcompositionid' => { 516 => [\'aeProjectLink','aeProjectLinkCompositionID'] }, - 'aeprojectlinkfullpath' => { 516 => [\'aeProjectLink','aeProjectLinkFullPath'] }, - 'aeprojectlinkrenderoutputmoduleindex' => { 516 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] }, - 'aeprojectlinkrenderqueueitemid' => { 516 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] }, - 'aeprojectlinkrendertimestamp' => { 516 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] }, + 'aeminaperture' => { 360 => 0xb, 361 => 0x12, 362 => 0x1e }, + 'aeminexposuretime' => { 360 => 0x5, 361 => 0x13, 362 => 0x1f }, + 'aeprogrammode' => { 360 => 0x6 }, + 'aeprojectlink' => { 518 => 'aeProjectLink' }, + 'aeprojectlinkcompositionid' => { 518 => [\'aeProjectLink','aeProjectLinkCompositionID'] }, + 'aeprojectlinkfullpath' => { 518 => [\'aeProjectLink','aeProjectLinkFullPath'] }, + 'aeprojectlinkrenderoutputmoduleindex' => { 518 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] }, + 'aeprojectlinkrenderqueueitemid' => { 518 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] }, + 'aeprojectlinkrendertimestamp' => { 518 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] }, 'aesetting' => { 36 => 0x21 }, 'aestable' => { 1 => 0x4 }, - 'aestheticscore' => { 339 => 'aesthetic_score' }, + 'aestheticscore' => { 341 => 'aesthetic_score' }, 'aetarget' => { 1 => 0x5 }, - 'aewhitebalance' => { 358 => 0xd }, - 'aexv' => { 358 => 0x3, 359 => 0x5 }, - 'af-assistilluminator' => { 322 => 0x19, 323 => 0x19, 324 => 0x19 }, - 'af-cfocusdisplay' => { 322 => 0x234, 323 => 0x234, 324 => 0x24c }, + 'aewhitebalance' => { 360 => 0xd }, + 'aexv' => { 360 => 0x3, 361 => 0x5 }, + 'af-assistilluminator' => { 323 => 0x1a, 324 => 0x19, 325 => 0x19, 326 => 0x19 }, + 'af-cfocusdisplay' => { 324 => 0x234, 325 => 0x234, 326 => 0x24c }, 'af-cpriority' => { 133 => '0.2' }, - 'af-cpriorityselection' => { 306 => '1.1', 307 => '1.1', 309 => '1.1', 310 => '1.1', 312 => '0.1', 313 => '0.1', 314 => '0.1', 315 => '1.1', 316 => '0.1', 319 => '1.1', 320 => '1.1', 322 => 0x3, 323 => 0x3, 324 => 0x3 }, + 'af-cpriorityselection' => { 307 => '1.1', 308 => '1.1', 310 => '1.1', 311 => '1.1', 313 => '0.1', 314 => '0.1', 315 => '0.1', 316 => '1.1', 317 => '0.1', 320 => '1.1', 321 => '1.1', 323 => 0x3, 324 => 0x3, 325 => 0x3, 326 => 0x3 }, 'af-csetting' => { 129 => 0x0 }, 'af-cspeedtrackingsensitivity' => { 129 => '0.2' }, 'af-ctrackingsensitivity' => { 129 => '0.1' }, 'af-czoneareaswitching' => { 129 => '0.3' }, - 'af-onbutton' => { 309 => '70.1', 310 => '70.1', 320 => '70.1' }, - 'af-onformb-d10' => { 306 => '3.3', 315 => '3.2' }, - 'af-onformb-d11' => { 316 => '2.2' }, - 'af-onformb-d12' => { 319 => '50.1' }, - 'af-onoutoffocusrelease' => { 322 => 0x10, 323 => 0x10, 324 => 0x10 }, + 'af-onbutton' => { 310 => '70.1', 311 => '70.1', 321 => '70.1' }, + 'af-onformb-d10' => { 307 => '3.3', 316 => '3.2' }, + 'af-onformb-d11' => { 317 => '2.2' }, + 'af-onformb-d12' => { 320 => '50.1' }, + 'af-onoutoffocusrelease' => { 323 => 0x10, 324 => 0x10, 325 => 0x10, 326 => 0x10 }, 'af-spriority' => { 133 => '0.1' }, - 'af-spriorityselection' => { 306 => '1.2', 307 => '1.2', 309 => '1.2', 310 => '1.2', 314 => '0.2', 315 => '1.2', 316 => '0.2', 319 => '1.2', 320 => '1.2', 322 => 0x5, 323 => 0x5, 324 => 0x5 }, + 'af-spriorityselection' => { 307 => '1.2', 308 => '1.2', 310 => '1.2', 311 => '1.2', 315 => '0.2', 316 => '1.2', 317 => '0.2', 320 => '1.2', 321 => '1.2', 323 => 0x5, 324 => 0x5, 325 => 0x5, 326 => 0x5 }, 'afacceldeceltracking' => { 2 => 0x3 }, - 'afactivation' => { 306 => '2.1', 307 => '2.1', 309 => '78.3', 310 => '78.3', 315 => '2.1', 319 => '2.1', 320 => '78.3', 322 => 0xf, 323 => 0xf, 324 => 0xf }, - 'afadjustment' => { 386 => 0x72, 395 => 0x267 }, + 'afactivation' => { 307 => '2.1', 308 => '2.1', 310 => '78.3', 311 => '78.3', 316 => '2.1', 320 => '2.1', 321 => '78.3', 323 => 0xf, 324 => 0xf, 325 => 0xf, 326 => 0xf }, + 'afadjustment' => { 388 => 0x72, 397 => 0x267 }, 'afandmeteringbuttons' => { 89 => 0x701 }, 'afaperture' => { 234 => 0x5, 235 => 0x5, 239 => 0x5 }, 'afareaheight' => { 198 => [0x1a,0x34,0x50], 199 => 0x48 }, - 'afareaillumination' => { 189 => 0x4b, 317 => '15.3' }, - 'afareainitialheight' => { 254 => 0xbeb }, - 'afareainitialwidth' => { 254 => 0xbea }, - 'afareainitialxposition' => { 254 => 0xbe8 }, - 'afareainitialyposition' => { 254 => 0xbe9 }, - 'afareamode' => { 131 => '0.3', 185 => 0x33, 189 => 0xe, 197 => 0x0, 198 => 0x5, 199 => 0x5, 246 => 0x224, 247 => 0x224, 248 => 0x210, 249 => 0x224, 250 => 0x224, 350 => 0xf, 418 => 0x1205, 431 => [0xa,0x3a], 438 => 0x11, 439 => 0x10, 440 => 0x24, 452 => 0xb043, 478 => 0x17 }, - 'afareamodesetting' => { 308 => '11.1', 311 => '0.1', 317 => '16.1', 321 => '2.1', 452 => 0x201c }, + 'afareaillumination' => { 189 => 0x4b, 318 => '15.3' }, + 'afareainitialheight' => { 255 => 0xbeb }, + 'afareainitialwidth' => { 255 => 0xbea }, + 'afareainitialxposition' => { 255 => 0xbe8 }, + 'afareainitialyposition' => { 255 => 0xbe9 }, + 'afareamode' => { 131 => '0.3', 185 => 0x33, 189 => 0xe, 197 => 0x0, 198 => 0x5, 199 => 0x5, 245 => 0x340, 247 => 0x224, 248 => 0x224, 249 => 0x210, 250 => 0x224, 251 => 0x224, 352 => 0xf, 420 => 0x1205, 433 => [0xa,0x3a], 440 => 0x11, 441 => 0x10, 442 => 0x24, 454 => 0xb043, 480 => 0x17 }, + 'afareamodesetting' => { 309 => '11.1', 312 => '0.1', 318 => '16.1', 322 => '2.1', 454 => 0x201c }, 'afareapointsize' => { 131 => '0.4' }, - 'afareas' => { 326 => 0x304 }, + 'afareas' => { 328 => 0x304 }, 'afareaselectionmethod' => { 2 => 0xd }, 'afareaselectmethod' => { 89 => 0x51b }, 'afareawidth' => { 198 => [0x18,0x32,0x4e], 199 => 0x46 }, - 'afareaxposition' => { 198 => [0x14,0x2e,0x4a], 199 => 0x42, 418 => 0x1203 }, - 'afareaxposition1' => { 418 => 0x1201 }, - 'afareayposition' => { 198 => [0x16,0x30,0x4c], 199 => 0x44, 418 => 0x1204 }, - 'afareayposition1' => { 418 => 0x1202 }, + 'afareaxposition' => { 198 => [0x14,0x2e,0x4a], 199 => 0x42, 420 => 0x1203 }, + 'afareaxposition1' => { 420 => 0x1201 }, + 'afareayposition' => { 198 => [0x16,0x30,0x4c], 199 => 0x44, 420 => 0x1204 }, + 'afareayposition1' => { 420 => 0x1202 }, 'afareazonesize' => { 131 => '0.5' }, - 'afassist' => { 87 => 0x5, 95 => 0x5, 189 => 0x48, 306 => '2.5', 308 => '0.2', 311 => '0.2', 312 => '1.1', 313 => '1.1', 314 => '1.3', 315 => '2.4', 316 => '1.3', 317 => '0.2', 319 => '2.4', 321 => '2.3' }, + 'afassist' => { 87 => 0x5, 95 => 0x5, 189 => 0x48, 307 => '2.5', 309 => '0.2', 312 => '0.2', 313 => '1.1', 314 => '1.1', 315 => '1.3', 316 => '2.4', 317 => '1.3', 318 => '0.2', 320 => '2.4', 322 => '2.3' }, 'afassistbeam' => { 2 => 0x8, 89 => 0x50e, 90 => 0x4, 91 => 0x5, 92 => 0x4, 93 => 0x4, 94 => 0x5 }, - 'afassistlamp' => { 350 => 0x31 }, - 'afbuttonpressed' => { 440 => [0x83,0x283] }, + 'afassistlamp' => { 352 => 0x31 }, + 'afbuttonpressed' => { 442 => [0x83,0x283] }, 'afconfidence' => { 1 => 0x3d }, 'afconfigtool' => { 2 => 0x1 }, - 'afdefocus' => { 361 => 0x6 }, + 'afdefocus' => { 363 => 0x6 }, 'afduringliveview' => { 89 => 0x511 }, - 'affinea' => { 509 => 'AffineA' }, - 'affineb' => { 509 => 'AffineB' }, - 'affinec' => { 509 => 'AffineC' }, - 'affined' => { 509 => 'AffineD' }, - 'affinetune' => { 200 => 0x0, 246 => 0x6b0, 247 => 0x6c0, 248 => 0x5b0, 249 => 0x5e0, 250 => 0x5f8, 326 => 0x306 }, - 'affinetuneadj' => { 200 => 0x2, 272 => 0x2d1, 273 => 0x2dc, 326 => 0x307 }, + 'affinea' => { 511 => 'AffineA' }, + 'affineb' => { 511 => 'AffineB' }, + 'affinec' => { 511 => 'AffineC' }, + 'affined' => { 511 => 'AffineD' }, + 'affinetune' => { 200 => 0x0, 247 => 0x6b0, 248 => 0x6c0, 249 => 0x5b0, 250 => 0x5e0, 251 => 0x5f8, 328 => 0x306 }, + 'affinetuneadj' => { 200 => 0x2, 273 => 0x2d1, 274 => 0x2dc, 328 => 0x307 }, 'affinetuneadjtele' => { 200 => 0x3 }, 'affinetuneindex' => { 200 => 0x1 }, - 'affinex' => { 509 => 'AffineX' }, - 'affiney' => { 509 => 'AffineY' }, - 'afhold' => { 361 => 0x1fd }, - 'afilluminator' => { 438 => 0x29, 452 => 0xb044 }, + 'affinex' => { 511 => 'AffineX' }, + 'affiney' => { 511 => 'AffineY' }, + 'afhold' => { 363 => 0x1fd }, + 'afilluminator' => { 440 => 0x29, 454 => 0xb044 }, 'afimageheight' => { 198 => [0x12,0x2c,0x48], 199 => 0x40 }, 'afimagewidth' => { 198 => [0x10,0x2a,0x46], 199 => 0x3e }, - 'afintegrationtime' => { 361 => 0x7 }, + 'afintegrationtime' => { 363 => 0x7 }, 'afmeasureddepth' => { 1 => 0x38 }, - 'afmicroadj' => { 431 => [0x17d,0x50] }, - 'afmicroadjmode' => { 3 => 0x1, 435 => 0x131 }, - 'afmicroadjregisteredlenses' => { 435 => '305.1' }, + 'afmicroadj' => { 433 => [0x17d,0x50] }, + 'afmicroadjmode' => { 3 => 0x1, 437 => 0x131 }, + 'afmicroadjregisteredlenses' => { 437 => '305.1' }, 'afmicroadjustment' => { 89 => 0x507 }, - 'afmicroadjvalue' => { 3 => 0x2, 435 => 0x130 }, - 'afmode' => { 118 => 0x3009, 132 => 0x1022, 185 => 0x16, 428 => 0x5 }, - 'afmoderestrictions' => { 307 => '50.3', 309 => '48.3', 310 => '48.3', 319 => '48.3', 320 => '48.3' }, + 'afmicroadjvalue' => { 3 => 0x2, 437 => 0x130 }, + 'afmode' => { 118 => 0x3009, 132 => 0x1022, 185 => 0x16, 430 => 0x5 }, + 'afmoderestrictions' => { 308 => '50.3', 310 => '48.3', 311 => '48.3', 320 => '48.3', 321 => '48.3' }, 'afonaelockbuttonswitch' => { 89 => 0x702 }, - 'afonbutton' => { 306 => '3.1', 307 => '47.1', 322 => 0x83, 323 => 0x83, 324 => 0x83 }, + 'afonbutton' => { 307 => '3.1', 308 => '47.1', 323 => 0x87, 324 => 0x83, 325 => 0x83, 326 => 0x83 }, 'afperformance' => { 1 => 0x23 }, - 'afpoint' => { 36 => 0x13, 117 => 0x18, 185 => 0x15, 197 => 0x1, 329 => 0x308, 428 => 0x1f, 431 => [0x37,0x7], 435 => 0x19, 436 => 0x18, 437 => [0x18,0x20] }, + 'afpoint' => { 36 => 0x13, 117 => 0x18, 185 => 0x15, 197 => 0x1, 331 => 0x308, 430 => 0x1f, 433 => [0x37,0x7], 437 => 0x19, 438 => 0x18, 439 => [0x18,0x20] }, 'afpointactivationarea' => { 88 => 0x11, 94 => 0x11 }, 'afpointareaexpansion' => { 89 => 0x508 }, - 'afpointatshutterrelease' => { 431 => [0x39,0x9] }, + 'afpointatshutterrelease' => { 433 => [0x39,0x9] }, 'afpointautoselection' => { 89 => 0x50b }, - 'afpointbrightness' => { 89 => 0x50d, 306 => '2.4', 307 => '46.5', 309 => '2.2', 310 => '2.2', 319 => '2.3', 320 => '2.2' }, - 'afpointdetails' => { 329 => 0x31b }, + 'afpointbrightness' => { 89 => 0x50d, 307 => '2.4', 308 => '46.5', 310 => '2.2', 311 => '2.2', 320 => '2.3', 321 => '2.2' }, + 'afpointdetails' => { 331 => 0x31b }, 'afpointdisplayduringfocus' => { 2 => 0x10, 89 => 0x50c }, - 'afpointillumination' => { 88 => 0xa, 306 => '2.3', 307 => '46.2', 309 => '47.2', 310 => '47.2', 314 => '1.2', 315 => '2.3', 316 => '1.2', 319 => '47.2', 320 => '47.2', 321 => '2.4' }, - 'afpointinfocus' => { 431 => [0x38,0x8] }, - 'afpointmode' => { 366 => 0x3 }, - 'afpointposition' => { 118 => 0x2021, 350 => 0x4d }, + 'afpointillumination' => { 88 => 0xa, 307 => '2.3', 308 => '46.2', 310 => '47.2', 311 => '47.2', 315 => '1.2', 316 => '2.3', 317 => '1.2', 320 => '47.2', 321 => '47.2', 322 => '2.4' }, + 'afpointinfocus' => { 433 => [0x38,0x8] }, + 'afpointmode' => { 368 => 0x3 }, + 'afpointposition' => { 118 => 0x2021, 352 => 0x4d }, 'afpointregistration' => { 87 => 0x7 }, 'afpoints' => { 188 => 0x10 }, - 'afpointsel' => { 322 => 0xb, 323 => 0xb, 324 => 0xb }, - 'afpointselected' => { 189 => 0xd, 326 => 0x305, 386 => 0xe, 435 => 0x15, 436 => 0x14, 437 => [0x14,0x1c], 452 => 0x201e }, - 'afpointselected2' => { 366 => 0x4 }, - 'afpointselection' => { 88 => 0xb, 306 => '1.3', 307 => '1.3', 315 => '1.3', 319 => '1.3', 320 => '1.3' }, + 'afpointsel' => { 323 => 0xb, 324 => 0xb, 325 => 0xb, 326 => 0xb }, + 'afpointselected' => { 189 => 0xd, 328 => 0x305, 388 => 0xe, 437 => 0x15, 438 => 0x14, 439 => [0x14,0x1c], 454 => 0x201e }, + 'afpointselected2' => { 368 => 0x4 }, + 'afpointselection' => { 88 => 0xb, 307 => '1.3', 308 => '1.3', 316 => '1.3', 320 => '1.3', 321 => '1.3' }, 'afpointselectionmethod' => { 89 => 0x50f, 90 => 0xc, 91 => 0xd, 94 => 0xd }, - 'afpointsetting' => { 438 => 0x12, 439 => 0x11 }, - 'afpointsinfocus' => { 81 => 0xe, 197 => 0x2, 198 => 0x30, 361 => 0xb, 362 => 0x4, 386 => [0xf,0x3c] }, + 'afpointsetting' => { 440 => 0x12, 441 => 0x11 }, + 'afpointsinfocus' => { 81 => 0xe, 197 => 0x2, 198 => 0x30, 363 => 0xb, 364 => 0x4, 388 => [0xf,0x3c] }, 'afpointsinfocus5d' => { 19 => 0x38 }, 'afpointspotmetering' => { 88 => 0xd }, - 'afpointsselected' => { 198 => 0x1c, 362 => '4.1', 487 => 0x4 }, - 'afpointsspecial' => { 362 => '4.2' }, - 'afpointsunknown1' => { 361 => 0x0 }, - 'afpointsunknown2' => { 361 => 0x2 }, - 'afpointsused' => { 198 => [0xa,0x8], 199 => 0xa, 431 => [0x10,0x16e] }, + 'afpointsselected' => { 198 => 0x1c, 364 => '4.1', 489 => 0x4 }, + 'afpointsspecial' => { 364 => '4.2' }, + 'afpointsunknown1' => { 363 => 0x0 }, + 'afpointsunknown2' => { 363 => 0x2 }, + 'afpointsused' => { 198 => [0xa,0x8], 199 => 0xa, 433 => [0x10,0x16e] }, 'afpointswitching' => { 2 => 0x4 }, - 'afpredictor' => { 361 => 0x4 }, + 'afpredictor' => { 363 => 0x4 }, 'afresponse' => { 241 => 0xad }, - 'afresult' => { 331 => 0x1038 }, - 'afsearch' => { 326 => 0x303 }, + 'afresult' => { 333 => 0x1038 }, + 'afsearch' => { 328 => 0x303 }, 'afsensoractive' => { 185 => 0x1 }, 'afstable' => { 1 => 0x7 }, - 'afstatus' => { 418 => 0x1200 }, - 'afstatus_00_b4' => { 434 => 0x0 }, - 'afstatus_01_c4' => { 434 => 0x2 }, - 'afstatus_02_d4' => { 434 => 0x4 }, - 'afstatus_03_e4' => { 434 => 0x6 }, - 'afstatus_04_f4' => { 434 => 0x8 }, - 'afstatus_05_g4' => { 434 => 0xa }, - 'afstatus_06_h4' => { 434 => 0xc }, - 'afstatus_07_b3' => { 434 => 0xe }, - 'afstatus_08_c3' => { 434 => 0x10 }, - 'afstatus_09_d3' => { 434 => 0x12 }, - 'afstatus_10_e3' => { 434 => 0x14 }, - 'afstatus_11_f3' => { 434 => 0x16 }, - 'afstatus_12_g3' => { 434 => 0x18 }, - 'afstatus_13_h3' => { 434 => 0x1a }, - 'afstatus_14_b2' => { 434 => 0x1c }, - 'afstatus_15_c2' => { 434 => 0x1e }, - 'afstatus_16_d2' => { 434 => 0x20 }, - 'afstatus_17_e2' => { 434 => 0x22 }, - 'afstatus_18_f2' => { 434 => 0x24 }, - 'afstatus_19_g2' => { 434 => 0x26 }, - 'afstatus_20_h2' => { 434 => 0x28 }, - 'afstatus_21_c1' => { 434 => 0x2a }, - 'afstatus_22_d1' => { 434 => 0x2c }, - 'afstatus_23_e1' => { 434 => 0x2e }, - 'afstatus_24_f1' => { 434 => 0x30 }, - 'afstatus_25_g1' => { 434 => 0x32 }, - 'afstatus_26_a7_vertical' => { 434 => 0x34 }, - 'afstatus_27_a6_vertical' => { 434 => 0x36 }, - 'afstatus_28_a5_vertical' => { 434 => 0x38 }, - 'afstatus_29_c7_vertical' => { 434 => 0x3a }, - 'afstatus_30_c6_vertical' => { 434 => 0x3c }, - 'afstatus_31_c5_vertical' => { 434 => 0x3e }, - 'afstatus_32_e7_vertical' => { 434 => 0x40 }, - 'afstatus_33_e6_center_vertical' => { 434 => 0x42 }, - 'afstatus_34_e5_vertical' => { 434 => 0x44 }, - 'afstatus_35_g7_vertical' => { 434 => 0x46 }, - 'afstatus_36_g6_vertical' => { 434 => 0x48 }, - 'afstatus_37_g5_vertical' => { 434 => 0x4a }, - 'afstatus_38_i7_vertical' => { 434 => 0x4c }, - 'afstatus_39_i6_vertical' => { 434 => 0x4e }, - 'afstatus_40_i5_vertical' => { 434 => 0x50 }, - 'afstatus_41_a7' => { 434 => 0x52 }, - 'afstatus_42_b7' => { 434 => 0x54 }, - 'afstatus_43_c7' => { 434 => 0x56 }, - 'afstatus_44_d7' => { 434 => 0x58 }, - 'afstatus_45_e7' => { 434 => 0x5a }, - 'afstatus_46_f7' => { 434 => 0x5c }, - 'afstatus_47_g7' => { 434 => 0x5e }, - 'afstatus_48_h7' => { 434 => 0x60 }, - 'afstatus_49_i7' => { 434 => 0x62 }, - 'afstatus_50_a6' => { 434 => 0x64 }, - 'afstatus_51_b6' => { 434 => 0x66 }, - 'afstatus_52_c6' => { 434 => 0x68 }, - 'afstatus_53_d6' => { 434 => 0x6a }, - 'afstatus_54_e6_center' => { 434 => 0x6c }, - 'afstatus_55_f6' => { 434 => 0x6e }, - 'afstatus_56_g6' => { 434 => 0x70 }, - 'afstatus_57_h6' => { 434 => 0x72 }, - 'afstatus_58_i6' => { 434 => 0x74 }, - 'afstatus_59_a5' => { 434 => 0x76 }, - 'afstatus_60_b5' => { 434 => 0x78 }, - 'afstatus_61_c5' => { 434 => 0x7a }, - 'afstatus_62_d5' => { 434 => 0x7c }, - 'afstatus_63_e5' => { 434 => 0x7e }, - 'afstatus_64_f5' => { 434 => 0x80 }, - 'afstatus_65_g5' => { 434 => 0x82 }, - 'afstatus_66_h5' => { 434 => 0x84 }, - 'afstatus_67_i5' => { 434 => 0x86 }, - 'afstatus_68_c11' => { 434 => 0x88 }, - 'afstatus_69_d11' => { 434 => 0x8a }, - 'afstatus_70_e11' => { 434 => 0x8c }, - 'afstatus_71_f11' => { 434 => 0x8e }, - 'afstatus_72_g11' => { 434 => 0x90 }, - 'afstatus_73_b10' => { 434 => 0x92 }, - 'afstatus_74_c10' => { 434 => 0x94 }, - 'afstatus_75_d10' => { 434 => 0x96 }, - 'afstatus_76_e10' => { 434 => 0x98 }, - 'afstatus_77_f10' => { 434 => 0x9a }, - 'afstatus_78_g10' => { 434 => 0x9c }, - 'afstatus_79_h10' => { 434 => 0x9e }, - 'afstatus_80_b9' => { 434 => 0xa0 }, - 'afstatus_81_c9' => { 434 => 0xa2 }, - 'afstatus_82_d9' => { 434 => 0xa4 }, - 'afstatus_83_e9' => { 434 => 0xa6 }, - 'afstatus_84_f9' => { 434 => 0xa8 }, - 'afstatus_85_g9' => { 434 => 0xaa }, - 'afstatus_86_h9' => { 434 => 0xac }, - 'afstatus_87_b8' => { 434 => 0xae }, - 'afstatus_88_c8' => { 434 => 0xb0 }, - 'afstatus_89_d8' => { 434 => 0xb2 }, - 'afstatus_90_e8' => { 434 => 0xb4 }, - 'afstatus_91_f8' => { 434 => 0xb6 }, - 'afstatus_92_g8' => { 434 => 0xb8 }, - 'afstatus_93_h8' => { 434 => 0xba }, - 'afstatus_94_e6_center_f2-8' => { 434 => 0xbc }, - 'afstatusactivesensor' => { 185 => 0x2, 431 => [0x4,0x3b], 435 => 0x1e, 436 => 0x1b, 437 => [0x1b,0x21] }, - 'afstatusbottom' => { 185 => 0x8, 435 => 0x2a, 436 => 0x21, 437 => 0x21 }, - 'afstatusbottom-left' => { 185 => 0x12, 436 => 0x2b, 437 => 0x2b }, - 'afstatusbottom-right' => { 185 => 0x6, 436 => 0x1f, 437 => 0x1f }, - 'afstatusbottomassist-left' => { 435 => 0x28 }, - 'afstatusbottomassist-right' => { 435 => 0x2c }, - 'afstatusbottomhorizontal' => { 432 => 0x10, 433 => 0x1c }, - 'afstatusbottomvertical' => { 432 => 0x16, 433 => 0x26 }, - 'afstatuscenter-10' => { 435 => 0x34 }, - 'afstatuscenter-11' => { 435 => 0x36 }, - 'afstatuscenter-12' => { 435 => 0x38 }, - 'afstatuscenter-14' => { 435 => 0x3c }, - 'afstatuscenter-7' => { 435 => 0x2e }, - 'afstatuscenter-9' => { 435 => 0x32 }, - 'afstatuscenter-horizontal' => { 435 => 0x30 }, - 'afstatuscenter-vertical' => { 435 => 0x3a }, - 'afstatuscenterf2-8' => { 435 => 0x4c }, - 'afstatuscenterhorizontal' => { 185 => 0x2f, 432 => 0xc, 433 => 0x18, 436 => 0x2f, 437 => 0x2f }, - 'afstatuscentervertical' => { 185 => 0xc, 432 => 0x14, 433 => 0x22, 436 => 0x25, 437 => 0x25 }, - 'afstatusfarleft' => { 432 => 0x6, 435 => 0x26 }, - 'afstatusfarlefthorizontal' => { 433 => 0x4 }, - 'afstatusfarleftvertical' => { 433 => 0x12 }, - 'afstatusfarright' => { 432 => 0x18, 435 => 0x44 }, - 'afstatusfarrighthorizontal' => { 433 => 0x2c }, - 'afstatusfarrightvertical' => { 433 => 0x34 }, - 'afstatusleft' => { 185 => 0x2d, 432 => 0x2, 435 => 0x22, 436 => 0x2d, 437 => 0x2d }, - 'afstatuslefthorizontal' => { 433 => 0x6 }, - 'afstatusleftvertical' => { 433 => 0xe }, - 'afstatuslower-left' => { 432 => 0x4, 435 => 0x24 }, - 'afstatuslower-lefthorizontal' => { 433 => 0xa }, - 'afstatuslower-leftvertical' => { 433 => 0x10 }, - 'afstatuslower-middle' => { 432 => 0x22, 433 => 0x24 }, - 'afstatuslower-right' => { 432 => 0x1e, 435 => 0x4a }, - 'afstatuslower-righthorizontal' => { 433 => 0x32 }, - 'afstatuslower-rightvertical' => { 433 => 0x3a }, - 'afstatuslowerfarleft' => { 433 => 0x8 }, - 'afstatuslowerfarright' => { 433 => 0x30 }, - 'afstatusmiddlehorizontal' => { 185 => 0xa, 436 => 0x23, 437 => 0x23 }, - 'afstatusnearleft' => { 432 => 0xe, 433 => 0x1a }, - 'afstatusnearright' => { 432 => 0xa, 433 => 0x16 }, - 'afstatusright' => { 185 => 0x31, 432 => 0x1c, 435 => 0x48, 436 => 0x31, 437 => 0x31 }, - 'afstatusrighthorizontal' => { 433 => 0x2e }, - 'afstatusrightvertical' => { 433 => 0x38 }, - 'afstatustop' => { 185 => 0xe, 435 => 0x40, 436 => 0x27, 437 => 0x27 }, - 'afstatustop-left' => { 185 => 0x10, 436 => 0x29, 437 => 0x29 }, - 'afstatustop-right' => { 185 => 0x4, 436 => 0x1d, 437 => 0x1d }, - 'afstatustopassist-left' => { 435 => 0x3e }, - 'afstatustopassist-right' => { 435 => 0x42 }, - 'afstatustophorizontal' => { 432 => 0x8, 433 => 0x14 }, - 'afstatustopvertical' => { 432 => 0x12, 433 => 0x1e }, - 'afstatusupper-left' => { 432 => 0x0, 435 => 0x20 }, - 'afstatusupper-lefthorizontal' => { 433 => 0x2 }, - 'afstatusupper-leftvertical' => { 433 => 0xc }, - 'afstatusupper-middle' => { 432 => 0x20, 433 => 0x20 }, - 'afstatusupper-right' => { 432 => 0x1a, 435 => 0x46 }, - 'afstatusupper-righthorizontal' => { 433 => 0x2a }, - 'afstatusupper-rightvertical' => { 433 => 0x36 }, - 'afstatusupperfarleft' => { 433 => 0x0 }, - 'afstatusupperfarright' => { 433 => 0x28 }, + 'afstatus' => { 420 => 0x1200 }, + 'afstatus_00_b4' => { 436 => 0x0 }, + 'afstatus_01_c4' => { 436 => 0x2 }, + 'afstatus_02_d4' => { 436 => 0x4 }, + 'afstatus_03_e4' => { 436 => 0x6 }, + 'afstatus_04_f4' => { 436 => 0x8 }, + 'afstatus_05_g4' => { 436 => 0xa }, + 'afstatus_06_h4' => { 436 => 0xc }, + 'afstatus_07_b3' => { 436 => 0xe }, + 'afstatus_08_c3' => { 436 => 0x10 }, + 'afstatus_09_d3' => { 436 => 0x12 }, + 'afstatus_10_e3' => { 436 => 0x14 }, + 'afstatus_11_f3' => { 436 => 0x16 }, + 'afstatus_12_g3' => { 436 => 0x18 }, + 'afstatus_13_h3' => { 436 => 0x1a }, + 'afstatus_14_b2' => { 436 => 0x1c }, + 'afstatus_15_c2' => { 436 => 0x1e }, + 'afstatus_16_d2' => { 436 => 0x20 }, + 'afstatus_17_e2' => { 436 => 0x22 }, + 'afstatus_18_f2' => { 436 => 0x24 }, + 'afstatus_19_g2' => { 436 => 0x26 }, + 'afstatus_20_h2' => { 436 => 0x28 }, + 'afstatus_21_c1' => { 436 => 0x2a }, + 'afstatus_22_d1' => { 436 => 0x2c }, + 'afstatus_23_e1' => { 436 => 0x2e }, + 'afstatus_24_f1' => { 436 => 0x30 }, + 'afstatus_25_g1' => { 436 => 0x32 }, + 'afstatus_26_a7_vertical' => { 436 => 0x34 }, + 'afstatus_27_a6_vertical' => { 436 => 0x36 }, + 'afstatus_28_a5_vertical' => { 436 => 0x38 }, + 'afstatus_29_c7_vertical' => { 436 => 0x3a }, + 'afstatus_30_c6_vertical' => { 436 => 0x3c }, + 'afstatus_31_c5_vertical' => { 436 => 0x3e }, + 'afstatus_32_e7_vertical' => { 436 => 0x40 }, + 'afstatus_33_e6_center_vertical' => { 436 => 0x42 }, + 'afstatus_34_e5_vertical' => { 436 => 0x44 }, + 'afstatus_35_g7_vertical' => { 436 => 0x46 }, + 'afstatus_36_g6_vertical' => { 436 => 0x48 }, + 'afstatus_37_g5_vertical' => { 436 => 0x4a }, + 'afstatus_38_i7_vertical' => { 436 => 0x4c }, + 'afstatus_39_i6_vertical' => { 436 => 0x4e }, + 'afstatus_40_i5_vertical' => { 436 => 0x50 }, + 'afstatus_41_a7' => { 436 => 0x52 }, + 'afstatus_42_b7' => { 436 => 0x54 }, + 'afstatus_43_c7' => { 436 => 0x56 }, + 'afstatus_44_d7' => { 436 => 0x58 }, + 'afstatus_45_e7' => { 436 => 0x5a }, + 'afstatus_46_f7' => { 436 => 0x5c }, + 'afstatus_47_g7' => { 436 => 0x5e }, + 'afstatus_48_h7' => { 436 => 0x60 }, + 'afstatus_49_i7' => { 436 => 0x62 }, + 'afstatus_50_a6' => { 436 => 0x64 }, + 'afstatus_51_b6' => { 436 => 0x66 }, + 'afstatus_52_c6' => { 436 => 0x68 }, + 'afstatus_53_d6' => { 436 => 0x6a }, + 'afstatus_54_e6_center' => { 436 => 0x6c }, + 'afstatus_55_f6' => { 436 => 0x6e }, + 'afstatus_56_g6' => { 436 => 0x70 }, + 'afstatus_57_h6' => { 436 => 0x72 }, + 'afstatus_58_i6' => { 436 => 0x74 }, + 'afstatus_59_a5' => { 436 => 0x76 }, + 'afstatus_60_b5' => { 436 => 0x78 }, + 'afstatus_61_c5' => { 436 => 0x7a }, + 'afstatus_62_d5' => { 436 => 0x7c }, + 'afstatus_63_e5' => { 436 => 0x7e }, + 'afstatus_64_f5' => { 436 => 0x80 }, + 'afstatus_65_g5' => { 436 => 0x82 }, + 'afstatus_66_h5' => { 436 => 0x84 }, + 'afstatus_67_i5' => { 436 => 0x86 }, + 'afstatus_68_c11' => { 436 => 0x88 }, + 'afstatus_69_d11' => { 436 => 0x8a }, + 'afstatus_70_e11' => { 436 => 0x8c }, + 'afstatus_71_f11' => { 436 => 0x8e }, + 'afstatus_72_g11' => { 436 => 0x90 }, + 'afstatus_73_b10' => { 436 => 0x92 }, + 'afstatus_74_c10' => { 436 => 0x94 }, + 'afstatus_75_d10' => { 436 => 0x96 }, + 'afstatus_76_e10' => { 436 => 0x98 }, + 'afstatus_77_f10' => { 436 => 0x9a }, + 'afstatus_78_g10' => { 436 => 0x9c }, + 'afstatus_79_h10' => { 436 => 0x9e }, + 'afstatus_80_b9' => { 436 => 0xa0 }, + 'afstatus_81_c9' => { 436 => 0xa2 }, + 'afstatus_82_d9' => { 436 => 0xa4 }, + 'afstatus_83_e9' => { 436 => 0xa6 }, + 'afstatus_84_f9' => { 436 => 0xa8 }, + 'afstatus_85_g9' => { 436 => 0xaa }, + 'afstatus_86_h9' => { 436 => 0xac }, + 'afstatus_87_b8' => { 436 => 0xae }, + 'afstatus_88_c8' => { 436 => 0xb0 }, + 'afstatus_89_d8' => { 436 => 0xb2 }, + 'afstatus_90_e8' => { 436 => 0xb4 }, + 'afstatus_91_f8' => { 436 => 0xb6 }, + 'afstatus_92_g8' => { 436 => 0xb8 }, + 'afstatus_93_h8' => { 436 => 0xba }, + 'afstatus_94_e6_center_f2-8' => { 436 => 0xbc }, + 'afstatusactivesensor' => { 185 => 0x2, 433 => [0x4,0x3b], 437 => 0x1e, 438 => 0x1b, 439 => [0x1b,0x21] }, + 'afstatusbottom' => { 185 => 0x8, 437 => 0x2a, 438 => 0x21, 439 => 0x21 }, + 'afstatusbottom-left' => { 185 => 0x12, 438 => 0x2b, 439 => 0x2b }, + 'afstatusbottom-right' => { 185 => 0x6, 438 => 0x1f, 439 => 0x1f }, + 'afstatusbottomassist-left' => { 437 => 0x28 }, + 'afstatusbottomassist-right' => { 437 => 0x2c }, + 'afstatusbottomhorizontal' => { 434 => 0x10, 435 => 0x1c }, + 'afstatusbottomvertical' => { 434 => 0x16, 435 => 0x26 }, + 'afstatuscenter-10' => { 437 => 0x34 }, + 'afstatuscenter-11' => { 437 => 0x36 }, + 'afstatuscenter-12' => { 437 => 0x38 }, + 'afstatuscenter-14' => { 437 => 0x3c }, + 'afstatuscenter-7' => { 437 => 0x2e }, + 'afstatuscenter-9' => { 437 => 0x32 }, + 'afstatuscenter-horizontal' => { 437 => 0x30 }, + 'afstatuscenter-vertical' => { 437 => 0x3a }, + 'afstatuscenterf2-8' => { 437 => 0x4c }, + 'afstatuscenterhorizontal' => { 185 => 0x2f, 434 => 0xc, 435 => 0x18, 438 => 0x2f, 439 => 0x2f }, + 'afstatuscentervertical' => { 185 => 0xc, 434 => 0x14, 435 => 0x22, 438 => 0x25, 439 => 0x25 }, + 'afstatusfarleft' => { 434 => 0x6, 437 => 0x26 }, + 'afstatusfarlefthorizontal' => { 435 => 0x4 }, + 'afstatusfarleftvertical' => { 435 => 0x12 }, + 'afstatusfarright' => { 434 => 0x18, 437 => 0x44 }, + 'afstatusfarrighthorizontal' => { 435 => 0x2c }, + 'afstatusfarrightvertical' => { 435 => 0x34 }, + 'afstatusleft' => { 185 => 0x2d, 434 => 0x2, 437 => 0x22, 438 => 0x2d, 439 => 0x2d }, + 'afstatuslefthorizontal' => { 435 => 0x6 }, + 'afstatusleftvertical' => { 435 => 0xe }, + 'afstatuslower-left' => { 434 => 0x4, 437 => 0x24 }, + 'afstatuslower-lefthorizontal' => { 435 => 0xa }, + 'afstatuslower-leftvertical' => { 435 => 0x10 }, + 'afstatuslower-middle' => { 434 => 0x22, 435 => 0x24 }, + 'afstatuslower-right' => { 434 => 0x1e, 437 => 0x4a }, + 'afstatuslower-righthorizontal' => { 435 => 0x32 }, + 'afstatuslower-rightvertical' => { 435 => 0x3a }, + 'afstatuslowerfarleft' => { 435 => 0x8 }, + 'afstatuslowerfarright' => { 435 => 0x30 }, + 'afstatusmiddlehorizontal' => { 185 => 0xa, 438 => 0x23, 439 => 0x23 }, + 'afstatusnearleft' => { 434 => 0xe, 435 => 0x1a }, + 'afstatusnearright' => { 434 => 0xa, 435 => 0x16 }, + 'afstatusright' => { 185 => 0x31, 434 => 0x1c, 437 => 0x48, 438 => 0x31, 439 => 0x31 }, + 'afstatusrighthorizontal' => { 435 => 0x2e }, + 'afstatusrightvertical' => { 435 => 0x38 }, + 'afstatustop' => { 185 => 0xe, 437 => 0x40, 438 => 0x27, 439 => 0x27 }, + 'afstatustop-left' => { 185 => 0x10, 438 => 0x29, 439 => 0x29 }, + 'afstatustop-right' => { 185 => 0x4, 438 => 0x1d, 439 => 0x1d }, + 'afstatustopassist-left' => { 437 => 0x3e }, + 'afstatustopassist-right' => { 437 => 0x42 }, + 'afstatustophorizontal' => { 434 => 0x8, 435 => 0x14 }, + 'afstatustopvertical' => { 434 => 0x12, 435 => 0x1e }, + 'afstatusupper-left' => { 434 => 0x0, 437 => 0x20 }, + 'afstatusupper-lefthorizontal' => { 435 => 0x2 }, + 'afstatusupper-leftvertical' => { 435 => 0xc }, + 'afstatusupper-middle' => { 434 => 0x20, 435 => 0x20 }, + 'afstatusupper-right' => { 434 => 0x1a, 437 => 0x46 }, + 'afstatusupper-righthorizontal' => { 435 => 0x2a }, + 'afstatusupper-rightvertical' => { 435 => 0x36 }, + 'afstatusupperfarleft' => { 435 => 0x0 }, + 'afstatusupperfarright' => { 435 => 0x28 }, 'afstatusviewfinder' => { 2 => 0x12 }, - 'aftracking' => { 452 => 0x2021 }, + 'aftracking' => { 454 => 0x2021 }, 'aftrackingsensitivity' => { 2 => 0x2 }, - 'aftype' => { 431 => 0x2 }, - 'afwithshutter' => { 438 => 0x2a }, - 'aggregateissuenumber' => { 534 => 'aggregateIssueNumber' }, - 'aggregationtype' => { 534 => 'aggregationType' }, - 'agreement' => { 537 => 'agreement' }, + 'aftype' => { 433 => 0x2 }, + 'afwithshutter' => { 440 => 0x2a }, + 'aggregateissuenumber' => { 536 => 'aggregateIssueNumber' }, + 'aggregationtype' => { 536 => 'aggregationType' }, + 'agreement' => { 539 => 'agreement' }, 'ah2greeninterpolationthreshold' => { 143 => 0xe4e }, - 'airplanemode' => { 246 => 0x722, 247 => 0x732, 248 => 0x624, 249 => 0x654, 250 => 0x6bc }, + 'airplanemode' => { 245 => 0x9c0, 247 => 0x722, 248 => 0x732, 249 => 0x624, 250 => 0x654, 251 => 0x6bc }, 'aiservocontinuousshooting' => { 88 => 0x15 }, 'aiservofirstimage' => { 2 => 0x5 }, 'aiservofirstimagepriority' => { 89 => 0x519 }, @@ -965,166 +967,166 @@ my %tagLookup = ( 'aiservosecondimagepriority' => { 89 => 0x51a }, 'aiservotrackingmethod' => { 89 => 0x504 }, 'aiservotrackingsensitivity' => { 88 => 0x14, 89 => 0x502 }, - 'aisubjecttrackingmode' => { 326 => 0x309 }, - 'album' => { 403 => ['albm',"\xa9alb"], 405 => 'album', 411 => ['albm',"\xa9alb"], 544 => 'album' }, - 'albumartist' => { 184 => 'WM/AlbumArtist', 403 => 'aART', 411 => 'albr' }, + 'aisubjecttrackingmode' => { 328 => 0x309 }, + 'album' => { 405 => ['albm',"\xa9alb"], 407 => 'album', 413 => ['albm',"\xa9alb"], 546 => 'album' }, + 'albumartist' => { 184 => 'WM/AlbumArtist', 405 => 'aART', 413 => 'albr' }, 'albumcoverurl' => { 184 => 'WM/AlbumCoverURL' }, - 'albumid' => { 403 => 'plID' }, + 'albumid' => { 405 => 'plID' }, 'albumtitle' => { 184 => 'WM/AlbumTitle' }, - 'alreadyapplied' => { 515 => 'AlreadyApplied', 517 => 'AlreadyApplied' }, - 'alternatetitle' => { 534 => 'alternateTitle' }, - 'alternatetitlea-lang' => { 534 => [\'alternateTitle','alternateTitleA-lang'] }, - 'alternatetitlea-platform' => { 534 => [\'alternateTitle','alternateTitleA-platform'] }, - 'alternatetitletext' => { 534 => [\'alternateTitle','alternateTitleText'] }, + 'alreadyapplied' => { 517 => 'AlreadyApplied', 519 => 'AlreadyApplied' }, + 'alternatetitle' => { 536 => 'alternateTitle' }, + 'alternatetitlea-lang' => { 536 => [\'alternateTitle','alternateTitleA-lang'] }, + 'alternatetitlea-platform' => { 536 => [\'alternateTitle','alternateTitleA-platform'] }, + 'alternatetitletext' => { 536 => [\'alternateTitle','alternateTitleText'] }, 'altitude' => { 202 => 0x6 }, - 'alttapename' => { 544 => 'altTapeName' }, - 'alttextaccessibility' => { 528 => 'AltTextAccessibility' }, - 'alttimecode' => { 544 => 'altTimecode' }, - 'alttimecodetimeformat' => { 544 => [\'altTimecode','altTimecodeTimeFormat'] }, - 'alttimecodetimevalue' => { 544 => [\'altTimecode','altTimecodeTimeValue'] }, - 'alttimecodevalue' => { 544 => [\'altTimecode','altTimecodeValue'] }, + 'alttapename' => { 546 => 'altTapeName' }, + 'alttextaccessibility' => { 530 => 'AltTextAccessibility' }, + 'alttimecode' => { 546 => 'altTimecode' }, + 'alttimecodetimeformat' => { 546 => [\'altTimecode','altTimecodeTimeFormat'] }, + 'alttimecodetimevalue' => { 546 => [\'altTimecode','altTimecodeTimeValue'] }, + 'alttimecodevalue' => { 546 => [\'altTimecode','altTimecodeValue'] }, 'ambienceselection' => { 4 => 0x1 }, - 'ambientinfrared' => { 414 => 0x5c }, - 'ambientlight' => { 414 => 0x5e }, - 'ambienttemperature' => { 124 => 0x9400, 412 => 0x14, 413 => 0x46, 414 => 0x50, 478 => 0x4, 522 => 'Temperature' }, - 'ambienttemperaturefahrenheit' => { 412 => 0x13, 413 => 0x44, 414 => 0x4e }, + 'ambientinfrared' => { 416 => 0x5c }, + 'ambientlight' => { 416 => 0x5e }, + 'ambienttemperature' => { 124 => 0x9400, 414 => 0x14, 415 => 0x46, 416 => 0x50, 480 => 0x4, 524 => 'Temperature' }, + 'ambienttemperaturefahrenheit' => { 414 => 0x13, 415 => 0x44, 416 => 0x4e }, 'analogbalance' => { 124 => 0xc627 }, 'analogcaptureiso' => { 143 => 0x89e }, 'analogisotable' => { 143 => 0x89d }, - 'androidcapturefps' => { 405 => 'com.android.capture.fps' }, - 'androidmake' => { 405 => 'com.android.manufacturer' }, - 'androidmodel' => { 405 => 'com.android.model' }, - 'androidversion' => { 405 => 'com.android.version' }, + 'androidcapturefps' => { 407 => 'com.android.capture.fps' }, + 'androidmake' => { 407 => 'com.android.manufacturer' }, + 'androidmodel' => { 407 => 'com.android.model' }, + 'androidversion' => { 407 => 'com.android.version' }, 'angleadj' => { 108 => 0x10003, 114 => 0x8b }, - 'angleinforoll' => { 511 => 'AngleInfoRoll' }, - 'angleinfoyaw' => { 511 => 'AngleInfoYaw' }, - 'anti-blur' => { 452 => 0xb04b }, + 'angleinforoll' => { 513 => 'AngleInfoRoll' }, + 'angleinfoyaw' => { 513 => 'AngleInfoYaw' }, + 'anti-blur' => { 454 => 0xb04b }, 'antialiasstrength' => { 124 => 0xc632 }, 'antiflicker' => { 60 => 0x20 }, - 'aperturelock' => { 307 => '38.2', 309 => '38.2', 310 => '38.2', 319 => '38.2', 320 => '38.2', 322 => 0xb8, 323 => 0xb8, 324 => 0xb8 }, - 'aperturemode' => { 411 => 'apmd' }, + 'aperturelock' => { 308 => '38.2', 310 => '38.2', 311 => '38.2', 320 => '38.2', 321 => '38.2', 323 => 0xbc, 324 => 0xb8, 325 => 0xb8, 326 => 0xb8 }, + 'aperturemode' => { 413 => 'apmd' }, 'aperturerange' => { 89 => 0x10d }, - 'apertureringuse' => { 366 => '1.4' }, - 'aperturesetting' => { 189 => 0x7, 438 => 0x30, 439 => 0x29, 440 => 0x1 }, - 'aperturevalue' => { 98 => 0x2, 124 => 0x9202, 331 => 0x1002, 395 => 0x401, 521 => 'ApertureValue' }, - 'appinfo' => { 493 => 'AppInfo' }, - 'appinfoapplication' => { 493 => [\'AppInfo','AppInfoApplication'] }, - 'appinfoitemuri' => { 493 => [\'AppInfo','AppInfoItemURI'] }, - 'appinfoversion' => { 493 => [\'AppInfo','AppInfoVersion'] }, + 'apertureringuse' => { 368 => '1.4' }, + 'aperturesetting' => { 189 => 0x7, 440 => 0x30, 441 => 0x29, 442 => 0x1 }, + 'aperturevalue' => { 98 => 0x2, 124 => 0x9202, 333 => 0x1002, 397 => 0x401, 523 => 'ApertureValue' }, + 'appinfo' => { 495 => 'AppInfo' }, + 'appinfoapplication' => { 495 => [\'AppInfo','AppInfoApplication'] }, + 'appinfoitemuri' => { 495 => [\'AppInfo','AppInfoItemURI'] }, + 'appinfoversion' => { 495 => [\'AppInfo','AppInfoVersion'] }, 'apple_0x004e' => { 1 => 0x4e }, 'apple_0x004f' => { 1 => 0x4f }, - 'applekeywords' => { 335 => 'AAPL:Keywords' }, - 'applephotosvariationidentifier' => { 405 => 'apple.photos.variation-identifier' }, - 'applestoreaccount' => { 403 => 'apID' }, - 'applestoreaccounttype' => { 403 => 'akID' }, - 'applestorecatalogid' => { 403 => 'cnID' }, - 'applestorecountry' => { 403 => 'sfID' }, + 'applekeywords' => { 337 => 'AAPL:Keywords' }, + 'applephotosvariationidentifier' => { 407 => 'apple.photos.variation-identifier' }, + 'applestoreaccount' => { 405 => 'apID' }, + 'applestoreaccounttype' => { 405 => 'akID' }, + 'applestorecatalogid' => { 405 => 'cnID' }, + 'applestorecountry' => { 405 => 'sfID' }, 'applicationkeystring' => { 143 => 0x400 }, - 'applicationnotes' => { 124 => 0x2bc, 355 => 0x2bc }, + 'applicationnotes' => { 124 => 0x2bc, 357 => 0x2bc }, 'applicationrecordversion' => { 136 => 0x0 }, - 'applyautomatically' => { 340 => 'ApplyAutomatically' }, + 'applyautomatically' => { 342 => 'ApplyAutomatically' }, 'applyshootingmeteringmode' => { 89 => 0x10e }, - 'approved' => { 523 => 'Approved' }, - 'approvedby' => { 523 => 'ApprovedBy' }, - 'approximatefnumber' => { 345 => 0x313, 352 => 0x3406 }, - 'approximatefocusdistance' => { 512 => 'ApproximateFocusDistance' }, - 'appversion' => { 527 => 'AppVersion' }, - 'aps-csizecapture' => { 471 => 0x114, 472 => [0x114,0x1eb,0x1ee,0x21a,0x21c] }, + 'approved' => { 525 => 'Approved' }, + 'approvedby' => { 525 => 'ApprovedBy' }, + 'approximatefnumber' => { 347 => 0x313, 354 => 0x3406 }, + 'approximatefocusdistance' => { 514 => 'ApproximateFocusDistance' }, + 'appversion' => { 529 => 'AppVersion' }, + 'aps-csizecapture' => { 473 => 0x114, 474 => [0x114,0x1eb,0x1ee,0x21a,0x21c] }, 'aquahsl' => { 108 => 0x20914 }, 'armidentifier' => { 137 => 0x78 }, 'armversion' => { 137 => 0x7a }, - 'arranger' => { 403 => "\xa9arg", 411 => "\xa9arg" }, - 'arrangerkeywords' => { 411 => "\xa9ark" }, - 'artdirector' => { 403 => "\xa9ard" }, - 'artfilter' => { 326 => 0x529 }, - 'artfiltereffect' => { 326 => 0x52f }, - 'artist' => { 124 => 0x13b, 339 => 'Artist', 355 => 0x13b, 386 => 0x22e, 403 => "\xa9ART", 405 => 'artist', 411 => "\xa9ART", 540 => 'Artist', 544 => 'artist' }, - 'artistid' => { 403 => 'atID' }, + 'arranger' => { 405 => "\xa9arg", 413 => "\xa9arg" }, + 'arrangerkeywords' => { 413 => "\xa9ark" }, + 'artdirector' => { 405 => "\xa9ard" }, + 'artfilter' => { 328 => 0x529 }, + 'artfiltereffect' => { 328 => 0x52f }, + 'artist' => { 124 => 0x13b, 341 => 'Artist', 357 => 0x13b, 388 => 0x22e, 405 => "\xa9ART", 407 => 'artist', 413 => "\xa9ART", 542 => 'Artist', 546 => 'artist' }, + 'artistid' => { 405 => 'atID' }, 'artmode' => { 118 => 0x301b }, 'artmodeparameters' => { 118 => 0x310b }, - 'artwork' => { 405 => 'artwork' }, - 'artworkcircadatecreated' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] }, - 'artworkcontentdescription' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] }, - 'artworkcontributiondescription' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] }, - 'artworkcopyrightnotice' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] }, - 'artworkcopyrightownerid' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] }, - 'artworkcopyrightownername' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] }, - 'artworkcreator' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] }, - 'artworkcreatorid' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] }, - 'artworkdatecreated' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] }, - 'artworklicensorid' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] }, - 'artworklicensorname' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] }, - 'artworkorobject' => { 529 => 'ArtworkOrObject' }, - 'artworkphysicaldescription' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] }, - 'artworksource' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] }, - 'artworksourceinventoryno' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] }, - 'artworksourceinvurl' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] }, - 'artworkstyleperiod' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] }, - 'artworktitle' => { 529 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] }, - 'aspectframe' => { 330 => 0x1113 }, - 'aspectratio' => { 5 => 0x0, 330 => 0x1112, 386 => 0x80, 438 => 0x55, 439 => 0x55, 440 => 0xa, 465 => [0x192c,0x1a88], 466 => 0x192c, 467 => 0x1958, 468 => 0x192c, 469 => 0x188c }, - 'assetid' => { 505 => 'AssetID' }, + 'artwork' => { 407 => 'artwork' }, + 'artworkcircadatecreated' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] }, + 'artworkcontentdescription' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] }, + 'artworkcontributiondescription' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] }, + 'artworkcopyrightnotice' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] }, + 'artworkcopyrightownerid' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] }, + 'artworkcopyrightownername' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] }, + 'artworkcreator' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] }, + 'artworkcreatorid' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] }, + 'artworkdatecreated' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] }, + 'artworklicensorid' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] }, + 'artworklicensorname' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] }, + 'artworkorobject' => { 531 => 'ArtworkOrObject' }, + 'artworkphysicaldescription' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] }, + 'artworksource' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] }, + 'artworksourceinventoryno' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] }, + 'artworksourceinvurl' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] }, + 'artworkstyleperiod' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] }, + 'artworktitle' => { 531 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] }, + 'aspectframe' => { 332 => 0x1113 }, + 'aspectratio' => { 5 => 0x0, 332 => 0x1112, 388 => 0x80, 440 => 0x55, 441 => 0x55, 442 => 0xa, 467 => [0x192c,0x1a88], 468 => 0x192c, 469 => 0x1958, 470 => 0x192c, 471 => 0x188c }, + 'assetid' => { 507 => 'AssetID' }, 'asshoticcprofile' => { 124 => 0xc68f }, 'asshotneutral' => { 124 => 0xc628 }, 'asshotpreprofilematrix' => { 124 => 0xc690 }, 'asshotprofilename' => { 124 => 0xc6f6 }, 'asshotwhitexy' => { 124 => 0xc629 }, - 'assignbktbutton' => { 306 => '4.2', 307 => '16.1', 309 => '16.1', 310 => '16.1', 319 => '16.1', 320 => '16.1' }, + 'assignbktbutton' => { 307 => '4.2', 308 => '16.1', 310 => '16.1', 311 => '16.1', 320 => '16.1', 321 => '16.1' }, 'assignfuncbutton' => { 89 => 0x70b }, - 'assignmb-d17af-onbutton' => { 310 => '79.1' }, - 'assignmb-d17funcbutton' => { 310 => '67.1' }, - 'assignmb-d17funcbuttonplusdials' => { 310 => '68.1' }, - 'assignmb-d18af-onbutton' => { 320 => '79.1' }, - 'assignmb-d18funcbutton' => { 320 => '67.1' }, - 'assignmb-d18funcbuttonplusdials' => { 320 => '68.1' }, - 'assignmoviefunc1buttonplusdials' => { 309 => '75.1', 310 => '75.1', 320 => '75.1' }, - 'assignmoviefunc2button' => { 309 => '82.1', 310 => '82.1', 320 => '82.1' }, - 'assignmoviepreviewbuttonplusdials' => { 309 => '75.2', 310 => '75.2', 320 => '75.2' }, - 'assignmovierecordbutton' => { 307 => '43.2', 319 => '45.1', 322 => 0x9b, 323 => 0x9b, 324 => 0x9b }, - 'assignmovierecordbuttonplusdials' => { 309 => '45.1', 310 => '45.1', 320 => '45.1' }, - 'assignmoviesubselector' => { 309 => '74.1', 310 => '74.1', 320 => '74.1' }, - 'assignmoviesubselectorplusdials' => { 309 => '76.1', 310 => '76.1', 320 => '76.1' }, - 'assignremotefnbutton' => { 307 => '54.1', 319 => '51.1' }, + 'assignmb-d17af-onbutton' => { 311 => '79.1' }, + 'assignmb-d17funcbutton' => { 311 => '67.1' }, + 'assignmb-d17funcbuttonplusdials' => { 311 => '68.1' }, + 'assignmb-d18af-onbutton' => { 321 => '79.1' }, + 'assignmb-d18funcbutton' => { 321 => '67.1' }, + 'assignmb-d18funcbuttonplusdials' => { 321 => '68.1' }, + 'assignmoviefunc1buttonplusdials' => { 310 => '75.1', 311 => '75.1', 321 => '75.1' }, + 'assignmoviefunc2button' => { 310 => '82.1', 311 => '82.1', 321 => '82.1' }, + 'assignmoviepreviewbuttonplusdials' => { 310 => '75.2', 311 => '75.2', 321 => '75.2' }, + 'assignmovierecordbutton' => { 308 => '43.2', 320 => '45.1', 323 => 0x9f, 324 => 0x9b, 325 => 0x9b, 326 => 0x9b }, + 'assignmovierecordbuttonplusdials' => { 310 => '45.1', 311 => '45.1', 321 => '45.1' }, + 'assignmoviesubselector' => { 310 => '74.1', 311 => '74.1', 321 => '74.1' }, + 'assignmoviesubselectorplusdials' => { 310 => '76.1', 311 => '76.1', 321 => '76.1' }, + 'assignremotefnbutton' => { 308 => '54.1', 320 => '51.1' }, 'assistbuttonfunction' => { 87 => 0xd }, 'atcaptureusercrop' => { 143 => 0x943 }, - 'attributionname' => { 513 => 'attributionName' }, - 'attributionurl' => { 513 => 'attributionURL' }, - 'audio' => { 350 => 0x20 }, - 'audiobitrate' => { 71 => 0x6c, 529 => 'audioBitRate' }, - 'audiobitratemode' => { 529 => 'audioBitRateMode' }, - 'audiobitspersample' => { 529 => 'audioBitsPerSample' }, - 'audiobutton' => { 323 => 0x17b, 324 => 0x193 }, - 'audiobuttonplaybackmode' => { 323 => 0x1b9, 324 => 0x1d1 }, - 'audiochannelcount' => { 529 => 'audioChannelCount' }, + 'attributionname' => { 515 => 'attributionName' }, + 'attributionurl' => { 515 => 'attributionURL' }, + 'audio' => { 352 => 0x20 }, + 'audiobitrate' => { 71 => 0x6c, 531 => 'audioBitRate' }, + 'audiobitratemode' => { 531 => 'audioBitRateMode' }, + 'audiobitspersample' => { 531 => 'audioBitsPerSample' }, + 'audiobutton' => { 325 => 0x17b, 326 => 0x193 }, + 'audiobuttonplaybackmode' => { 325 => 0x1b9, 326 => 0x1d1 }, + 'audiochannelcount' => { 531 => 'audioChannelCount' }, 'audiochannels' => { 71 => 0x70 }, - 'audiochanneltype' => { 544 => 'audioChannelType' }, + 'audiochanneltype' => { 546 => 'audioChannelType' }, 'audiocompression' => { 89 => 0x816, 160 => 'Compression' }, - 'audiocompressor' => { 544 => 'audioCompressor' }, - 'audiodata' => { 496 => 'Data' }, + 'audiocompressor' => { 546 => 'audioCompressor' }, + 'audiodata' => { 498 => 'Data' }, 'audioduration' => { 136 => 0x99 }, - 'audiogain' => { 405 => 'player.movie.audio.gain' }, - 'audiomimetype' => { 496 => 'Mime' }, - 'audiomoddate' => { 544 => 'audioModDate' }, + 'audiogain' => { 407 => 'player.movie.audio.gain' }, + 'audiomimetype' => { 498 => 'Mime' }, + 'audiomoddate' => { 546 => 'audioModDate' }, 'audiooutcue' => { 136 => 0x9a }, - 'audiosamplerate' => { 71 => 0x6e, 544 => 'audioSampleRate' }, - 'audiosampletype' => { 544 => 'audioSampleType' }, + 'audiosamplerate' => { 71 => 0x6e, 546 => 'audioSampleRate' }, + 'audiosampletype' => { 546 => 'audioSampleType' }, 'audiosamplingrate' => { 136 => 0x97 }, 'audiosamplingresolution' => { 136 => 0x98 }, 'audiotype' => { 136 => 0x96 }, - 'author' => { 162 => 'Author', 335 => 'Author', 339 => 'Author', 402 => 'Author', 403 => ['auth',"\xa9aut"], 405 => 'author', 411 => 'auth', 510 => 'author', 531 => 'Author', 542 => 'Author' }, - 'authorsposition' => { 532 => 'AuthorsPosition' }, + 'author' => { 162 => 'Author', 337 => 'Author', 341 => 'Author', 404 => 'Author', 405 => ['auth',"\xa9aut"], 407 => 'author', 413 => 'auth', 512 => 'author', 533 => 'Author', 544 => 'Author' }, + 'authorsposition' => { 534 => 'AuthorsPosition' }, 'authorurl' => { 184 => 'WM/AuthorURL' }, 'autoafpointcolortracking' => { 89 => 0x51c }, 'autoafpointseleositraf' => { 2 => 0xa }, - 'autoaperture' => { 376 => '0.1' }, - 'autobracket' => { 428 => 0x19 }, - 'autobracketing' => { 132 => 0x1100, 386 => 0x18, 418 => 0x1007 }, - 'autobracketingmode' => { 318 => '12.3' }, - 'autobracketingset' => { 318 => '12.1' }, - 'autobracketmodem' => { 306 => '21.2', 307 => '13.3', 309 => '13.2', 310 => '13.2', 315 => '26.2', 319 => '13.3', 320 => '13.2', 322 => 0x5f, 323 => 0x5f, 324 => 0x5f }, - 'autobracketorder' => { 189 => 0x43, 306 => '21.3', 307 => '13.2', 309 => '13.1', 310 => '13.1', 315 => '26.3', 316 => '12.2', 317 => '2.2', 318 => '12.2', 319 => '13.2', 320 => '13.1', 321 => '13.2', 322 => 0x61, 323 => 0x61, 324 => 0x61 }, - 'autobracketset' => { 306 => '21.1', 307 => '13.1', 311 => '11.1', 312 => '12.1', 313 => '12.1', 315 => '26.1', 316 => '12.1', 317 => '2.1', 319 => '13.1', 321 => '13.1' }, - 'autobrightness' => { 515 => 'AutoBrightness', 517 => 'AutoBrightness' }, + 'autoaperture' => { 378 => '0.1' }, + 'autobracket' => { 430 => 0x19 }, + 'autobracketing' => { 132 => 0x1100, 388 => 0x18, 420 => 0x1007 }, + 'autobracketingmode' => { 319 => '12.3' }, + 'autobracketingset' => { 319 => '12.1' }, + 'autobracketmodem' => { 307 => '21.2', 308 => '13.3', 310 => '13.2', 311 => '13.2', 316 => '26.2', 320 => '13.3', 321 => '13.2', 323 => 0x63, 324 => 0x5f, 325 => 0x5f, 326 => 0x5f }, + 'autobracketorder' => { 189 => 0x43, 307 => '21.3', 308 => '13.2', 310 => '13.1', 311 => '13.1', 316 => '26.3', 317 => '12.2', 318 => '2.2', 319 => '12.2', 320 => '13.2', 321 => '13.1', 322 => '13.2', 323 => 0x65, 324 => 0x61, 325 => 0x61, 326 => 0x61 }, + 'autobracketset' => { 307 => '21.1', 308 => '13.1', 312 => '11.1', 313 => '12.1', 314 => '12.1', 316 => '26.1', 317 => '12.1', 318 => '2.1', 320 => '13.1', 322 => '13.1' }, + 'autobrightness' => { 517 => 'AutoBrightness', 519 => 'AutoBrightness' }, 'autocapturecriteria' => { 201 => 0x1 }, 'autocapturecriteriamotiondirection' => { 201 => 0x5f }, 'autocapturecriteriamotionsize' => { 201 => 0x64 }, @@ -1134,44 +1136,44 @@ my %tagLookup = ( 'autocapturedframe' => { 201 => 0x0 }, 'autocapturedistancefar' => { 201 => 0x4a }, 'autocapturedistancenear' => { 201 => 0x4e }, - 'autocapturepreset' => { 250 => 0x746 }, + 'autocapturepreset' => { 251 => 0x746 }, 'autocapturerecordingtime' => { 201 => 0x37 }, 'autocapturewaittime' => { 201 => 0x38 }, - 'autocontrast' => { 515 => 'AutoContrast', 517 => 'AutoContrast' }, - 'autodistortioncontrol' => { 215 => 0x4, 245 => 0x143 }, + 'autocontrast' => { 517 => 'AutoContrast', 519 => 'AutoContrast' }, + 'autodistortioncontrol' => { 215 => 0x4, 245 => 0x2cf, 246 => 0x143 }, 'autodynamicrange' => { 132 => 0x140b }, - 'autoexposure' => { 515 => 'AutoExposure', 517 => 'AutoExposure' }, + 'autoexposure' => { 517 => 'AutoExposure', 519 => 'AutoExposure' }, 'autoexposurebracketing' => { 81 => 0x10 }, - 'autoflashisosensitivity' => { 309 => '38.5', 310 => '38.5', 320 => '38.5', 322 => 0x5b, 323 => 0x5b, 324 => 0x5b }, - 'autofocus' => { 329 => 0x209 }, - 'autofocusmoderestrictions' => { 322 => 0x107, 323 => 0x107, 324 => 0x11d }, - 'autofp' => { 317 => '7.3', 321 => '31.4' }, - 'autoiso' => { 81 => 0x1, 118 => 0x3008, 246 => 0x152, 247 => 0x152, 248 => 0x142, 249 => 0x156, 250 => 0x156, 308 => '1.1', 317 => '1.1' }, - 'autoisomax' => { 308 => '1.2', 317 => '1.2' }, - 'autoisominshutterspeed' => { 308 => '1.3', 317 => '1.3' }, - 'autolateralca' => { 515 => 'AutoLateralCA', 517 => 'AutoLateralCA' }, + 'autoflashisosensitivity' => { 310 => '38.5', 311 => '38.5', 321 => '38.5', 323 => 0x5f, 324 => 0x5b, 325 => 0x5b, 326 => 0x5b }, + 'autofocus' => { 331 => 0x209 }, + 'autofocusmoderestrictions' => { 324 => 0x107, 325 => 0x107, 326 => 0x11d }, + 'autofp' => { 318 => '7.3', 322 => '31.4' }, + 'autoiso' => { 81 => 0x1, 118 => 0x3008, 245 => 0x288, 247 => 0x152, 248 => 0x152, 249 => 0x142, 250 => 0x156, 251 => 0x156, 309 => '1.1', 318 => '1.1' }, + 'autoisomax' => { 309 => '1.2', 318 => '1.2' }, + 'autoisominshutterspeed' => { 309 => '1.3', 318 => '1.3' }, + 'autolateralca' => { 517 => 'AutoLateralCA', 519 => 'AutoLateralCA' }, 'autolightingoptimizer' => { 16 => 0xbe, 17 => 0xbf, 20 => 0xbf, 66 => 0x2, 89 => 0x204, 108 => 0x20500, 114 => 0x6f }, 'autolightingoptimizeron' => { 108 => '0x20500.0', 114 => 0x6e }, - 'autoportraitframed' => { 452 => 0x2016 }, - 'autoredeye' => { 299 => 0xfe28a44f }, + 'autoportraitframed' => { 454 => 0x2016 }, + 'autoredeye' => { 300 => 0xfe28a44f }, 'autorotate' => { 81 => 0x1b }, - 'autoshadows' => { 515 => 'AutoShadows', 517 => 'AutoShadows' }, - 'autotone' => { 515 => 'AutoTone', 517 => 'AutoTone' }, - 'autotonedigest' => { 515 => 'AutoToneDigest', 517 => 'AutoToneDigest' }, - 'autotonedigestnosat' => { 515 => 'AutoToneDigestNoSat', 517 => 'AutoToneDigestNoSat' }, - 'autowhiteversion' => { 515 => 'AutoWhiteVersion', 517 => 'AutoWhiteVersion' }, + 'autoshadows' => { 517 => 'AutoShadows', 519 => 'AutoShadows' }, + 'autotone' => { 517 => 'AutoTone', 519 => 'AutoTone' }, + 'autotonedigest' => { 517 => 'AutoToneDigest', 519 => 'AutoToneDigest' }, + 'autotonedigestnosat' => { 517 => 'AutoToneDigestNoSat', 519 => 'AutoToneDigestNoSat' }, + 'autowhiteversion' => { 517 => 'AutoWhiteVersion', 519 => 'AutoWhiteVersion' }, 'auxiliarylens' => { 241 => 0x82 }, - 'avaperturesetting' => { 366 => 0x13 }, + 'avaperturesetting' => { 368 => 0x13 }, 'averageblacklevel' => { 48 => 0xe7, 50 => 0xfb, 51 => 0x114, 52 => 0x146 }, 'averagelv' => { 192 => 0x38 }, 'avsettingwithoutlens' => { 89 => 0x707 }, 'azimuth' => { 170 => 'Azimuth' }, - 'babyage' => { 350 => [0x8010,0x33] }, - 'babyname' => { 350 => 0x66 }, - 'backgroundalpha' => { 539 => 'bgalpha' }, - 'balance' => { 405 => 'player.movie.audio.balance' }, - 'baseexposurecompensation' => { 366 => 0x15 }, - 'baseiso' => { 81 => 0x2, 102 => 0x101c, 143 => 0x903, 352 => 0x312a, 484 => 0x6 }, + 'babyage' => { 352 => [0x8010,0x33] }, + 'babyname' => { 352 => 0x66 }, + 'backgroundalpha' => { 541 => 'bgalpha' }, + 'balance' => { 407 => 'player.movie.audio.balance' }, + 'baseexposurecompensation' => { 368 => 0x15 }, + 'baseiso' => { 81 => 0x2, 102 => 0x101c, 143 => 0x903, 354 => 0x312a, 486 => 0x6 }, 'baseisodaylight' => { 143 => 0x910 }, 'baseisoflash' => { 143 => 0x913 }, 'baseisofluorescent' => { 143 => 0x912 }, @@ -1180,138 +1182,138 @@ my %tagLookup = ( 'baselineexposureoffset' => { 124 => 0xc7a5 }, 'baselinenoise' => { 124 => 0xc62b }, 'baselinesharpness' => { 124 => 0xc62c }, - 'baserenditionishdr' => { 526 => 'BaseRenditionIsHDR' }, - 'baseurl' => { 542 => 'BaseURL' }, - 'bass' => { 405 => 'player.movie.audio.bass' }, - 'batterylevel' => { 350 => 0x38, 438 => 0x51, 442 => 0xc, 443 => 0x4, 444 => 0x4, 485 => 0x7, 486 => 0x5 }, - 'batterylevel2' => { 486 => 0x7 }, - 'batterylevelgrip1' => { 485 => 0x6 }, - 'batterylevelgrip2' => { 485 => 0x8 }, - 'batteryorder' => { 306 => '12.5', 315 => '13.2', 316 => '2.1', 319 => '3.1' }, - 'batterystate' => { 189 => 0x60, 438 => 0x50, 444 => 0x14 }, - 'batterytemperature' => { 442 => 0x1, 444 => 0x2, 485 => 0x5 }, - 'batterytype' => { 68 => 0x38, 414 => 0x66 }, - 'batteryunknown' => { 442 => 0x2, 444 => 0x0 }, - 'batteryvoltage' => { 143 => 0x408, 412 => 0x2a, 413 => 0x49, 414 => 0x62, 442 => 0x8 }, - 'batteryvoltage1' => { 444 => 0x6 }, - 'batteryvoltage2' => { 444 => 0x8 }, - 'batteryvoltageavg' => { 414 => 0x64 }, + 'baserenditionishdr' => { 528 => 'BaseRenditionIsHDR' }, + 'baseurl' => { 544 => 'BaseURL' }, + 'bass' => { 407 => 'player.movie.audio.bass' }, + 'batterylevel' => { 352 => 0x38, 440 => 0x51, 444 => 0xc, 445 => 0x4, 446 => 0x4, 487 => 0x7, 488 => 0x5 }, + 'batterylevel2' => { 488 => 0x7 }, + 'batterylevelgrip1' => { 487 => 0x6 }, + 'batterylevelgrip2' => { 487 => 0x8 }, + 'batteryorder' => { 307 => '12.5', 316 => '13.2', 317 => '2.1', 320 => '3.1' }, + 'batterystate' => { 189 => 0x60, 440 => 0x50, 446 => 0x14 }, + 'batterytemperature' => { 444 => 0x1, 446 => 0x2, 487 => 0x5 }, + 'batterytype' => { 68 => 0x38, 416 => 0x66 }, + 'batteryunknown' => { 444 => 0x2, 446 => 0x0 }, + 'batteryvoltage' => { 143 => 0x408, 414 => 0x2a, 415 => 0x49, 416 => 0x62, 444 => 0x8 }, + 'batteryvoltage1' => { 446 => 0x6 }, + 'batteryvoltage2' => { 446 => 0x8 }, + 'batteryvoltageavg' => { 416 => 0x64 }, 'bayergreensplit' => { 124 => 0xc62d }, 'bayerpattern' => { 142 => 0xf902, 193 => 0x17 }, - 'beatsperminute' => { 403 => 'tmpo' }, - 'beatspliceparams' => { 544 => 'beatSpliceParams' }, - 'beatspliceparamsriseindecibel' => { 544 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] }, - 'beatspliceparamsriseintimeduration' => { 544 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] }, - 'beatspliceparamsriseintimedurationscale' => { 544 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] }, - 'beatspliceparamsriseintimedurationvalue' => { 544 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] }, - 'beatspliceparamsusefilebeatsmarker' => { 544 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] }, - 'beep' => { 306 => '13.1', 307 => '5.4', 308 => '0.1', 311 => '2.1', 312 => '3.1', 313 => '3.1', 315 => '10.1', 317 => '0.1', 319 => '5.5', 321 => '4.1' }, - 'beeppitch' => { 316 => '3.1' }, - 'beepvolume' => { 316 => '4.5' }, + 'beatsperminute' => { 405 => 'tmpo' }, + 'beatspliceparams' => { 546 => 'beatSpliceParams' }, + 'beatspliceparamsriseindecibel' => { 546 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] }, + 'beatspliceparamsriseintimeduration' => { 546 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] }, + 'beatspliceparamsriseintimedurationscale' => { 546 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] }, + 'beatspliceparamsriseintimedurationvalue' => { 546 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] }, + 'beatspliceparamsusefilebeatsmarker' => { 546 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] }, + 'beep' => { 307 => '13.1', 308 => '5.4', 309 => '0.1', 312 => '2.1', 313 => '3.1', 314 => '3.1', 316 => '10.1', 318 => '0.1', 320 => '5.5', 322 => '4.1' }, + 'beeppitch' => { 317 => '3.1' }, + 'beepvolume' => { 317 => '4.5' }, 'bestqualityscale' => { 124 => 0xc65c }, 'bestshotmode' => { 118 => 0x3007 }, - 'bitdepth' => { 167 => 'BitDepth', 193 => 0x11, 265 => 0x41 }, + 'bitdepth' => { 167 => 'BitDepth', 193 => 0x11, 266 => 0x41 }, 'bitspercomponent' => { 138 => 0x87 }, - 'bitspersample' => { 124 => 0x102, 355 => 0xa, 540 => 'BitsPerSample' }, + 'bitspersample' => { 124 => 0x102, 357 => 0xa, 542 => 'BitsPerSample' }, 'blackacquirerows' => { 143 => 0x18ba }, - 'blacklevel' => { 124 => [0x7310,0xc61a], 212 => 0x20, 241 => 0x3d, 331 => [0x401,0x1012], 395 => 0x21d, 459 => [0x7300,0x7310] }, - 'blacklevel2' => { 330 => 0x600, 334 => 0x600 }, - 'blacklevelblue' => { 355 => 0x1e }, + 'blacklevel' => { 124 => [0x7310,0xc61a], 212 => 0x20, 241 => 0x3d, 333 => [0x401,0x1012], 397 => 0x21d, 461 => [0x7300,0x7310] }, + 'blacklevel2' => { 332 => 0x600, 336 => 0x600 }, + 'blacklevelblue' => { 357 => 0x1e }, 'blacklevelbottom' => { 143 => 0x3f0 }, - 'blackleveldata' => { 395 => 0x223 }, + 'blackleveldata' => { 397 => 0x223 }, 'blackleveldeltah' => { 124 => 0xc61b }, 'blackleveldeltav' => { 124 => 0xc61c }, - 'blacklevelgreen' => { 355 => 0x1d }, - 'blacklevelred' => { 355 => 0x1c }, + 'blacklevelgreen' => { 357 => 0x1d }, + 'blacklevelred' => { 357 => 0x1c }, 'blacklevelrepeatdim' => { 124 => 0xc619 }, 'blacklevelrough' => { 143 => 0x40e }, 'blacklevelroughafter' => { 143 => 0x416 }, 'blacklevels' => { 37 => 0x1d }, 'blackleveltop' => { 143 => 0x3ef }, - 'blackpoint' => { 386 => 0x200 }, - 'blacks2012' => { 515 => 'Blacks2012', 517 => 'Blacks2012' }, - 'blacksadj' => { 489 => 0x9018 }, - 'bleachbypasstoning' => { 386 => 0x7f }, - 'blockshotafresponse' => { 309 => '1.5', 310 => '1.5', 320 => '1.5', 322 => 0x7, 323 => 0x7, 324 => 0x7 }, - 'blogtitle' => { 534 => 'blogTitle' }, - 'blogurl' => { 534 => 'blogURL' }, - 'bluebalance' => { 331 => 0x1018, 355 => 0x12, 386 => 0x1b }, + 'blackpoint' => { 388 => 0x200 }, + 'blacks2012' => { 517 => 'Blacks2012', 519 => 'Blacks2012' }, + 'blacksadj' => { 491 => 0x9018 }, + 'bleachbypasstoning' => { 388 => 0x7f }, + 'blockshotafresponse' => { 310 => '1.5', 311 => '1.5', 321 => '1.5', 323 => 0x7, 324 => 0x7, 325 => 0x7, 326 => 0x7 }, + 'blogtitle' => { 536 => 'blogTitle' }, + 'blogurl' => { 536 => 'blogURL' }, + 'bluebalance' => { 333 => 0x1018, 357 => 0x12, 388 => 0x1b }, 'bluecurvelimits' => { 113 => 0x1fe }, 'bluecurvepoints' => { 112 => 0x79, 113 => 0x1d4 }, 'bluehsl' => { 108 => 0x20915 }, - 'bluehue' => { 515 => 'BlueHue', 517 => 'BlueHue' }, - 'bluesaturation' => { 515 => 'BlueSaturation', 517 => 'BlueSaturation' }, - 'bluratinfinity' => { 501 => 'BlurAtInfinity' }, - 'blurcontrol' => { 386 => 0x82 }, + 'bluehue' => { 517 => 'BlueHue', 519 => 'BlueHue' }, + 'bluesaturation' => { 517 => 'BlueSaturation', 519 => 'BlueSaturation' }, + 'bluratinfinity' => { 503 => 'BlurAtInfinity' }, + 'blurcontrol' => { 388 => 0x82 }, 'blurwarning' => { 132 => 0x1300 }, - 'bodybatteryadload' => { 364 => 0x3 }, - 'bodybatteryadnoload' => { 364 => 0x2 }, - 'bodybatterypercent' => { 364 => 0x3 }, - 'bodybatterystate' => { 364 => ['1.1',0x2] }, - 'bodybatteryvoltage' => { 364 => 0x4 }, - 'bodybatteryvoltage1' => { 364 => 0x2 }, - 'bodybatteryvoltage2' => { 364 => 0x4 }, - 'bodybatteryvoltage3' => { 364 => 0x6 }, - 'bodybatteryvoltage4' => { 364 => 0x8 }, - 'bodyfirmware' => { 419 => 0x0 }, - 'bodyfirmwareversion' => { 327 => 0x104, 328 => 0x100, 331 => 0x104 }, - 'bodyserialnumber' => { 419 => 0x10 }, - 'bookedition' => { 534 => 'bookEdition' }, - 'bootloaderversion' => { 413 => 0x26 }, - 'bracketbutton' => { 247 => 0x808, 250 => 0x80c }, - 'bracketbuttonplaybackmode' => { 247 => 0x810, 250 => 0x816 }, - 'bracketincrement' => { 246 => 0x22e, 247 => 0x22e, 248 => 0x21a, 249 => 0x22e, 250 => 0x22e }, + 'bodybatteryadload' => { 366 => 0x3 }, + 'bodybatteryadnoload' => { 366 => 0x2 }, + 'bodybatterypercent' => { 366 => 0x3 }, + 'bodybatterystate' => { 366 => ['1.1',0x2] }, + 'bodybatteryvoltage' => { 366 => 0x4 }, + 'bodybatteryvoltage1' => { 366 => 0x2 }, + 'bodybatteryvoltage2' => { 366 => 0x4 }, + 'bodybatteryvoltage3' => { 366 => 0x6 }, + 'bodybatteryvoltage4' => { 366 => 0x8 }, + 'bodyfirmware' => { 421 => 0x0 }, + 'bodyfirmwareversion' => { 329 => 0x104, 330 => 0x100, 333 => 0x104 }, + 'bodyserialnumber' => { 421 => 0x10 }, + 'bookedition' => { 536 => 'bookEdition' }, + 'bootloaderversion' => { 415 => 0x26 }, + 'bracketbutton' => { 248 => 0x808, 251 => 0x80c }, + 'bracketbuttonplaybackmode' => { 248 => 0x810, 251 => 0x816 }, + 'bracketincrement' => { 245 => 0x34a, 247 => 0x22e, 248 => 0x22e, 249 => 0x21a, 250 => 0x22e, 251 => 0x22e }, 'bracketmode' => { 60 => 0x3 }, - 'bracketprogram' => { 246 => 0x22c, 247 => 0x22c, 248 => 0x218, 249 => 0x22c, 250 => 0x22c }, + 'bracketprogram' => { 245 => 0x348, 247 => 0x22c, 248 => 0x22c, 249 => 0x218, 250 => 0x22c, 251 => 0x22c }, 'bracketsequence' => { 118 => 0x301d }, - 'bracketset' => { 246 => 0x22a, 247 => 0x22a, 248 => 0x216, 249 => 0x22a, 250 => 0x22a }, - 'bracketsettings' => { 350 => 0x45 }, - 'bracketshotnumber' => { 60 => 0x5, 366 => 0x9, 449 => 0x2b }, - 'bracketshotnumber2' => { 449 => 0x2d }, + 'bracketset' => { 245 => 0x346, 247 => 0x22a, 248 => 0x22a, 249 => 0x216, 250 => 0x22a, 251 => 0x22a }, + 'bracketsettings' => { 352 => 0x45 }, + 'bracketshotnumber' => { 60 => 0x5, 368 => 0x9, 451 => 0x2b }, + 'bracketshotnumber2' => { 451 => 0x2d }, 'bracketstep' => { 186 => 0xe }, 'bracketvalue' => { 60 => 0x4 }, - 'brightness' => { 124 => 0xfe53, 161 => 'Brightness', 181 => 'Brightness', 186 => 0x2c, 257 => 0x34, 258 => 0x39, 259 => 0x41, 405 => 'player.movie.visual.brightness', 412 => 0x25, 414 => 0x54, 438 => 0x22, 452 => 0x2007, 515 => 'Brightness', 517 => 'Brightness' }, - 'brightnessadj' => { 113 => 0x114, 292 => 0x0, 302 => 0x2d, 489 => 0x8018 }, - 'brightnessvalue' => { 124 => 0x9203, 192 => [0x691,0x49c3], 331 => 0x1003, 457 => 0x1e, 461 => 0x1140, 462 => 0x1140, 463 => 0x111c, 464 => 0x1198, 465 => 0x1174, 466 => 0x102c, 467 => 0x224, 468 => 0x224, 469 => 0x219, 521 => 'BrightnessValue' }, + 'brightness' => { 124 => 0xfe53, 161 => 'Brightness', 181 => 'Brightness', 186 => 0x2c, 258 => 0x34, 259 => 0x39, 260 => 0x41, 407 => 'player.movie.visual.brightness', 414 => 0x25, 416 => 0x54, 440 => 0x22, 454 => 0x2007, 517 => 'Brightness', 519 => 'Brightness' }, + 'brightnessadj' => { 113 => 0x114, 293 => 0x0, 303 => 0x2d, 491 => 0x8018 }, + 'brightnessvalue' => { 124 => 0x9203, 192 => [0x691,0x49c3], 333 => 0x1003, 459 => 0x1e, 463 => 0x1140, 464 => 0x1140, 465 => 0x111c, 466 => 0x1198, 467 => 0x1174, 468 => 0x102c, 469 => 0x224, 470 => 0x224, 471 => 0x219, 523 => 'BrightnessValue' }, 'buildnumber' => { 196 => 0x5500 }, 'bulbduration' => { 81 => 0x18 }, 'burstcount' => { 143 => 0x40d }, 'burstgroupid' => { 243 => 0x4 }, - 'burstid' => { 497 => 'BurstID' }, - 'burstmode' => { 145 => 0xa, 350 => 0x2a }, + 'burstid' => { 499 => 'BurstID' }, + 'burstmode' => { 145 => 0xa, 352 => 0x2a }, 'burstmode2' => { 145 => 0x18 }, - 'burstprimary' => { 497 => 'BurstPrimary' }, - 'burstshot' => { 428 => 0x34 }, - 'burstspeed' => { 350 => 0x77 }, + 'burstprimary' => { 499 => 'BurstPrimary' }, + 'burstshot' => { 430 => 0x34 }, + 'burstspeed' => { 352 => 0x77 }, 'burstuuid' => { 1 => 0xb }, 'buttonfunctioncontroloff' => { 89 => 0x70a }, 'bwadjustment' => { 132 => 0x1049 }, 'bwfilter' => { 186 => 0x2a, 194 => 0x39 }, 'bwmagentagreen' => { 132 => 0x104b }, - 'bwmode' => { 331 => 0x203 }, + 'bwmode' => { 333 => 0x203 }, 'by-line' => { 136 => 0x50 }, 'by-linetitle' => { 136 => 0x55 }, - 'bytecount' => { 534 => 'byteCount' }, + 'bytecount' => { 536 => 'byteCount' }, 'c14configuration' => { 143 => 0x1964 }, 'cacheversion' => { 124 => 0xc7aa }, 'calibratedfocallength' => { 121 => 'CalibratedFocalLength' }, 'calibratedopticalcenterx' => { 121 => 'CalibratedOpticalCenterX' }, 'calibratedopticalcentery' => { 121 => 'CalibratedOpticalCenterY' }, - 'calibration' => { 428 => [0x24,0x30] }, + 'calibration' => { 430 => [0x24,0x30] }, 'calibrationhistory' => { 143 => 0x9c9 }, 'calibrationilluminant1' => { 124 => 0xc65a }, 'calibrationilluminant2' => { 124 => 0xc65b }, 'calibrationilluminant3' => { 124 => 0xcd31 }, 'calibrationversion' => { 143 => 0x9c6 }, - 'callforimage' => { 505 => 'CallForImage' }, - 'camera' => { 493 => [\'Cameras','CamerasCamera'] }, - 'cameraangle' => { 411 => 'angl', 544 => 'cameraAngle' }, - 'cameraappinfo' => { 493 => [\'Cameras','CamerasCameraAppInfo'] }, - 'cameraappinfoapplication' => { 493 => [\'Cameras','CamerasCameraAppInfoApplication'] }, - 'cameraappinfoitemuri' => { 493 => [\'Cameras','CamerasCameraAppInfoItemURI'] }, - 'cameraappinfoversion' => { 493 => [\'Cameras','CamerasCameraAppInfoVersion'] }, - 'cameraburstid' => { 499 => 'CameraBurstID' }, - 'cameracalibration' => { 428 => 0x11f }, + 'callforimage' => { 507 => 'CallForImage' }, + 'camera' => { 495 => [\'Cameras','CamerasCamera'] }, + 'cameraangle' => { 413 => 'angl', 546 => 'cameraAngle' }, + 'cameraappinfo' => { 495 => [\'Cameras','CamerasCameraAppInfo'] }, + 'cameraappinfoapplication' => { 495 => [\'Cameras','CamerasCameraAppInfoApplication'] }, + 'cameraappinfoitemuri' => { 495 => [\'Cameras','CamerasCameraAppInfoItemURI'] }, + 'cameraappinfoversion' => { 495 => [\'Cameras','CamerasCameraAppInfoVersion'] }, + 'cameraburstid' => { 501 => 'CameraBurstID' }, + 'cameracalibration' => { 430 => 0x11f }, 'cameracalibration1' => { 124 => 0xc623 }, 'cameracalibration2' => { 124 => 0xc624 }, 'cameracalibration3' => { 124 => 0xcd32 }, @@ -1331,95 +1333,95 @@ my %tagLookup = ( 'cameracolorcalibration13' => { 38 => 0x30, 39 => 0x3c }, 'cameracolorcalibration14' => { 38 => 0x34, 39 => 0x41 }, 'cameracolorcalibration15' => { 38 => 0x38, 39 => 0x46 }, - 'cameradepthmap' => { 493 => [\'Cameras','CamerasCameraDepthMap'] }, - 'cameradepthmapconfidenceuri' => { 493 => [\'Cameras','CamerasCameraDepthMapConfidenceURI'] }, - 'cameradepthmapdepthuri' => { 493 => [\'Cameras','CamerasCameraDepthMapDepthURI'] }, - 'cameradepthmapfar' => { 493 => [\'Cameras','CamerasCameraDepthMapFar'] }, - 'cameradepthmapfocaltable' => { 493 => [\'Cameras','CamerasCameraDepthMapFocalTable'] }, - 'cameradepthmapfocaltableentrycount' => { 493 => [\'Cameras','CamerasCameraDepthMapFocalTableEntryCount'] }, - 'cameradepthmapformat' => { 493 => [\'Cameras','CamerasCameraDepthMapFormat'] }, - 'cameradepthmapitemsemantic' => { 493 => [\'Cameras','CamerasCameraDepthMapItemSemantic'] }, - 'cameradepthmapmeasuretype' => { 493 => [\'Cameras','CamerasCameraDepthMapMeasureType'] }, - 'cameradepthmapnear' => { 493 => [\'Cameras','CamerasCameraDepthMapNear'] }, - 'cameradepthmapsoftware' => { 493 => [\'Cameras','CamerasCameraDepthMapSoftware'] }, - 'cameradepthmapunits' => { 493 => [\'Cameras','CamerasCameraDepthMapUnits'] }, - 'cameradirection' => { 405 => 'direction.facing' }, - 'camerae-mountversion' => { 488 => 0xb }, - 'cameraelevationangle' => { 124 => 0x9405, 522 => 'CameraElevationAngle' }, - 'camerafilename' => { 505 => 'CameraFilename' }, + 'cameradepthmap' => { 495 => [\'Cameras','CamerasCameraDepthMap'] }, + 'cameradepthmapconfidenceuri' => { 495 => [\'Cameras','CamerasCameraDepthMapConfidenceURI'] }, + 'cameradepthmapdepthuri' => { 495 => [\'Cameras','CamerasCameraDepthMapDepthURI'] }, + 'cameradepthmapfar' => { 495 => [\'Cameras','CamerasCameraDepthMapFar'] }, + 'cameradepthmapfocaltable' => { 495 => [\'Cameras','CamerasCameraDepthMapFocalTable'] }, + 'cameradepthmapfocaltableentrycount' => { 495 => [\'Cameras','CamerasCameraDepthMapFocalTableEntryCount'] }, + 'cameradepthmapformat' => { 495 => [\'Cameras','CamerasCameraDepthMapFormat'] }, + 'cameradepthmapitemsemantic' => { 495 => [\'Cameras','CamerasCameraDepthMapItemSemantic'] }, + 'cameradepthmapmeasuretype' => { 495 => [\'Cameras','CamerasCameraDepthMapMeasureType'] }, + 'cameradepthmapnear' => { 495 => [\'Cameras','CamerasCameraDepthMapNear'] }, + 'cameradepthmapsoftware' => { 495 => [\'Cameras','CamerasCameraDepthMapSoftware'] }, + 'cameradepthmapunits' => { 495 => [\'Cameras','CamerasCameraDepthMapUnits'] }, + 'cameradirection' => { 407 => 'direction.facing' }, + 'camerae-mountversion' => { 490 => 0xb }, + 'cameraelevationangle' => { 124 => 0x9405, 524 => 'CameraElevationAngle' }, + 'camerafilename' => { 507 => 'CameraFilename' }, 'camerafirmware' => { 124 => 0xa439 }, - 'cameraid' => { 331 => 0x209, 411 => 'cmid', 427 => 0x209 }, - 'cameraidentifier' => { 405 => 'camera.identifier' }, - 'cameraimage' => { 493 => [\'Cameras','CamerasCameraImage'] }, - 'cameraimageitemsemantic' => { 493 => [\'Cameras','CamerasCameraImageItemSemantic'] }, - 'cameraimageitemuri' => { 493 => [\'Cameras','CamerasCameraImageItemURI'] }, - 'cameraimagingmodel' => { 493 => [\'Cameras','CamerasCameraImagingModel'] }, - 'cameraimagingmodeldistortion' => { 493 => [\'Cameras','CamerasCameraImagingModelDistortion'] }, - 'cameraimagingmodeldistortioncount' => { 493 => [\'Cameras','CamerasCameraImagingModelDistortionCount'] }, - 'cameraimagingmodelfocallengthx' => { 493 => [\'Cameras','CamerasCameraImagingModelFocalLengthX'] }, - 'cameraimagingmodelfocallengthy' => { 493 => [\'Cameras','CamerasCameraImagingModelFocalLengthY'] }, - 'cameraimagingmodelimageheight' => { 493 => [\'Cameras','CamerasCameraImagingModelImageHeight'] }, - 'cameraimagingmodelimagewidth' => { 493 => [\'Cameras','CamerasCameraImagingModelImageWidth'] }, - 'cameraimagingmodelpixelaspectratio' => { 493 => [\'Cameras','CamerasCameraImagingModelPixelAspectRatio'] }, - 'cameraimagingmodelprincipalpointx' => { 493 => [\'Cameras','CamerasCameraImagingModelPrincipalPointX'] }, - 'cameraimagingmodelprincipalpointy' => { 493 => [\'Cameras','CamerasCameraImagingModelPrincipalPointY'] }, - 'cameraimagingmodelskew' => { 493 => [\'Cameras','CamerasCameraImagingModelSkew'] }, + 'cameraid' => { 333 => 0x209, 413 => 'cmid', 429 => 0x209 }, + 'cameraidentifier' => { 407 => 'camera.identifier' }, + 'cameraimage' => { 495 => [\'Cameras','CamerasCameraImage'] }, + 'cameraimageitemsemantic' => { 495 => [\'Cameras','CamerasCameraImageItemSemantic'] }, + 'cameraimageitemuri' => { 495 => [\'Cameras','CamerasCameraImageItemURI'] }, + 'cameraimagingmodel' => { 495 => [\'Cameras','CamerasCameraImagingModel'] }, + 'cameraimagingmodeldistortion' => { 495 => [\'Cameras','CamerasCameraImagingModelDistortion'] }, + 'cameraimagingmodeldistortioncount' => { 495 => [\'Cameras','CamerasCameraImagingModelDistortionCount'] }, + 'cameraimagingmodelfocallengthx' => { 495 => [\'Cameras','CamerasCameraImagingModelFocalLengthX'] }, + 'cameraimagingmodelfocallengthy' => { 495 => [\'Cameras','CamerasCameraImagingModelFocalLengthY'] }, + 'cameraimagingmodelimageheight' => { 495 => [\'Cameras','CamerasCameraImagingModelImageHeight'] }, + 'cameraimagingmodelimagewidth' => { 495 => [\'Cameras','CamerasCameraImagingModelImageWidth'] }, + 'cameraimagingmodelpixelaspectratio' => { 495 => [\'Cameras','CamerasCameraImagingModelPixelAspectRatio'] }, + 'cameraimagingmodelprincipalpointx' => { 495 => [\'Cameras','CamerasCameraImagingModelPrincipalPointX'] }, + 'cameraimagingmodelprincipalpointy' => { 495 => [\'Cameras','CamerasCameraImagingModelPrincipalPointY'] }, + 'cameraimagingmodelskew' => { 495 => [\'Cameras','CamerasCameraImagingModelSkew'] }, 'cameraiso' => { 36 => 0x10 }, - 'cameralabel' => { 124 => 0xc7a1, 544 => 'cameraLabel' }, - 'cameralightestimate' => { 493 => [\'Cameras','CamerasCameraLightEstimate'] }, - 'cameralightestimatecolorcorrectionb' => { 493 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionB'] }, - 'cameralightestimatecolorcorrectiong' => { 493 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionG'] }, - 'cameralightestimatecolorcorrectionr' => { 493 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionR'] }, - 'cameralightestimatepixelintensity' => { 493 => [\'Cameras','CamerasCameraLightEstimatePixelIntensity'] }, - 'cameramakemodel' => { 505 => 'CameraMakeModel' }, - 'cameramodel' => { 395 => 0x410, 544 => 'cameraModel' }, + 'cameralabel' => { 124 => 0xc7a1, 546 => 'cameraLabel' }, + 'cameralightestimate' => { 495 => [\'Cameras','CamerasCameraLightEstimate'] }, + 'cameralightestimatecolorcorrectionb' => { 495 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionB'] }, + 'cameralightestimatecolorcorrectiong' => { 495 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionG'] }, + 'cameralightestimatecolorcorrectionr' => { 495 => [\'Cameras','CamerasCameraLightEstimateColorCorrectionR'] }, + 'cameralightestimatepixelintensity' => { 495 => [\'Cameras','CamerasCameraLightEstimatePixelIntensity'] }, + 'cameramakemodel' => { 507 => 'CameraMakeModel' }, + 'cameramodel' => { 397 => 0x410, 546 => 'cameraModel' }, 'cameramodelid' => { 181 => 'CameraModelID' }, - 'cameramodelrestriction' => { 515 => 'CameraModelRestriction', 517 => 'CameraModelRestriction' }, - 'cameramotion' => { 405 => 'direction.motion' }, - 'cameramove' => { 544 => 'cameraMove' }, - 'cameraorientation' => { 7 => 0x30, 9 => 0x7d, 11 => 0x30, 13 => 0x35, 14 => 0x30, 15 => 0x30, 16 => 0x31, 17 => 0x31, 18 => 0x35, 19 => 0x27, 20 => 0x31, 21 => 0x7d, 22 => 0x38, 23 => [0x36,0x3a], 24 => 0x7d, 25 => 0x83, 26 => 0x84, 27 => 0x96, 28 => 0x35, 29 => 0x96, 350 => 0x8f, 385 => 0x1, 390 => 0x1, 395 => 0x100, 444 => [0x16,0x18], 475 => 0x28, 476 => 0x24, 477 => 0x29 }, + 'cameramodelrestriction' => { 517 => 'CameraModelRestriction', 519 => 'CameraModelRestriction' }, + 'cameramotion' => { 407 => 'direction.motion' }, + 'cameramove' => { 546 => 'cameraMove' }, + 'cameraorientation' => { 7 => 0x30, 9 => 0x7d, 11 => 0x30, 13 => 0x35, 14 => 0x30, 15 => 0x30, 16 => 0x31, 17 => 0x31, 18 => 0x35, 19 => 0x27, 20 => 0x31, 21 => 0x7d, 22 => 0x38, 23 => [0x36,0x3a], 24 => 0x7d, 25 => 0x83, 26 => 0x84, 27 => 0x96, 28 => 0x35, 29 => 0x96, 352 => 0x8f, 387 => 0x1, 392 => 0x1, 397 => 0x100, 446 => [0x16,0x18], 477 => 0x28, 478 => 0x24, 479 => 0x29 }, 'cameraowner' => { 146 => 0xc353 }, - 'cameraparameters' => { 331 => 0x2050 }, + 'cameraparameters' => { 333 => 0x2050 }, 'camerapicturestyle' => { 28 => 0xaf }, - 'camerapitch' => { 120 => 0x9, 411 => "\xa9gpt" }, - 'camerapointcloud' => { 493 => [\'Cameras','CamerasCameraPointCloud'] }, - 'camerapointcloudmetric' => { 493 => [\'Cameras','CamerasCameraPointCloudMetric'] }, - 'camerapointcloudpointcloud' => { 493 => [\'Cameras','CamerasCameraPointCloudPointCloud'] }, - 'camerapointcloudpoints' => { 493 => [\'Cameras','CamerasCameraPointCloudPoints'] }, - 'camerapose' => { 493 => [\'Cameras','CamerasCameraPose'] }, - 'cameraposepositionx' => { 493 => [\'Cameras','CamerasCameraPosePositionX'] }, - 'cameraposepositiony' => { 493 => [\'Cameras','CamerasCameraPosePositionY'] }, - 'cameraposepositionz' => { 493 => [\'Cameras','CamerasCameraPosePositionZ'] }, - 'cameraposerotationw' => { 493 => [\'Cameras','CamerasCameraPoseRotationW'] }, - 'cameraposerotationx' => { 493 => [\'Cameras','CamerasCameraPoseRotationX'] }, - 'cameraposerotationy' => { 493 => [\'Cameras','CamerasCameraPoseRotationY'] }, - 'cameraposerotationz' => { 493 => [\'Cameras','CamerasCameraPoseRotationZ'] }, - 'cameraposetimestamp' => { 493 => [\'Cameras','CamerasCameraPoseTimestamp'] }, - 'cameraprofile' => { 515 => 'CameraProfile', 517 => 'CameraProfile' }, - 'cameraprofiledigest' => { 515 => 'CameraProfileDigest', 517 => 'CameraProfileDigest' }, - 'cameraprofiles' => { 532 => 'CameraProfiles' }, - 'cameraprofilesaperturevalue' => { 532 => [\'CameraProfiles','CameraProfilesApertureValue'] }, - 'cameraprofilesauthor' => { 532 => [\'CameraProfiles','CameraProfilesAuthor'] }, - 'cameraprofilesautoscale' => { 532 => [\'CameraProfiles','CameraProfilesAutoScale'] }, - 'cameraprofilescameraprettyname' => { 532 => [\'CameraProfiles','CameraProfilesCameraPrettyName'] }, - 'cameraprofilescamerarawprofile' => { 532 => [\'CameraProfiles','CameraProfilesCameraRawProfile'] }, - 'cameraprofilesfocallength' => { 532 => [\'CameraProfiles','CameraProfilesFocalLength'] }, - 'cameraprofilesfocusdistance' => { 532 => [\'CameraProfiles','CameraProfilesFocusDistance'] }, - 'cameraprofileslens' => { 532 => [\'CameraProfiles','CameraProfilesLens'] }, - 'cameraprofileslensprettyname' => { 532 => [\'CameraProfiles','CameraProfilesLensPrettyName'] }, - 'cameraprofilesmake' => { 532 => [\'CameraProfiles','CameraProfilesMake'] }, - 'cameraprofilesmodel' => { 532 => [\'CameraProfiles','CameraProfilesModel'] }, - 'cameraprofilesperspectivemodel' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModel'] }, - 'cameraprofilesperspectivemodelimagexcenter' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageXCenter'] }, - 'cameraprofilesperspectivemodelimageycenter' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageYCenter'] }, - 'cameraprofilesperspectivemodelradialdistortparam1' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam1'] }, - 'cameraprofilesperspectivemodelradialdistortparam2' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam2'] }, - 'cameraprofilesperspectivemodelradialdistortparam3' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam3'] }, - 'cameraprofilesperspectivemodelscalefactor' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModelScaleFactor'] }, - 'cameraprofilesperspectivemodelversion' => { 532 => [\'CameraProfiles','CameraProfilesPerspectiveModelVersion'] }, - 'cameraprofilesprofilename' => { 532 => [\'CameraProfiles','CameraProfilesProfileName'] }, - 'cameraprofilessensorformatfactor' => { 532 => [\'CameraProfiles','CameraProfilesSensorFormatFactor'] }, - 'cameraprofilesuniquecameramodel' => { 532 => [\'CameraProfiles','CameraProfilesUniqueCameraModel'] }, + 'camerapitch' => { 120 => 0x9, 413 => "\xa9gpt" }, + 'camerapointcloud' => { 495 => [\'Cameras','CamerasCameraPointCloud'] }, + 'camerapointcloudmetric' => { 495 => [\'Cameras','CamerasCameraPointCloudMetric'] }, + 'camerapointcloudpointcloud' => { 495 => [\'Cameras','CamerasCameraPointCloudPointCloud'] }, + 'camerapointcloudpoints' => { 495 => [\'Cameras','CamerasCameraPointCloudPoints'] }, + 'camerapose' => { 495 => [\'Cameras','CamerasCameraPose'] }, + 'cameraposepositionx' => { 495 => [\'Cameras','CamerasCameraPosePositionX'] }, + 'cameraposepositiony' => { 495 => [\'Cameras','CamerasCameraPosePositionY'] }, + 'cameraposepositionz' => { 495 => [\'Cameras','CamerasCameraPosePositionZ'] }, + 'cameraposerotationw' => { 495 => [\'Cameras','CamerasCameraPoseRotationW'] }, + 'cameraposerotationx' => { 495 => [\'Cameras','CamerasCameraPoseRotationX'] }, + 'cameraposerotationy' => { 495 => [\'Cameras','CamerasCameraPoseRotationY'] }, + 'cameraposerotationz' => { 495 => [\'Cameras','CamerasCameraPoseRotationZ'] }, + 'cameraposetimestamp' => { 495 => [\'Cameras','CamerasCameraPoseTimestamp'] }, + 'cameraprofile' => { 517 => 'CameraProfile', 519 => 'CameraProfile' }, + 'cameraprofiledigest' => { 517 => 'CameraProfileDigest', 519 => 'CameraProfileDigest' }, + 'cameraprofiles' => { 534 => 'CameraProfiles' }, + 'cameraprofilesaperturevalue' => { 534 => [\'CameraProfiles','CameraProfilesApertureValue'] }, + 'cameraprofilesauthor' => { 534 => [\'CameraProfiles','CameraProfilesAuthor'] }, + 'cameraprofilesautoscale' => { 534 => [\'CameraProfiles','CameraProfilesAutoScale'] }, + 'cameraprofilescameraprettyname' => { 534 => [\'CameraProfiles','CameraProfilesCameraPrettyName'] }, + 'cameraprofilescamerarawprofile' => { 534 => [\'CameraProfiles','CameraProfilesCameraRawProfile'] }, + 'cameraprofilesfocallength' => { 534 => [\'CameraProfiles','CameraProfilesFocalLength'] }, + 'cameraprofilesfocusdistance' => { 534 => [\'CameraProfiles','CameraProfilesFocusDistance'] }, + 'cameraprofileslens' => { 534 => [\'CameraProfiles','CameraProfilesLens'] }, + 'cameraprofileslensprettyname' => { 534 => [\'CameraProfiles','CameraProfilesLensPrettyName'] }, + 'cameraprofilesmake' => { 534 => [\'CameraProfiles','CameraProfilesMake'] }, + 'cameraprofilesmodel' => { 534 => [\'CameraProfiles','CameraProfilesModel'] }, + 'cameraprofilesperspectivemodel' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModel'] }, + 'cameraprofilesperspectivemodelimagexcenter' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageXCenter'] }, + 'cameraprofilesperspectivemodelimageycenter' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageYCenter'] }, + 'cameraprofilesperspectivemodelradialdistortparam1' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam1'] }, + 'cameraprofilesperspectivemodelradialdistortparam2' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam2'] }, + 'cameraprofilesperspectivemodelradialdistortparam3' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam3'] }, + 'cameraprofilesperspectivemodelscalefactor' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModelScaleFactor'] }, + 'cameraprofilesperspectivemodelversion' => { 534 => [\'CameraProfiles','CameraProfilesPerspectiveModelVersion'] }, + 'cameraprofilesprofilename' => { 534 => [\'CameraProfiles','CameraProfilesProfileName'] }, + 'cameraprofilessensorformatfactor' => { 534 => [\'CameraProfiles','CameraProfilesSensorFormatFactor'] }, + 'cameraprofilesuniquecameramodel' => { 534 => [\'CameraProfiles','CameraProfilesUniqueCameraModel'] }, 'camerarawcolortone' => { 114 => 0xe1 }, 'camerarawcontrast' => { 114 => 0xe3 }, 'camerarawhighlightpoint' => { 114 => 0xe6 }, @@ -1429,23 +1431,23 @@ my %tagLookup = ( 'camerarawsaturation' => { 114 => 0xe2 }, 'camerarawshadowpoint' => { 114 => 0xe7 }, 'camerarawsharpness' => { 114 => 0xe5 }, - 'cameraroll' => { 120 => 0xb, 411 => "\xa9grl" }, - 'cameras' => { 493 => 'Cameras' }, - 'cameraserialnumber' => { 124 => 0xc62f, 183 => 'CameraSerialNumber', 505 => 'CameraSerialNumber' }, - 'camerasettingsversion' => { 326 => 0x0 }, - 'cameratemperature' => { 7 => 0x18, 9 => 0x1b, 11 => 0x18, 13 => 0x19, 14 => 0x18, 15 => 0x18, 16 => 0x19, 17 => 0x19, 18 => 0x19, 19 => 0x17, 20 => 0x19, 21 => 0x1b, 22 => 0x19, 23 => 0x19, 24 => 0x1b, 25 => 0x1b, 26 => 0x1b, 27 => 0x1b, 28 => 0x19, 29 => 0x1b, 31 => [0x87,0x91], 32 => [0x99,0x9f,0xa4,0xa8,0x105], 35 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 81 => 0xc, 143 => 0x406, 330 => 0x1306, 345 => 0x320, 352 => 0x3402, 386 => 0x47, 425 => 0x43, 479 => 0x5 }, - 'cameratemperature4' => { 391 => 0x14 }, - 'cameratemperature5' => { 391 => 0x16 }, + 'cameraroll' => { 120 => 0xb, 413 => "\xa9grl" }, + 'cameras' => { 495 => 'Cameras' }, + 'cameraserialnumber' => { 124 => 0xc62f, 183 => 'CameraSerialNumber', 507 => 'CameraSerialNumber' }, + 'camerasettingsversion' => { 328 => 0x0 }, + 'cameratemperature' => { 7 => 0x18, 9 => 0x1b, 11 => 0x18, 13 => 0x19, 14 => 0x18, 15 => 0x18, 16 => 0x19, 17 => 0x19, 18 => 0x19, 19 => 0x17, 20 => 0x19, 21 => 0x1b, 22 => 0x19, 23 => 0x19, 24 => 0x1b, 25 => 0x1b, 26 => 0x1b, 27 => 0x1b, 28 => 0x19, 29 => 0x1b, 31 => [0x87,0x91], 32 => [0x99,0x9f,0xa4,0xa8,0x105], 35 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 81 => 0xc, 143 => 0x406, 332 => 0x1306, 347 => 0x320, 354 => 0x3402, 388 => 0x47, 427 => 0x43, 481 => 0x5 }, + 'cameratemperature4' => { 393 => 0x14 }, + 'cameratemperature5' => { 393 => 0x16 }, 'cameratemperaturerangemax' => { 126 => 0x5 }, 'cameratemperaturerangemin' => { 126 => 0x6 }, - 'cameratrait' => { 493 => [\'Cameras','CamerasCameraTrait'] }, - 'cameratype' => { 1 => 0x2e, 81 => 0x1a, 331 => 0x207 }, - 'cameratype2' => { 327 => 0x100 }, - 'cameravendorinfo' => { 493 => [\'Cameras','CamerasCameraVendorInfo'] }, - 'cameravendorinfomanufacturer' => { 493 => [\'Cameras','CamerasCameraVendorInfoManufacturer'] }, - 'cameravendorinfomodel' => { 493 => [\'Cameras','CamerasCameraVendorInfoModel'] }, - 'cameravendorinfonotes' => { 493 => [\'Cameras','CamerasCameraVendorInfoNotes'] }, - 'camerayaw' => { 120 => 0xa, 411 => "\xa9gyw" }, + 'cameratrait' => { 495 => [\'Cameras','CamerasCameraTrait'] }, + 'cameratype' => { 1 => 0x2e, 81 => 0x1a, 333 => 0x207 }, + 'cameratype2' => { 329 => 0x100 }, + 'cameravendorinfo' => { 495 => [\'Cameras','CamerasCameraVendorInfo'] }, + 'cameravendorinfomanufacturer' => { 495 => [\'Cameras','CamerasCameraVendorInfoManufacturer'] }, + 'cameravendorinfomodel' => { 495 => [\'Cameras','CamerasCameraVendorInfoModel'] }, + 'cameravendorinfonotes' => { 495 => [\'Cameras','CamerasCameraVendorInfoNotes'] }, + 'camerayaw' => { 120 => 0xa, 413 => "\xa9gyw" }, 'camreverse' => { 121 => 'CamReverse' }, 'canondr4' => { 125 => 'CanonDR4' }, 'canonexposuremode' => { 36 => 0x14 }, @@ -1459,348 +1461,348 @@ my %tagLookup = ( 'canonlogversion' => { 67 => 0xb }, 'canonmodelid' => { 68 => 0x10, 102 => 0x1834 }, 'canonvrd' => { 125 => 'CanonVRD' }, - 'caption' => { 510 => 'caption' }, + 'caption' => { 512 => 'caption' }, 'caption-abstract' => { 136 => 0x78 }, - 'captionsauthornames' => { 520 => 'CaptionsAuthorNames' }, - 'captionsdatetimestamps' => { 520 => 'CaptionsDateTimeStamps' }, - 'captionwriter' => { 532 => 'CaptionWriter' }, + 'captionsauthornames' => { 522 => 'CaptionsAuthorNames' }, + 'captionsdatetimestamps' => { 522 => 'CaptionsDateTimeStamps' }, + 'captionwriter' => { 534 => 'CaptionWriter' }, 'captureframerate' => { 118 => 0x4001 }, 'captureheightnormal' => { 143 => 0x1839 }, 'capturelook' => { 143 => 0xc48 }, - 'capturemode' => { 405 => 'com.apple.photos.captureMode' }, - 'capturesoftware' => { 503 => 'CaptureSoftware' }, + 'capturemode' => { 407 => 'com.apple.photos.captureMode' }, + 'capturesoftware' => { 505 => 'CaptureSoftware' }, 'capturewidthnormal' => { 143 => 0x1838 }, 'capturewidthtest' => { 143 => 0x1842 }, 'cardshutterlock' => { 189 => 0x49 }, 'casioimagesize' => { 118 => 0x9 }, - 'catalogsets' => { 136 => 0xff, 495 => 'CatalogSets', 508 => 'CatalogSets' }, - 'categories' => { 68 => 0x23, 510 => 'categories' }, - 'category' => { 136 => 0xf, 184 => 'WM/Category', 325 => 0x30, 403 => 'catg', 532 => 'Category' }, - 'cbcrgain' => { 425 => 0xa036 }, - 'cbcrgaindefault' => { 425 => 0xa035 }, - 'cbcrmatrix' => { 425 => 0xa034 }, - 'cbcrmatrixdefault' => { 425 => 0xa033 }, - 'ccdboardversion' => { 345 => 0x331 }, - 'ccdscanmode' => { 331 => 0x1039 }, - 'ccdsensitivity' => { 288 => 0x6 }, - 'ccdversion' => { 345 => 0x330 }, - 'ccvavgluminancenits' => { 525 => 'ccv_avg_luminance_nits' }, - 'ccvmaxluminancenits' => { 525 => 'ccv_max_luminance_nits' }, - 'ccvminluminancenits' => { 525 => 'ccv_min_luminance_nits' }, - 'ccvprimariesxy' => { 525 => 'ccv_primaries_xy' }, - 'ccvwhitexy' => { 525 => 'ccv_white_xy' }, - 'cellglobalid' => { 514 => 'cgi' }, + 'catalogsets' => { 136 => 0xff, 497 => 'CatalogSets', 510 => 'CatalogSets' }, + 'categories' => { 68 => 0x23, 512 => 'categories' }, + 'category' => { 136 => 0xf, 184 => 'WM/Category', 327 => 0x30, 405 => 'catg', 534 => 'Category' }, + 'cbcrgain' => { 427 => 0xa036 }, + 'cbcrgaindefault' => { 427 => 0xa035 }, + 'cbcrmatrix' => { 427 => 0xa034 }, + 'cbcrmatrixdefault' => { 427 => 0xa033 }, + 'ccdboardversion' => { 347 => 0x331 }, + 'ccdscanmode' => { 333 => 0x1039 }, + 'ccdsensitivity' => { 289 => 0x6 }, + 'ccdversion' => { 347 => 0x330 }, + 'ccvavgluminancenits' => { 527 => 'ccv_avg_luminance_nits' }, + 'ccvmaxluminancenits' => { 527 => 'ccv_max_luminance_nits' }, + 'ccvminluminancenits' => { 527 => 'ccv_min_luminance_nits' }, + 'ccvprimariesxy' => { 527 => 'ccv_primaries_xy' }, + 'ccvwhitexy' => { 527 => 'ccv_white_xy' }, + 'cellglobalid' => { 516 => 'cgi' }, 'celllength' => { 124 => 0x109 }, - 'cellr' => { 514 => 'r' }, - 'celltowerid' => { 514 => 'cellid' }, + 'cellr' => { 516 => 'r' }, + 'celltowerid' => { 516 => 'cellid' }, 'cellwidth' => { 124 => 0x108 }, - 'centerafarea' => { 317 => '15.1' }, - 'centerfocuspoint' => { 321 => '2.2' }, + 'centerafarea' => { 318 => '15.1' }, + 'centerfocuspoint' => { 322 => '2.2' }, 'centerpixel' => { 143 => 0x40c }, - 'centerweightedareasize' => { 306 => '7.1', 307 => '8.1', 309 => '8.1', 310 => '8.1', 314 => '7.1', 315 => '5.1', 316 => '7.1', 317 => '6.3', 319 => '8.1', 320 => '8.1', 321 => '8.1', 322 => 0x1f, 323 => 0x1f, 324 => 0x1f }, - 'certificate' => { 548 => 'Certificate' }, + 'centerweightedareasize' => { 307 => '7.1', 308 => '8.1', 310 => '8.1', 311 => '8.1', 315 => '7.1', 316 => '5.1', 317 => '7.1', 318 => '6.3', 320 => '8.1', 321 => '8.1', 322 => '8.1', 323 => 0x21, 324 => 0x1f, 325 => 0x1f, 326 => 0x1f }, + 'certificate' => { 550 => 'Certificate' }, 'cfainterpolationalgorithm' => { 143 => 0xe60 }, 'cfainterpolationmetric' => { 143 => 0xe61 }, 'cfaoffsetcols' => { 143 => 0xc71 }, 'cfaoffsetrows' => { 143 => 0xc6f }, - 'cfapattern' => { 124 => 0xa302, 355 => 0x9, 521 => 'CFAPattern' }, + 'cfapattern' => { 124 => 0xa302, 357 => 0x9, 523 => 'CFAPattern' }, 'cfapattern2' => { 124 => 0x828e }, - 'cfapatterncolumns' => { 521 => [\'CFAPattern','CFAPatternColumns'] }, - 'cfapatternrows' => { 521 => [\'CFAPattern','CFAPatternRows'] }, - 'cfapatternvalues' => { 521 => [\'CFAPattern','CFAPatternValues'] }, + 'cfapatterncolumns' => { 523 => [\'CFAPattern','CFAPatternColumns'] }, + 'cfapatternrows' => { 523 => [\'CFAPattern','CFAPatternRows'] }, + 'cfapatternvalues' => { 523 => [\'CFAPattern','CFAPatternValues'] }, 'cfarepeatpatterndim' => { 124 => 0x828d }, 'cfazipperfixthreshold' => { 143 => 0xe62 }, - 'channel' => { 534 => 'channel' }, - 'channela-lang' => { 534 => [\'channel','channelA-lang'] }, - 'channelchannel' => { 534 => [\'channel','channelChannel'] }, + 'channel' => { 536 => 'channel' }, + 'channela-lang' => { 536 => [\'channel','channelA-lang'] }, + 'channelchannel' => { 536 => [\'channel','channelChannel'] }, 'channels' => { 160 => 'Channels' }, - 'channelsubchannel1' => { 534 => [\'channel','channelSubchannel1'] }, - 'channelsubchannel2' => { 534 => [\'channel','channelSubchannel2'] }, - 'channelsubchannel3' => { 534 => [\'channel','channelSubchannel3'] }, - 'channelsubchannel4' => { 534 => [\'channel','channelSubchannel4'] }, - 'chapterlist' => { 411 => 'chpl' }, + 'channelsubchannel1' => { 536 => [\'channel','channelSubchannel1'] }, + 'channelsubchannel2' => { 536 => [\'channel','channelSubchannel2'] }, + 'channelsubchannel3' => { 536 => [\'channel','channelSubchannel3'] }, + 'channelsubchannel4' => { 536 => [\'channel','channelSubchannel4'] }, + 'chapterlist' => { 413 => 'chpl' }, 'checkmark' => { 108 => 0x10101, 113 => 0x26a }, 'checkmark2' => { 114 => 0x8e }, - 'childfontfiles' => { 549 => [\'Fonts','FontsChildFontFiles'] }, - 'chmodeshootingspeed' => { 306 => '10.3', 307 => '11.2', 322 => 0x10b, 323 => 0x10b, 324 => 0x121 }, + 'childfontfiles' => { 551 => [\'Fonts','FontsChildFontFiles'] }, + 'chmodeshootingspeed' => { 307 => '10.3', 308 => '11.2', 324 => 0x10b, 325 => 0x10b, 326 => 0x121 }, 'chromablurradius' => { 124 => 0xc631 }, 'chromanoisecolorspace' => { 143 => 0xe6d }, 'chromanoiseedgemapthresh' => { 143 => 0xe6c }, 'chromanoisehighfthresh' => { 143 => 0xe6a }, 'chromanoiselowfthresh' => { 143 => 0xe6b }, - 'chromaticaberration' => { 108 => 0x20703, 114 => 0x66, 425 => 0xa051 }, - 'chromaticaberrationb' => { 515 => 'ChromaticAberrationB', 517 => 'ChromaticAberrationB' }, + 'chromaticaberration' => { 108 => 0x20703, 114 => 0x66, 427 => 0xa051 }, + 'chromaticaberrationb' => { 517 => 'ChromaticAberrationB', 519 => 'ChromaticAberrationB' }, 'chromaticaberrationblue' => { 108 => 0x20708, 114 => 0x6b }, 'chromaticaberrationcorr' => { 83 => [0x4,0x5] }, - 'chromaticaberrationcorrection' => { 124 => 0x7034, 375 => 0x1, 489 => 0x900d }, - 'chromaticaberrationcorrparams' => { 124 => 0x7035, 483 => 0x66a, 484 => [0x37c,0x384,0x39c,0x3b0,0x3b8] }, + 'chromaticaberrationcorrection' => { 124 => 0x7034, 377 => 0x1, 491 => 0x900d }, + 'chromaticaberrationcorrparams' => { 124 => 0x7035, 485 => 0x66a, 486 => [0x37c,0x384,0x39c,0x3b0,0x3b8] }, 'chromaticaberrationon' => { 108 => '0x20703.0', 114 => 0x62 }, - 'chromaticaberrationr' => { 515 => 'ChromaticAberrationR', 517 => 'ChromaticAberrationR' }, + 'chromaticaberrationr' => { 517 => 'ChromaticAberrationR', 519 => 'ChromaticAberrationR' }, 'chromaticaberrationred' => { 108 => 0x20707, 114 => 0x6a }, 'chromaticaberrationsetting' => { 84 => 0x6 }, - 'chrominancenoisereduction' => { 108 => 0x20601, 114 => 0x5e, 428 => 0x1a }, + 'chrominancenoisereduction' => { 108 => 0x20601, 114 => 0x5e, 430 => 0x1a }, 'chrominancenr_tiff_jpeg' => { 114 => 0x60 }, - 'circadatecreated' => { 529 => 'CircaDateCreated' }, - 'circgradbasedcorractive' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] }, - 'circgradbasedcorramount' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] }, - 'circgradbasedcorrblacks2012' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'] }, - 'circgradbasedcorrbrightness' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] }, - 'circgradbasedcorrclarity' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] }, - 'circgradbasedcorrclarity2012' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] }, - 'circgradbasedcorrcontrast' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] }, - 'circgradbasedcorrcontrast2012' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] }, - 'circgradbasedcorrcorrectionname' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'] }, - 'circgradbasedcorrcorrectionsyncid' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'] }, - 'circgradbasedcorrdefringe' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] }, - 'circgradbasedcorrdehaze' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'] }, - 'circgradbasedcorrexposure' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] }, - 'circgradbasedcorrexposure2012' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] }, - 'circgradbasedcorrhighlights2012' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] }, - 'circgradbasedcorrhue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'] }, - 'circgradbasedcorrluminancenoise' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] }, - 'circgradbasedcorrmaskalpha' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] }, - 'circgradbasedcorrmaskangle' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] }, - 'circgradbasedcorrmaskbottom' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] }, - 'circgradbasedcorrmaskcentervalue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] }, - 'circgradbasedcorrmaskcenterweight' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'circgradbasedcorrmaskdabs' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] }, - 'circgradbasedcorrmaskfeather' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] }, - 'circgradbasedcorrmaskflipped' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] }, - 'circgradbasedcorrmaskflow' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] }, - 'circgradbasedcorrmaskfullx' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] }, - 'circgradbasedcorrmaskfully' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] }, - 'circgradbasedcorrmaskinputdigest' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'] }, - 'circgradbasedcorrmaskleft' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] }, - 'circgradbasedcorrmaskmaskactive' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'] }, - 'circgradbasedcorrmaskmaskblendmode' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'circgradbasedcorrmaskmaskdigest' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'circgradbasedcorrmaskmaskinverted' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'circgradbasedcorrmaskmaskname' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'] }, - 'circgradbasedcorrmaskmasks' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'] }, - 'circgradbasedcorrmaskmasksalpha' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'circgradbasedcorrmaskmasksangle' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'circgradbasedcorrmaskmasksbottom' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'circgradbasedcorrmaskmaskscentervalue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'circgradbasedcorrmaskmaskscenterweight' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'circgradbasedcorrmaskmasksdabs' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'circgradbasedcorrmaskmasksfeather' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'circgradbasedcorrmaskmasksflipped' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'circgradbasedcorrmaskmasksflow' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'circgradbasedcorrmaskmasksfullx' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'circgradbasedcorrmaskmasksfully' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'circgradbasedcorrmaskmasksinputdigest' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'circgradbasedcorrmaskmasksleft' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'circgradbasedcorrmaskmasksmaskactive' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'circgradbasedcorrmaskmasksmaskblendmode' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'circgradbasedcorrmaskmasksmaskdigest' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'circgradbasedcorrmaskmasksmaskinverted' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'circgradbasedcorrmaskmasksmaskname' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'circgradbasedcorrmaskmasksmasksubtype' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'circgradbasedcorrmaskmasksmasksyncid' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'circgradbasedcorrmaskmasksmaskversion' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'circgradbasedcorrmaskmasksmidpoint' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'circgradbasedcorrmaskmasksorigin' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'circgradbasedcorrmaskmasksperimetervalue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'circgradbasedcorrmaskmasksradius' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'circgradbasedcorrmaskmasksreferencepoint' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'circgradbasedcorrmaskmasksright' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'] }, - 'circgradbasedcorrmaskmasksroundness' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'circgradbasedcorrmaskmaskssizex' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'circgradbasedcorrmaskmaskssizey' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'circgradbasedcorrmaskmaskstop' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'] }, - 'circgradbasedcorrmaskmasksubtype' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'circgradbasedcorrmaskmasksvalue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'circgradbasedcorrmaskmasksversion' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'circgradbasedcorrmaskmaskswhat' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'circgradbasedcorrmaskmaskswholeimagearea' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'circgradbasedcorrmaskmasksx' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'] }, - 'circgradbasedcorrmaskmasksy' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'] }, - 'circgradbasedcorrmaskmasksyncid' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'circgradbasedcorrmaskmaskszerox' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'circgradbasedcorrmaskmaskszeroy' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'circgradbasedcorrmaskmaskversion' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'circgradbasedcorrmaskmidpoint' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] }, - 'circgradbasedcorrmaskorigin' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'] }, - 'circgradbasedcorrmaskperimetervalue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'circgradbasedcorrmaskradius' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] }, - 'circgradbasedcorrmaskrange' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'circgradbasedcorrmaskrangeareamodels' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'circgradbasedcorrmaskrangeareamodelscolorsampleinfo' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'circgradbasedcorrmaskrangeareamodelscomponents' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'circgradbasedcorrmaskrangecoloramount' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'circgradbasedcorrmaskrangedepthfeather' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'circgradbasedcorrmaskrangedepthmax' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'circgradbasedcorrmaskrangedepthmin' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'circgradbasedcorrmaskrangeinvert' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'circgradbasedcorrmaskrangelumfeather' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'circgradbasedcorrmaskrangeluminancedepthsampleinfo' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'circgradbasedcorrmaskrangelummax' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'circgradbasedcorrmaskrangelummin' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'circgradbasedcorrmaskrangelumrange' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'circgradbasedcorrmaskrangesampletype' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'circgradbasedcorrmaskrangetype' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'circgradbasedcorrmaskrangeversion' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'circgradbasedcorrmaskreferencepoint' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'circgradbasedcorrmaskright' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] }, - 'circgradbasedcorrmaskroundness' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] }, - 'circgradbasedcorrmasks' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] }, - 'circgradbasedcorrmasksizex' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] }, - 'circgradbasedcorrmasksizey' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] }, - 'circgradbasedcorrmasktop' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] }, - 'circgradbasedcorrmaskvalue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] }, - 'circgradbasedcorrmaskversion' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] }, - 'circgradbasedcorrmaskwhat' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] }, - 'circgradbasedcorrmaskwholeimagearea' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'circgradbasedcorrmaskx' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] }, - 'circgradbasedcorrmasky' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] }, - 'circgradbasedcorrmaskzerox' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] }, - 'circgradbasedcorrmaskzeroy' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] }, - 'circgradbasedcorrmoire' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] }, - 'circgradbasedcorrrangemask' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'] }, - 'circgradbasedcorrrangemaskareamodels' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'circgradbasedcorrrangemaskareamodelscolorsampleinfo' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'circgradbasedcorrrangemaskareamodelscomponents' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'circgradbasedcorrrangemaskcoloramount' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'circgradbasedcorrrangemaskdepthfeather' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'circgradbasedcorrrangemaskdepthmax' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'circgradbasedcorrrangemaskdepthmin' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'circgradbasedcorrrangemaskinvert' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'circgradbasedcorrrangemasklumfeather' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'circgradbasedcorrrangemaskluminancedepthsampleinfo' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'circgradbasedcorrrangemasklummax' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'circgradbasedcorrrangemasklummin' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'circgradbasedcorrrangemasklumrange' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'circgradbasedcorrrangemasksampletype' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'circgradbasedcorrrangemasktype' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'] }, - 'circgradbasedcorrrangemaskversion' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'circgradbasedcorrsaturation' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'] }, - 'circgradbasedcorrshadows2012' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] }, - 'circgradbasedcorrsharpness' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] }, - 'circgradbasedcorrtemperature' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] }, - 'circgradbasedcorrtexture' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'] }, - 'circgradbasedcorrtint' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] }, - 'circgradbasedcorrtoninghue' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] }, - 'circgradbasedcorrtoningsaturation' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'] }, - 'circgradbasedcorrwhat' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] }, - 'circgradbasedcorrwhites2012' => { 515 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'], 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'] }, - 'circulargradientbasedcorrections' => { 515 => 'CircularGradientBasedCorrections', 517 => 'CircularGradientBasedCorrections' }, - 'city' => { 136 => 0x5a, 166 => 'City', 350 => 0x6d, 532 => 'City' }, - 'city2' => { 350 => 0x80 }, - 'clarity' => { 36 => 0x33, 132 => 0x100f, 258 => 0x35, 259 => 0x3d, 452 => 0x2036, 515 => 'Clarity', 517 => 'Clarity' }, - 'clarity2012' => { 515 => 'Clarity2012', 517 => 'Clarity2012' }, - 'claritycontrol' => { 386 => 0x96 }, - 'classification' => { 411 => 'clsf' }, + 'circadatecreated' => { 531 => 'CircaDateCreated' }, + 'circgradbasedcorractive' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] }, + 'circgradbasedcorramount' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] }, + 'circgradbasedcorrblacks2012' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBlacks2012'] }, + 'circgradbasedcorrbrightness' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] }, + 'circgradbasedcorrclarity' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] }, + 'circgradbasedcorrclarity2012' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] }, + 'circgradbasedcorrcontrast' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] }, + 'circgradbasedcorrcontrast2012' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] }, + 'circgradbasedcorrcorrectionname' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionName'] }, + 'circgradbasedcorrcorrectionsyncid' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionSyncID'] }, + 'circgradbasedcorrdefringe' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] }, + 'circgradbasedcorrdehaze' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDehaze'] }, + 'circgradbasedcorrexposure' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] }, + 'circgradbasedcorrexposure2012' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] }, + 'circgradbasedcorrhighlights2012' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] }, + 'circgradbasedcorrhue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHue'] }, + 'circgradbasedcorrluminancenoise' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] }, + 'circgradbasedcorrmaskalpha' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] }, + 'circgradbasedcorrmaskangle' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] }, + 'circgradbasedcorrmaskbottom' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] }, + 'circgradbasedcorrmaskcentervalue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] }, + 'circgradbasedcorrmaskcenterweight' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'circgradbasedcorrmaskdabs' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] }, + 'circgradbasedcorrmaskfeather' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] }, + 'circgradbasedcorrmaskflipped' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] }, + 'circgradbasedcorrmaskflow' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] }, + 'circgradbasedcorrmaskfullx' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] }, + 'circgradbasedcorrmaskfully' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] }, + 'circgradbasedcorrmaskinputdigest' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksInputDigest'] }, + 'circgradbasedcorrmaskleft' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] }, + 'circgradbasedcorrmaskmaskactive' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskActive'] }, + 'circgradbasedcorrmaskmaskblendmode' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'circgradbasedcorrmaskmaskdigest' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'circgradbasedcorrmaskmaskinverted' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'circgradbasedcorrmaskmaskname' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskName'] }, + 'circgradbasedcorrmaskmasks' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasks'] }, + 'circgradbasedcorrmaskmasksalpha' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'circgradbasedcorrmaskmasksangle' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'circgradbasedcorrmaskmasksbottom' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'circgradbasedcorrmaskmaskscentervalue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'circgradbasedcorrmaskmaskscenterweight' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'circgradbasedcorrmaskmasksdabs' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'circgradbasedcorrmaskmasksfeather' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'circgradbasedcorrmaskmasksflipped' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'circgradbasedcorrmaskmasksflow' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'circgradbasedcorrmaskmasksfullx' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'circgradbasedcorrmaskmasksfully' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'circgradbasedcorrmaskmasksinputdigest' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'circgradbasedcorrmaskmasksleft' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'circgradbasedcorrmaskmasksmaskactive' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'circgradbasedcorrmaskmasksmaskblendmode' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'circgradbasedcorrmaskmasksmaskdigest' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'circgradbasedcorrmaskmasksmaskinverted' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'circgradbasedcorrmaskmasksmaskname' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'circgradbasedcorrmaskmasksmasksubtype' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'circgradbasedcorrmaskmasksmasksyncid' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'circgradbasedcorrmaskmasksmaskversion' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'circgradbasedcorrmaskmasksmidpoint' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'circgradbasedcorrmaskmasksorigin' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'circgradbasedcorrmaskmasksperimetervalue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'circgradbasedcorrmaskmasksradius' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'circgradbasedcorrmaskmasksreferencepoint' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'circgradbasedcorrmaskmasksright' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRight'] }, + 'circgradbasedcorrmaskmasksroundness' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'circgradbasedcorrmaskmaskssizex' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'circgradbasedcorrmaskmaskssizey' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'circgradbasedcorrmaskmaskstop' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksTop'] }, + 'circgradbasedcorrmaskmasksubtype' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'circgradbasedcorrmaskmasksvalue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'circgradbasedcorrmaskmasksversion' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'circgradbasedcorrmaskmaskswhat' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'circgradbasedcorrmaskmaskswholeimagearea' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'circgradbasedcorrmaskmasksx' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksX'] }, + 'circgradbasedcorrmaskmasksy' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksY'] }, + 'circgradbasedcorrmaskmasksyncid' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'circgradbasedcorrmaskmaskszerox' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'circgradbasedcorrmaskmaskszeroy' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'circgradbasedcorrmaskmaskversion' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'circgradbasedcorrmaskmidpoint' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] }, + 'circgradbasedcorrmaskorigin' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksOrigin'] }, + 'circgradbasedcorrmaskperimetervalue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'circgradbasedcorrmaskradius' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] }, + 'circgradbasedcorrmaskrange' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'circgradbasedcorrmaskrangeareamodels' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'circgradbasedcorrmaskrangeareamodelscolorsampleinfo' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'circgradbasedcorrmaskrangeareamodelscomponents' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'circgradbasedcorrmaskrangecoloramount' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'circgradbasedcorrmaskrangedepthfeather' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'circgradbasedcorrmaskrangedepthmax' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'circgradbasedcorrmaskrangedepthmin' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'circgradbasedcorrmaskrangeinvert' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'circgradbasedcorrmaskrangelumfeather' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'circgradbasedcorrmaskrangeluminancedepthsampleinfo' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'circgradbasedcorrmaskrangelummax' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'circgradbasedcorrmaskrangelummin' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'circgradbasedcorrmaskrangelumrange' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'circgradbasedcorrmaskrangesampletype' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'circgradbasedcorrmaskrangetype' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'circgradbasedcorrmaskrangeversion' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'circgradbasedcorrmaskreferencepoint' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'circgradbasedcorrmaskright' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] }, + 'circgradbasedcorrmaskroundness' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] }, + 'circgradbasedcorrmasks' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] }, + 'circgradbasedcorrmasksizex' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] }, + 'circgradbasedcorrmasksizey' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] }, + 'circgradbasedcorrmasktop' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] }, + 'circgradbasedcorrmaskvalue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] }, + 'circgradbasedcorrmaskversion' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] }, + 'circgradbasedcorrmaskwhat' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] }, + 'circgradbasedcorrmaskwholeimagearea' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'circgradbasedcorrmaskx' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] }, + 'circgradbasedcorrmasky' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] }, + 'circgradbasedcorrmaskzerox' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] }, + 'circgradbasedcorrmaskzeroy' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] }, + 'circgradbasedcorrmoire' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] }, + 'circgradbasedcorrrangemask' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMask'] }, + 'circgradbasedcorrrangemaskareamodels' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'circgradbasedcorrrangemaskareamodelscolorsampleinfo' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'circgradbasedcorrrangemaskareamodelscomponents' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'circgradbasedcorrrangemaskcoloramount' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'circgradbasedcorrrangemaskdepthfeather' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'circgradbasedcorrrangemaskdepthmax' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'circgradbasedcorrrangemaskdepthmin' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'circgradbasedcorrrangemaskinvert' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'circgradbasedcorrrangemasklumfeather' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'circgradbasedcorrrangemaskluminancedepthsampleinfo' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'circgradbasedcorrrangemasklummax' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'circgradbasedcorrrangemasklummin' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'circgradbasedcorrrangemasklumrange' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'circgradbasedcorrrangemasksampletype' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'circgradbasedcorrrangemasktype' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskType'] }, + 'circgradbasedcorrrangemaskversion' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'circgradbasedcorrsaturation' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation'] }, + 'circgradbasedcorrshadows2012' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] }, + 'circgradbasedcorrsharpness' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] }, + 'circgradbasedcorrtemperature' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] }, + 'circgradbasedcorrtexture' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTexture'] }, + 'circgradbasedcorrtint' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] }, + 'circgradbasedcorrtoninghue' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] }, + 'circgradbasedcorrtoningsaturation' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningSaturation'] }, + 'circgradbasedcorrwhat' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] }, + 'circgradbasedcorrwhites2012' => { 517 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'], 519 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalWhites2012'] }, + 'circulargradientbasedcorrections' => { 517 => 'CircularGradientBasedCorrections', 519 => 'CircularGradientBasedCorrections' }, + 'city' => { 136 => 0x5a, 166 => 'City', 352 => 0x6d, 534 => 'City' }, + 'city2' => { 352 => 0x80 }, + 'clarity' => { 36 => 0x33, 132 => 0x100f, 259 => 0x35, 260 => 0x3d, 454 => 0x2036, 517 => 'Clarity', 519 => 'Clarity' }, + 'clarity2012' => { 517 => 'Clarity2012', 519 => 'Clarity2012' }, + 'claritycontrol' => { 388 => 0x96 }, + 'classification' => { 413 => 'clsf' }, 'classifystate' => { 136 => 0xe1 }, - 'clearretouch' => { 350 => 0x7c }, - 'clearretouchvalue' => { 350 => 0xa3 }, - 'client' => { 544 => 'client' }, - 'clientname' => { 523 => 'ClientName' }, - 'clipboardaspectratio' => { 515 => 'ClipboardAspectRatio', 517 => 'ClipboardAspectRatio' }, - 'clipboardorientation' => { 515 => 'ClipboardOrientation', 517 => 'ClipboardOrientation' }, - 'clipfilename' => { 411 => 'clfn' }, - 'clipid' => { 411 => 'clid' }, - 'clmodeshootingspeed' => { 306 => '10.2', 307 => '11.3', 309 => '11.2', 310 => '11.2', 315 => '11.2', 316 => '10.2', 319 => '11.2', 320 => '11.2', 321 => '11.1', 322 => 0x3b, 323 => 0x3b, 324 => 0x3b }, - 'cluster' => { 515 => 'Cluster', 517 => 'Cluster' }, - 'cmcontrast' => { 334 => 0x2022 }, - 'cmddialsreverserotation' => { 322 => 0xba, 323 => 0xba, 324 => 0xba }, - 'cmexposurecompensation' => { 334 => 0x2000 }, - 'cmhue' => { 334 => 0x2021 }, - 'cmsaturation' => { 334 => 0x2020 }, - 'cmsharpness' => { 334 => 0x2023 }, - 'cmwhitebalance' => { 334 => 0x2001 }, - 'cmwhitebalancecomp' => { 334 => 0x2002 }, - 'cmwhitebalancegraypoint' => { 334 => 0x2010 }, + 'clearretouch' => { 352 => 0x7c }, + 'clearretouchvalue' => { 352 => 0xa3 }, + 'client' => { 546 => 'client' }, + 'clientname' => { 525 => 'ClientName' }, + 'clipboardaspectratio' => { 517 => 'ClipboardAspectRatio', 519 => 'ClipboardAspectRatio' }, + 'clipboardorientation' => { 517 => 'ClipboardOrientation', 519 => 'ClipboardOrientation' }, + 'clipfilename' => { 413 => 'clfn' }, + 'clipid' => { 413 => 'clid' }, + 'clmodeshootingspeed' => { 307 => '10.2', 308 => '11.3', 310 => '11.2', 311 => '11.2', 316 => '11.2', 317 => '10.2', 320 => '11.2', 321 => '11.2', 322 => '11.1', 323 => 0x3f, 324 => 0x3b, 325 => 0x3b, 326 => 0x3b }, + 'cluster' => { 517 => 'Cluster', 519 => 'Cluster' }, + 'cmcontrast' => { 336 => 0x2022 }, + 'cmddialsreverserotation' => { 323 => 0xbe, 324 => 0xba, 325 => 0xba, 326 => 0xba }, + 'cmexposurecompensation' => { 336 => 0x2000 }, + 'cmhue' => { 336 => 0x2021 }, + 'cmsaturation' => { 336 => 0x2020 }, + 'cmsharpness' => { 336 => 0x2023 }, + 'cmwhitebalance' => { 336 => 0x2001 }, + 'cmwhitebalancecomp' => { 336 => 0x2002 }, + 'cmwhitebalancegraypoint' => { 336 => 0x2010 }, 'codec' => { 174 => 'Codec' }, 'codedcharacterset' => { 137 => 0x5a }, - 'codeversion' => { 411 => 'cver' }, - 'collection' => { 339 => 'Collection' }, - 'collectionname' => { 175 => [\'Collections','CollectionsCollectionName'], 411 => 'coll' }, - 'collections' => { 175 => 'Collections', 510 => 'collections' }, + 'codeversion' => { 413 => 'cver' }, + 'collection' => { 341 => 'Collection' }, + 'collectionname' => { 175 => [\'Collections','CollectionsCollectionName'], 413 => 'coll' }, + 'collections' => { 175 => 'Collections', 512 => 'collections' }, 'collectionuri' => { 175 => [\'Collections','CollectionsCollectionURI'] }, - 'color' => { 405 => 'player.movie.visual.color', 533 => 'color' }, - 'coloraberrationcontrol' => { 299 => 0xc89224b }, - 'coloradjustment' => { 428 => 0x14 }, - 'coloradjustmentmode' => { 427 => 0x210 }, - 'coloranta' => { 549 => [\'Colorants','ColorantsA'] }, - 'colorantb' => { 549 => [\'Colorants','ColorantsB'] }, - 'colorantblack' => { 549 => [\'Colorants','ColorantsBlack'] }, - 'colorantblue' => { 549 => [\'Colorants','ColorantsBlue'] }, - 'colorantcyan' => { 549 => [\'Colorants','ColorantsCyan'] }, - 'colorantgray' => { 549 => [\'Colorants','ColorantsGray'] }, - 'colorantgreen' => { 549 => [\'Colorants','ColorantsGreen'] }, - 'colorantl' => { 549 => [\'Colorants','ColorantsL'] }, - 'colorantmagenta' => { 549 => [\'Colorants','ColorantsMagenta'] }, - 'colorantmode' => { 549 => [\'Colorants','ColorantsMode'] }, - 'colorantred' => { 549 => [\'Colorants','ColorantsRed'] }, - 'colorants' => { 549 => 'Colorants' }, - 'colorantswatchname' => { 549 => [\'Colorants','ColorantsSwatchName'] }, - 'coloranttint' => { 549 => [\'Colorants','ColorantsTint'] }, - 'coloranttype' => { 549 => [\'Colorants','ColorantsType'] }, - 'colorantyellow' => { 549 => [\'Colorants','ColorantsYellow'] }, + 'color' => { 407 => 'player.movie.visual.color', 535 => 'color' }, + 'coloraberrationcontrol' => { 300 => 0xc89224b }, + 'coloradjustment' => { 430 => 0x14 }, + 'coloradjustmentmode' => { 429 => 0x210 }, + 'coloranta' => { 551 => [\'Colorants','ColorantsA'] }, + 'colorantb' => { 551 => [\'Colorants','ColorantsB'] }, + 'colorantblack' => { 551 => [\'Colorants','ColorantsBlack'] }, + 'colorantblue' => { 551 => [\'Colorants','ColorantsBlue'] }, + 'colorantcyan' => { 551 => [\'Colorants','ColorantsCyan'] }, + 'colorantgray' => { 551 => [\'Colorants','ColorantsGray'] }, + 'colorantgreen' => { 551 => [\'Colorants','ColorantsGreen'] }, + 'colorantl' => { 551 => [\'Colorants','ColorantsL'] }, + 'colorantmagenta' => { 551 => [\'Colorants','ColorantsMagenta'] }, + 'colorantmode' => { 551 => [\'Colorants','ColorantsMode'] }, + 'colorantred' => { 551 => [\'Colorants','ColorantsRed'] }, + 'colorants' => { 551 => 'Colorants' }, + 'colorantswatchname' => { 551 => [\'Colorants','ColorantsSwatchName'] }, + 'coloranttint' => { 551 => [\'Colorants','ColorantsTint'] }, + 'coloranttype' => { 551 => [\'Colorants','ColorantsType'] }, + 'colorantyellow' => { 551 => [\'Colorants','ColorantsYellow'] }, 'colorbalance' => { 161 => 'ColorBalance' }, - 'colorbalanceadj' => { 299 => 0x76a43202 }, + 'colorbalanceadj' => { 300 => 0x76a43202 }, 'colorbalanceblue' => { 186 => 0x1e }, 'colorbalancegreen' => { 186 => 0x1d }, 'colorbalancered' => { 186 => 0x1c }, 'colorbalanceversion' => { 211 => 0x4, 212 => 0x4, 213 => 0x0, 214 => 0x0 }, 'colorblur' => { 114 => 0x65 }, 'colorbluron' => { 108 => 0x20704 }, - 'colorbooster' => { 299 => 0x5f0e7d23 }, - 'colorboostlevel' => { 293 => 0x1 }, - 'colorboosttype' => { 293 => 0x0 }, + 'colorbooster' => { 300 => 0x5f0e7d23 }, + 'colorboostlevel' => { 294 => 0x1 }, + 'colorboosttype' => { 294 => 0x0 }, 'colorchromeeffect' => { 132 => 0x1048 }, 'colorchromefxblue' => { 132 => 0x104e }, - 'colorclass' => { 397 => 0xde, 398 => 'ColorClass' }, - 'colorcompensationfilter' => { 189 => [0x3a,0x5f], 191 => 0x111, 452 => 0xb022 }, - 'colorcompensationfiltercustom' => { 438 => 0xd, 439 => 0xc }, - 'colorcompensationfilterset' => { 438 => 0x8, 439 => 0x7, 440 => 0x18, 457 => 0xf }, - 'colorcontrol' => { 331 => 0x102b }, - 'colorcorrection' => { 489 => 0x8015 }, + 'colorclass' => { 399 => 0xde, 400 => 'ColorClass' }, + 'colorcompensationfilter' => { 189 => [0x3a,0x5f], 191 => 0x111, 454 => 0xb022 }, + 'colorcompensationfiltercustom' => { 440 => 0xd, 441 => 0xc }, + 'colorcompensationfilterset' => { 440 => 0x8, 441 => 0x7, 442 => 0x18, 459 => 0xf }, + 'colorcontrol' => { 333 => 0x102b }, + 'colorcorrection' => { 491 => 0x8015 }, 'colorcorrectionmatrix' => { 1 => 0x3e }, - 'colorcreatoreffect' => { 326 => 0x532 }, + 'colorcreatoreffect' => { 328 => 0x532 }, 'colordataversion' => { 43 => 0x0, 44 => 0x0, 45 => 0x0, 47 => 0x0, 48 => 0x0, 49 => 0x0, 50 => 0x0, 51 => 0x0, 52 => 0x0, 53 => 0x0 }, - 'coloreffect' => { 350 => 0x28 }, - 'colorfilter' => { 117 => 0x17, 118 => 0x3017, 186 => 0x29, 194 => [0x38,0x4d,0x4f], 393 => 0x17 }, - 'colorgain' => { 265 => 0x51 }, - 'colorgradeblending' => { 515 => 'ColorGradeBlending', 517 => 'ColorGradeBlending' }, - 'colorgradeglobalhue' => { 515 => 'ColorGradeGlobalHue', 517 => 'ColorGradeGlobalHue' }, - 'colorgradegloballum' => { 515 => 'ColorGradeGlobalLum', 517 => 'ColorGradeGlobalLum' }, - 'colorgradeglobalsat' => { 515 => 'ColorGradeGlobalSat', 517 => 'ColorGradeGlobalSat' }, - 'colorgradehighlightlum' => { 515 => 'ColorGradeHighlightLum', 517 => 'ColorGradeHighlightLum' }, - 'colorgrademidtonehue' => { 515 => 'ColorGradeMidtoneHue', 517 => 'ColorGradeMidtoneHue' }, - 'colorgrademidtonelum' => { 515 => 'ColorGradeMidtoneLum', 517 => 'ColorGradeMidtoneLum' }, - 'colorgrademidtonesat' => { 515 => 'ColorGradeMidtoneSat', 517 => 'ColorGradeMidtoneSat' }, - 'colorgradeshadowlum' => { 515 => 'ColorGradeShadowLum', 517 => 'ColorGradeShadowLum' }, + 'coloreffect' => { 352 => 0x28 }, + 'colorfilter' => { 117 => 0x17, 118 => 0x3017, 186 => 0x29, 194 => [0x38,0x4d,0x4f], 395 => 0x17 }, + 'colorgain' => { 266 => 0x51 }, + 'colorgradeblending' => { 517 => 'ColorGradeBlending', 519 => 'ColorGradeBlending' }, + 'colorgradeglobalhue' => { 517 => 'ColorGradeGlobalHue', 519 => 'ColorGradeGlobalHue' }, + 'colorgradegloballum' => { 517 => 'ColorGradeGlobalLum', 519 => 'ColorGradeGlobalLum' }, + 'colorgradeglobalsat' => { 517 => 'ColorGradeGlobalSat', 519 => 'ColorGradeGlobalSat' }, + 'colorgradehighlightlum' => { 517 => 'ColorGradeHighlightLum', 519 => 'ColorGradeHighlightLum' }, + 'colorgrademidtonehue' => { 517 => 'ColorGradeMidtoneHue', 519 => 'ColorGradeMidtoneHue' }, + 'colorgrademidtonelum' => { 517 => 'ColorGradeMidtoneLum', 519 => 'ColorGradeMidtoneLum' }, + 'colorgrademidtonesat' => { 517 => 'ColorGradeMidtoneSat', 519 => 'ColorGradeMidtoneSat' }, + 'colorgradeshadowlum' => { 517 => 'ColorGradeShadowLum', 519 => 'ColorGradeShadowLum' }, 'colorhue' => { 108 => 0x20900, 241 => 0x8d }, 'colorimetricreference' => { 124 => 0xc6bf }, - 'colorlabel' => { 520 => 'ColorLabel' }, - 'colormatrix' => { 67 => 0xa, 330 => 0x200, 331 => 0x1011, 425 => 0xa030 }, - 'colormatrix1' => { 124 => 0xc621, 395 => 0x106 }, - 'colormatrix2' => { 124 => 0xc622, 334 => 0x200, 395 => 0x226 }, + 'colorlabel' => { 522 => 'ColorLabel' }, + 'colormatrix' => { 67 => 0xa, 332 => 0x200, 333 => 0x1011, 427 => 0xa030 }, + 'colormatrix1' => { 124 => 0xc621, 397 => 0x106 }, + 'colormatrix2' => { 124 => 0xc622, 336 => 0x200, 397 => 0x226 }, 'colormatrix3' => { 124 => 0xcd33 }, - 'colormatrixa' => { 386 => 0x203 }, - 'colormatrixa2' => { 386 => 0x21c }, - 'colormatrixadobergb' => { 425 => 0xa032 }, - 'colormatrixb' => { 386 => 0x204 }, - 'colormatrixb2' => { 386 => 0x21d }, - 'colormatrixnumber' => { 331 => 0x1019 }, - 'colormatrixsrgb' => { 425 => 0xa031 }, - 'colormode' => { 118 => 0x3015, 132 => 0x1210, 145 => 0x66, 186 => 0x28, 189 => 0x16, 191 => 0x101, 192 => 0x36, 194 => 0x7, 241 => 0x3, 288 => 0x4, 350 => 0x32, 428 => 0x2c, 452 => 0xb029, 532 => 'ColorMode' }, - 'colormoirereduction' => { 108 => 0x20670, 300 => 0x15 }, - 'colormoirereductionmode' => { 300 => 0x5 }, + 'colormatrixa' => { 388 => 0x203 }, + 'colormatrixa2' => { 388 => 0x21c }, + 'colormatrixadobergb' => { 427 => 0xa032 }, + 'colormatrixb' => { 388 => 0x204 }, + 'colormatrixb2' => { 388 => 0x21d }, + 'colormatrixnumber' => { 333 => 0x1019 }, + 'colormatrixsrgb' => { 427 => 0xa031 }, + 'colormode' => { 118 => 0x3015, 132 => 0x1210, 145 => 0x66, 186 => 0x28, 189 => 0x16, 191 => 0x101, 192 => 0x36, 194 => 0x7, 241 => 0x3, 289 => 0x4, 352 => 0x32, 430 => 0x2c, 454 => 0xb029, 534 => 'ColorMode' }, + 'colormoirereduction' => { 108 => 0x20670, 301 => 0x15 }, + 'colormoirereductionmode' => { 301 => 0x5 }, 'colormoirereductionon' => { 108 => '0x20670.0' }, - 'colornoisereduction' => { 489 => 0x8029, 515 => 'ColorNoiseReduction', 517 => 'ColorNoiseReduction' }, - 'colornoisereductiondetail' => { 515 => 'ColorNoiseReductionDetail', 517 => 'ColorNoiseReductionDetail' }, - 'colornoisereductionintensity' => { 300 => 0x18 }, - 'colornoisereductionsharpness' => { 300 => 0x1c }, - 'colornoisereductionsmoothness' => { 515 => 'ColorNoiseReductionSmoothness', 517 => 'ColorNoiseReductionSmoothness' }, + 'colornoisereduction' => { 491 => 0x8029, 517 => 'ColorNoiseReduction', 519 => 'ColorNoiseReduction' }, + 'colornoisereductiondetail' => { 517 => 'ColorNoiseReductionDetail', 519 => 'ColorNoiseReductionDetail' }, + 'colornoisereductionintensity' => { 301 => 0x18 }, + 'colornoisereductionsharpness' => { 301 => 0x1c }, + 'colornoisereductionsmoothness' => { 517 => 'ColorNoiseReductionSmoothness', 519 => 'ColorNoiseReductionSmoothness' }, 'colorplanes' => { 128 => 0x2 }, 'colorprofile' => { 186 => 0x33 }, - 'colorprofilesettings' => { 326 => 0x539 }, + 'colorprofilesettings' => { 328 => 0x539 }, 'colorrepresentation' => { 138 => 0x3c }, 'colorsaturationadj' => { 108 => 0x20305 }, 'colorsequence' => { 138 => 0x41 }, - 'colorspace' => { 54 => 0x3, 68 => 0xb4, 102 => 0x10b4, 124 => 0xa001, 140 => 0x3, 167 => 'ColorSpace', 187 => 0x2f, 188 => 0x25, 189 => 0x17, 241 => 0x1e, 326 => 0x507, 386 => 0x37, 425 => 0xa011, 428 => 0xb, 438 => 0x1b, 439 => 0x83, 440 => 0xe, 457 => 0x6, 521 => 'ColorSpace' }, + 'colorspace' => { 54 => 0x3, 68 => 0xb4, 102 => 0x10b4, 124 => 0xa001, 140 => 0x3, 167 => 'ColorSpace', 187 => 0x2f, 188 => 0x25, 189 => 0x17, 241 => 0x1e, 328 => 0x507, 388 => 0x37, 427 => 0xa011, 430 => 0xb, 440 => 0x1b, 441 => 0x83, 442 => 0xe, 459 => 0x6, 523 => 'ColorSpace' }, 'colorspace2' => { 67 => 0x9 }, 'colorspecapproximation' => { 140 => 0x2 }, 'colorspecdata' => { 140 => 0x3 }, @@ -1808,32 +1810,32 @@ my %tagLookup = ( 'colorspecprecedence' => { 140 => 0x1 }, 'colortempasshot' => { 40 => 0x4, 41 => 0x7, 42 => 0x1d, 43 => 0x59, 44 => 0x6d, 45 => 0x6d, 46 => 0x26, 47 => 0x43, 50 => 0x43, 51 => 0x43, 52 => 0x43, 53 => 0x4b }, 'colortempauto' => { 40 => 0x9, 41 => 0xf, 42 => 0x22, 43 => 0x5e, 44 => 0x72, 46 => 0x1c, 47 => 0x48, 50 => 0x48, 51 => 0x48, 52 => 0x48, 53 => 0x50 }, - 'colortempcloudy' => { 40 => 0x22, 41 => 0x37, 42 => 0x31, 43 => 0xa4, 44 => 0xdb, 45 => 0x7c, 46 => 0x35, 47 => 0x5c, 50 => 0x75, 51 => 0x8e, 52 => 0x93, 53 => 0x96, 386 => 0x55 }, + 'colortempcloudy' => { 40 => 0x22, 41 => 0x37, 42 => 0x31, 43 => 0xa4, 44 => 0xdb, 45 => 0x7c, 46 => 0x35, 47 => 0x5c, 50 => 0x75, 51 => 0x8e, 52 => 0x93, 53 => 0x96, 388 => 0x55 }, 'colortempcustom' => { 47 => 0x84 }, 'colortempcustom1' => { 42 => 0x45 }, 'colortempcustom2' => { 42 => 0x4a }, - 'colortempdaylight' => { 40 => 0x18, 41 => 0x27, 42 => 0x27, 43 => 0x9a, 44 => 0xd1, 45 => 0x72, 46 => 0x2b, 47 => 0x52, 50 => 0x6b, 51 => 0x84, 52 => 0x89, 53 => 0x8c, 386 => 0x53 }, - 'colortemperature' => { 1 => 0x2d, 7 => 0x73, 8 => [0x48,0x4e], 9 => 0xc0, 10 => 0x37, 11 => 0x62, 12 => 0x37, 13 => 0x7c, 14 => 0x73, 15 => 0x73, 16 => 0x77, 17 => 0x73, 18 => 0x7c, 19 => 0x58, 20 => 0x73, 21 => 0xc0, 22 => 0x7f, 23 => 0x7d, 24 => 0xc0, 25 => 0xc6, 26 => 0xc7, 27 => 0x135, 28 => 0x7b, 29 => 0x13a, 68 => 0xae, 78 => 0x9, 102 => 0x10ae, 132 => 0x1005, 143 => 0x846, 161 => 'ColorTemperature', 187 => [0x6e,0x49], 188 => 0x3f, 189 => [0x39,0x5e], 191 => 0x10b, 194 => [0x3c,0x4c,0x4e], 345 => 0x321, 386 => 0x50, 418 => 0x1308, 452 => 0xb021, 515 => 'Temperature', 517 => 'Temperature' }, - 'colortemperatureadj' => { 489 => 0x8013 }, + 'colortempdaylight' => { 40 => 0x18, 41 => 0x27, 42 => 0x27, 43 => 0x9a, 44 => 0xd1, 45 => 0x72, 46 => 0x2b, 47 => 0x52, 50 => 0x6b, 51 => 0x84, 52 => 0x89, 53 => 0x8c, 388 => 0x53 }, + 'colortemperature' => { 1 => 0x2d, 7 => 0x73, 8 => [0x48,0x4e], 9 => 0xc0, 10 => 0x37, 11 => 0x62, 12 => 0x37, 13 => 0x7c, 14 => 0x73, 15 => 0x73, 16 => 0x77, 17 => 0x73, 18 => 0x7c, 19 => 0x58, 20 => 0x73, 21 => 0xc0, 22 => 0x7f, 23 => 0x7d, 24 => 0xc0, 25 => 0xc6, 26 => 0xc7, 27 => 0x135, 28 => 0x7b, 29 => 0x13a, 68 => 0xae, 78 => 0x9, 102 => 0x10ae, 132 => 0x1005, 143 => 0x846, 161 => 'ColorTemperature', 187 => [0x6e,0x49], 188 => 0x3f, 189 => [0x39,0x5e], 191 => 0x10b, 194 => [0x3c,0x4c,0x4e], 347 => 0x321, 388 => 0x50, 420 => 0x1308, 454 => 0xb021, 517 => 'Temperature', 519 => 'Temperature' }, + 'colortemperatureadj' => { 491 => 0x8013 }, 'colortemperatureauto' => { 241 => 0x4f }, - 'colortemperaturebg' => { 331 => 0x1013 }, - 'colortemperaturecustom' => { 438 => 0xc, 439 => 0xb }, - 'colortemperaturerg' => { 331 => 0x1014 }, - 'colortemperatureset' => { 438 => 0x7, 439 => 0x6 }, - 'colortemperaturesetting' => { 189 => 0x25, 440 => 0x17, 457 => 0xe }, - 'colortempflash' => { 40 => 0x36, 41 => 0x57, 42 => 0x40, 43 => 0xb8, 44 => 0xef, 45 => 0x8b, 46 => 0x49, 47 => 0x70, 50 => 0x89, 51 => 0xa2, 52 => 0xa7, 53 => 0xaa, 386 => 0x5a }, + 'colortemperaturebg' => { 333 => 0x1013 }, + 'colortemperaturecustom' => { 440 => 0xc, 441 => 0xb }, + 'colortemperaturerg' => { 333 => 0x1014 }, + 'colortemperatureset' => { 440 => 0x7, 441 => 0x6 }, + 'colortemperaturesetting' => { 189 => 0x25, 442 => 0x17, 459 => 0xe }, + 'colortempflash' => { 40 => 0x36, 41 => 0x57, 42 => 0x40, 43 => 0xb8, 44 => 0xef, 45 => 0x8b, 46 => 0x49, 47 => 0x70, 50 => 0x89, 51 => 0xa2, 52 => 0xa7, 53 => 0xaa, 388 => 0x5a }, 'colortempflashdata' => { 47 => 0x24a }, 'colortempfluorescent' => { 40 => 0x2c, 41 => 0x47, 42 => 0x3b, 43 => 0xae, 44 => 0xe5, 45 => 0x86, 46 => 0x3f, 47 => 0x66, 50 => 0x7f, 51 => 0x98, 52 => 0x9d, 53 => 0xa0 }, - 'colortempfluorescentd' => { 386 => 0x57 }, - 'colortempfluorescentn' => { 386 => 0x58 }, - 'colortempfluorescentw' => { 386 => 0x59 }, - 'colortempkelvin' => { 40 => 0x31, 41 => 0x4f, 43 => 0xb3, 44 => 0xea, 46 => 0x44, 47 => 0x6b, 50 => 0x84, 51 => 0x9d, 52 => 0xa2, 53 => 0xa5, 350 => 0x44, 418 => 0x1307 }, + 'colortempfluorescentd' => { 388 => 0x57 }, + 'colortempfluorescentn' => { 388 => 0x58 }, + 'colortempfluorescentw' => { 388 => 0x59 }, + 'colortempkelvin' => { 40 => 0x31, 41 => 0x4f, 43 => 0xb3, 44 => 0xea, 46 => 0x44, 47 => 0x6b, 50 => 0x84, 51 => 0x9d, 52 => 0xa2, 53 => 0xa5, 352 => 0x44, 420 => 0x1307 }, 'colortempmeasured' => { 40 => 0xe, 41 => 0x17, 43 => 0x63, 44 => 0x77, 47 => 0x4d, 50 => 0x4d, 51 => 0x4d, 52 => 0x4d, 53 => 0x55 }, 'colortemppc1' => { 46 => 0x94, 47 => 0x75 }, 'colortemppc2' => { 46 => 0x99, 47 => 0x7a }, 'colortemppc3' => { 46 => 0x9e, 47 => 0x7f }, - 'colortempshade' => { 40 => 0x1d, 41 => 0x2f, 42 => 0x2c, 43 => 0x9f, 44 => 0xd6, 45 => 0x77, 46 => 0x30, 47 => 0x57, 50 => 0x70, 51 => 0x89, 52 => 0x8e, 53 => 0x91, 386 => 0x54 }, - 'colortemptungsten' => { 40 => 0x27, 41 => 0x3f, 42 => 0x36, 43 => 0xa9, 44 => 0xe0, 45 => 0x81, 46 => 0x3a, 47 => 0x61, 50 => 0x7a, 51 => 0x93, 52 => 0x98, 53 => 0x9b, 386 => 0x56 }, + 'colortempshade' => { 40 => 0x1d, 41 => 0x2f, 42 => 0x2c, 43 => 0x9f, 44 => 0xd6, 45 => 0x77, 46 => 0x30, 47 => 0x57, 50 => 0x70, 51 => 0x89, 52 => 0x8e, 53 => 0x91, 388 => 0x54 }, + 'colortemptungsten' => { 40 => 0x27, 41 => 0x3f, 42 => 0x36, 43 => 0xa9, 44 => 0xe0, 45 => 0x81, 46 => 0x3a, 47 => 0x61, 50 => 0x7a, 51 => 0x93, 52 => 0x98, 53 => 0x9b, 388 => 0x56 }, 'colortempunknown' => { 40 => 0x13, 41 => 0x1f, 43 => 0x68, 44 => 0x7c, 46 => 0x21, 50 => 0x52, 51 => 0x52, 52 => 0x52, 53 => 0x5a }, 'colortempunknown10' => { 40 => 0x63, 41 => 0x9f, 43 => 0x95, 44 => 0xa9, 45 => 0xb8, 46 => 0x76, 50 => 0xa2, 51 => 0x7f, 52 => 0x7f, 53 => 0x87 }, 'colortempunknown11' => { 40 => 0x68, 41 => 0xa7, 43 => 0xbd, 44 => [0xae,0xb3], 45 => 0xbd, 46 => 0x7b, 50 => 0xa7, 51 => 0xa7, 52 => 0x84, 53 => 0xaf }, @@ -1867,7 +1869,7 @@ my %tagLookup = ( 'colortempunknown7' => { 40 => 0x54, 41 => 0x87, 43 => 0x86, 44 => 0x9a, 45 => 0xa9, 46 => 0x67, 50 => 0x93, 51 => 0x70, 52 => 0x70, 53 => 0x78 }, 'colortempunknown8' => { 40 => 0x59, 41 => 0x8f, 43 => 0x8b, 44 => 0x9f, 45 => 0xae, 46 => 0x6c, 50 => 0x98, 51 => 0x75, 52 => 0x75, 53 => 0x7d }, 'colortempunknown9' => { 40 => 0x5e, 41 => 0x97, 43 => 0x90, 44 => 0xa4, 45 => 0xb3, 46 => 0x71, 50 => 0x9d, 51 => 0x7a, 52 => 0x7a, 53 => 0x82 }, - 'colortint' => { 349 => 0x35c }, + 'colortint' => { 351 => 0x35c }, 'colortone' => { 10 => 0x6f, 12 => 0x77, 36 => 0x2a, 54 => 0x2, 67 => 0x8 }, 'colortoneadj' => { 108 => 0x20304, 113 => 0x11e }, 'colortoneauto' => { 75 => 0x9c }, @@ -1882,66 +1884,66 @@ my %tagLookup = ( 'colortoneuserdef3' => { 19 => 0x10b, 74 => 0xcc, 75 => 0xe4 }, 'columninterleavefactor' => { 124 => 0xcd43 }, 'comlenblksize' => { 143 => 0xfde8 }, - 'commanddialframeadvancezoom' => { 250 => 0x804 }, - 'commanddialplaybackmode' => { 322 => 0x1cb, 323 => 0x1cb, 324 => 0x1e3 }, - 'commanddials' => { 317 => '5.1' }, - 'commanddialsaperturesetting' => { 306 => '17.3', 307 => '18.3', 309 => '18.3', 310 => '18.3', 315 => '33.3', 316 => '17.3', 319 => '18.3', 320 => '18.3' }, - 'commanddialschangemainsub' => { 306 => '17.2', 307 => '18.1', 309 => '18.1', 310 => '18.1', 315 => '33.2', 316 => '17.2', 319 => '18.1', 320 => '18.1' }, - 'commanddialsmenuandplayback' => { 306 => '17.4', 307 => '18.2', 309 => '18.2', 310 => '18.2', 315 => '33.4', 316 => '17.4', 319 => '18.2', 320 => '18.2' }, - 'commanddialsreverserotation' => { 306 => '17.1', 307 => '6.4', 309 => '6.2', 310 => '6.2', 311 => '16.2', 312 => '17.2', 315 => '33.1', 316 => '17.1', 319 => '6.2', 320 => '6.2', 321 => '18.1' }, - 'commanddialvideoplaybackmode' => { 322 => 0x1cd, 324 => 0x1e5 }, - 'commanderchannel' => { 317 => '10.2', 318 => '25.2' }, - 'commandergroupa_ttl-aacomp' => { 317 => '13.1', 318 => '31.1' }, - 'commandergroupa_ttlcomp' => { 321 => '32.1' }, - 'commandergroupamanualoutput' => { 317 => '13.2', 318 => '28.2' }, - 'commandergroupamode' => { 317 => '11.2', 318 => '28.1' }, - 'commandergroupb_ttl-aacomp' => { 317 => '14.1', 318 => '32.1' }, - 'commandergroupb_ttlcomp' => { 321 => '33.1' }, - 'commandergroupbmanualoutput' => { 317 => '14.2', 318 => '29.2' }, - 'commandergroupbmode' => { 317 => '11.3', 318 => '29.1' }, - 'commanderinternalflash' => { 317 => '11.1', 318 => '27.1' }, - 'commanderinternalmanualoutput' => { 317 => '12.2', 318 => '27.2' }, - 'commanderinternalttlchannel' => { 315 => '18.2' }, - 'commanderinternalttlcomp' => { 317 => '12.1', 318 => '30.2', 321 => '31.2' }, - 'commanderinternalttlcompbuiltin' => { 315 => '20.1', 316 => '26.1' }, - 'commanderinternalttlcompgroupa' => { 315 => '21.1', 316 => '27.1' }, - 'commanderinternalttlcompgroupb' => { 315 => '22.1', 316 => '28.1' }, - 'comment' => { 0 => 0x2, 125 => 'Comment', 162 => 'Comment', 339 => 'Comment', 403 => "\xa9cmt", 405 => 'comment', 411 => "\xa9cmt" }, - 'compass' => { 421 => 0x4 }, - 'compatiblebrands' => { 405 => 'compatible_brands' }, - 'compatibleversion' => { 515 => 'CompatibleVersion', 517 => 'CompatibleVersion' }, - 'compilation' => { 403 => 'cpil' }, - 'compimageimagespersequence' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfImagesInSequences'] }, - 'compimagemaxexposureall' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfAll'] }, - 'compimagemaxexposureused' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfUsed'] }, - 'compimageminexposureall' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfAll'] }, - 'compimageminexposureused' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfUsed'] }, - 'compimagenumsequences' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfSequences'] }, - 'compimagesumexposureall' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfAll'] }, - 'compimagesumexposureused' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfUsed'] }, - 'compimagetotalexposureperiod' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesTotalExposurePeriod'] }, - 'compimagevalues' => { 522 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesValues'] }, - 'complianceprofile' => { 534 => 'complianceProfile' }, - 'componentsconfiguration' => { 124 => 0x9101, 167 => 'Components', 521 => 'ComponentsConfiguration' }, + 'commanddialframeadvancezoom' => { 251 => 0x804 }, + 'commanddialplaybackmode' => { 324 => 0x1cb, 325 => 0x1cb, 326 => 0x1e3 }, + 'commanddials' => { 318 => '5.1' }, + 'commanddialsaperturesetting' => { 307 => '17.3', 308 => '18.3', 310 => '18.3', 311 => '18.3', 316 => '33.3', 317 => '17.3', 320 => '18.3', 321 => '18.3' }, + 'commanddialschangemainsub' => { 307 => '17.2', 308 => '18.1', 310 => '18.1', 311 => '18.1', 316 => '33.2', 317 => '17.2', 320 => '18.1', 321 => '18.1' }, + 'commanddialsmenuandplayback' => { 307 => '17.4', 308 => '18.2', 310 => '18.2', 311 => '18.2', 316 => '33.4', 317 => '17.4', 320 => '18.2', 321 => '18.2' }, + 'commanddialsreverserotation' => { 307 => '17.1', 308 => '6.4', 310 => '6.2', 311 => '6.2', 312 => '16.2', 313 => '17.2', 316 => '33.1', 317 => '17.1', 320 => '6.2', 321 => '6.2', 322 => '18.1' }, + 'commanddialvideoplaybackmode' => { 324 => 0x1cd, 326 => 0x1e5 }, + 'commanderchannel' => { 318 => '10.2', 319 => '25.2' }, + 'commandergroupa_ttl-aacomp' => { 318 => '13.1', 319 => '31.1' }, + 'commandergroupa_ttlcomp' => { 322 => '32.1' }, + 'commandergroupamanualoutput' => { 318 => '13.2', 319 => '28.2' }, + 'commandergroupamode' => { 318 => '11.2', 319 => '28.1' }, + 'commandergroupb_ttl-aacomp' => { 318 => '14.1', 319 => '32.1' }, + 'commandergroupb_ttlcomp' => { 322 => '33.1' }, + 'commandergroupbmanualoutput' => { 318 => '14.2', 319 => '29.2' }, + 'commandergroupbmode' => { 318 => '11.3', 319 => '29.1' }, + 'commanderinternalflash' => { 318 => '11.1', 319 => '27.1' }, + 'commanderinternalmanualoutput' => { 318 => '12.2', 319 => '27.2' }, + 'commanderinternalttlchannel' => { 316 => '18.2' }, + 'commanderinternalttlcomp' => { 318 => '12.1', 319 => '30.2', 322 => '31.2' }, + 'commanderinternalttlcompbuiltin' => { 316 => '20.1', 317 => '26.1' }, + 'commanderinternalttlcompgroupa' => { 316 => '21.1', 317 => '27.1' }, + 'commanderinternalttlcompgroupb' => { 316 => '22.1', 317 => '28.1' }, + 'comment' => { 0 => 0x2, 125 => 'Comment', 162 => 'Comment', 341 => 'Comment', 405 => "\xa9cmt", 407 => 'comment', 413 => "\xa9cmt" }, + 'compass' => { 423 => 0x4 }, + 'compatiblebrands' => { 407 => 'compatible_brands' }, + 'compatibleversion' => { 517 => 'CompatibleVersion', 519 => 'CompatibleVersion' }, + 'compilation' => { 405 => 'cpil' }, + 'compimageimagespersequence' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfImagesInSequences'] }, + 'compimagemaxexposureall' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfAll'] }, + 'compimagemaxexposureused' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfUsed'] }, + 'compimageminexposureall' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfAll'] }, + 'compimageminexposureused' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfUsed'] }, + 'compimagenumsequences' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfSequences'] }, + 'compimagesumexposureall' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfAll'] }, + 'compimagesumexposureused' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfUsed'] }, + 'compimagetotalexposureperiod' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesTotalExposurePeriod'] }, + 'compimagevalues' => { 524 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesValues'] }, + 'complianceprofile' => { 536 => 'complianceProfile' }, + 'componentsconfiguration' => { 124 => 0x9101, 167 => 'Components', 523 => 'ComponentsConfiguration' }, 'componentversion' => { 102 => 0x80c }, - 'composer' => { 184 => 'WM/Composer', 403 => ["\xa9com","\xa9wrt"], 411 => ["\xa9com","\xa9wrt"], 544 => 'composer' }, - 'composerid' => { 403 => 'cmID' }, - 'composerkeywords' => { 411 => "\xa9cok" }, - 'compositeimage' => { 124 => 0xa460, 522 => 'CompositeImage' }, - 'compositeimagecount' => { 124 => 0xa461, 522 => 'CompositeImageCount' }, - 'compositeimageexposuretimes' => { 124 => 0xa462, 522 => 'CompositeImageExposureTimes' }, - 'composition' => { 505 => 'Composition' }, - 'compositionadjust' => { 384 => '0.1' }, - 'compositionadjustrotation' => { 384 => 0x7 }, - 'compositionadjustx' => { 384 => 0x5 }, - 'compositionadjusty' => { 384 => 0x6 }, - 'compressedbitsperpixel' => { 124 => 0x9102, 521 => 'CompressedBitsPerPixel' }, - 'compressedimagesize' => { 191 => 0x40, 331 => 0x40 }, - 'compression' => { 124 => 0x103, 355 => 0xb, 540 => 'Compression' }, - 'compressionfactor' => { 326 => 0x50d }, + 'composer' => { 184 => 'WM/Composer', 405 => ["\xa9com","\xa9wrt"], 413 => ["\xa9com","\xa9wrt"], 546 => 'composer' }, + 'composerid' => { 405 => 'cmID' }, + 'composerkeywords' => { 413 => "\xa9cok" }, + 'compositeimage' => { 124 => 0xa460, 524 => 'CompositeImage' }, + 'compositeimagecount' => { 124 => 0xa461, 524 => 'CompositeImageCount' }, + 'compositeimageexposuretimes' => { 124 => 0xa462, 524 => 'CompositeImageExposureTimes' }, + 'composition' => { 507 => 'Composition' }, + 'compositionadjust' => { 386 => '0.1' }, + 'compositionadjustrotation' => { 386 => 0x7 }, + 'compositionadjustx' => { 386 => 0x5 }, + 'compositionadjusty' => { 386 => 0x6 }, + 'compressedbitsperpixel' => { 124 => 0x9102, 523 => 'CompressedBitsPerPixel' }, + 'compressedimagesize' => { 191 => 0x40, 333 => 0x40 }, + 'compression' => { 124 => 0x103, 357 => 0xb, 542 => 'Compression' }, + 'compressionfactor' => { 328 => 0x50d }, 'compressionformat' => { 67 => 0x4 }, - 'compressionratio' => { 167 => 'Compression', 331 => 0x1034 }, - 'compressorversion' => { 411 => 'CNCV' }, + 'compressionratio' => { 167 => 'Compression', 333 => 0x1034 }, + 'compressorversion' => { 413 => 'CNCV' }, 'condadobvfactor' => { 143 => 0xf3e }, 'condadodaybvthresh' => { 143 => 0xf3c }, 'condadodayoffsets' => { 143 => 0xf42 }, @@ -1951,222 +1953,222 @@ my %tagLookup = ( 'condadoneurange' => { 143 => 0xf3d }, 'condadotunoffsets' => { 143 => 0xf43 }, 'condadotunthresh' => { 143 => 0xf40 }, - 'conductor' => { 184 => 'WM/Conductor', 403 => "\xa9con" }, - 'confidence' => { 500 => 'Confidence' }, - 'confidencelevel' => { 511 => 'ConfidenceLevel' }, - 'confidencemime' => { 500 => 'ConfidenceMime' }, - 'constrainedcropheight' => { 113 => 0x266, 397 => 0xd6 }, - 'constrainedcropwidth' => { 113 => 0x262, 397 => 0xd5 }, + 'conductor' => { 184 => 'WM/Conductor', 405 => "\xa9con" }, + 'confidence' => { 502 => 'Confidence' }, + 'confidencelevel' => { 513 => 'ConfidenceLevel' }, + 'confidencemime' => { 502 => 'ConfidenceMime' }, + 'constrainedcropheight' => { 113 => 0x266, 399 => 0xd6 }, + 'constrainedcropwidth' => { 113 => 0x262, 399 => 0xd5 }, 'contact' => { 136 => 0x76 }, - 'contactinfo' => { 515 => 'ContactInfo', 517 => 'ContactInfo', 533 => 'contactInfo' }, - 'container' => { 493 => 'Container' }, - 'containerdirectory' => { 493 => [\'Container','ContainerDirectory'], 498 => 'Directory' }, - 'containerdirectoryitem' => { 493 => [\'Container','ContainerDirectoryItem'] }, - 'containerdirectoryitemdatauri' => { 493 => [\'Container','ContainerDirectoryItemDataURI'] }, - 'containerdirectoryitemlength' => { 493 => [\'Container','ContainerDirectoryItemLength'] }, - 'containerdirectoryitemmime' => { 493 => [\'Container','ContainerDirectoryItemMime'] }, - 'containerdirectoryitempadding' => { 493 => [\'Container','ContainerDirectoryItemPadding'] }, - 'containerformat' => { 529 => 'ContainerFormat' }, - 'containerformatidentifier' => { 529 => [\'ContainerFormat','ContainerFormatIdentifier'] }, - 'containerformatname' => { 529 => [\'ContainerFormat','ContainerFormatName'] }, - 'contentcreatedate' => { 403 => "\xa9day", 411 => ['@day',"\xa9day"] }, + 'contactinfo' => { 517 => 'ContactInfo', 519 => 'ContactInfo', 535 => 'contactInfo' }, + 'container' => { 495 => 'Container' }, + 'containerdirectory' => { 495 => [\'Container','ContainerDirectory'], 500 => 'Directory' }, + 'containerdirectoryitem' => { 495 => [\'Container','ContainerDirectoryItem'] }, + 'containerdirectoryitemdatauri' => { 495 => [\'Container','ContainerDirectoryItemDataURI'] }, + 'containerdirectoryitemlength' => { 495 => [\'Container','ContainerDirectoryItemLength'] }, + 'containerdirectoryitemmime' => { 495 => [\'Container','ContainerDirectoryItemMime'] }, + 'containerdirectoryitempadding' => { 495 => [\'Container','ContainerDirectoryItemPadding'] }, + 'containerformat' => { 531 => 'ContainerFormat' }, + 'containerformatidentifier' => { 531 => [\'ContainerFormat','ContainerFormatIdentifier'] }, + 'containerformatname' => { 531 => [\'ContainerFormat','ContainerFormatName'] }, + 'contentcreatedate' => { 405 => "\xa9day", 413 => ['@day',"\xa9day"] }, 'contentdistributor' => { 184 => 'WM/ContentDistributor' }, - 'contentdistributorid' => { 411 => 'cdis' }, - 'contentid' => { 411 => 'ccid' }, - 'contentidentifier' => { 1 => 0x11, 405 => 'content.identifier' }, + 'contentdistributorid' => { 413 => 'cdis' }, + 'contentid' => { 413 => 'ccid' }, + 'contentidentifier' => { 1 => 0x11, 407 => 'content.identifier' }, 'contentlocationcode' => { 136 => 0x1a }, 'contentlocationname' => { 136 => 0x1b }, - 'contenttype' => { 534 => 'contentType' }, + 'contenttype' => { 536 => 'contentType' }, 'continuousbracketing' => { 189 => 0x20 }, 'continuousdrive' => { 36 => 0x5 }, - 'continuousmodedisplay' => { 322 => 0x51, 323 => 0x51, 324 => 0x51 }, - 'continuousmodeliveview' => { 320 => '77.2' }, + 'continuousmodedisplay' => { 323 => 0x55, 324 => 0x51, 325 => 0x51, 326 => 0x51 }, + 'continuousmodeliveview' => { 321 => '77.2' }, 'continuousshootingspeed' => { 89 => 0x610 }, 'continuousshotlimit' => { 89 => 0x611 }, - 'contrast' => { 10 => 0x73, 12 => 0x75, 36 => 0xd, 117 => 0xc, 118 => [0x3012,0x20], 124 => [0xa408,0xfe54], 132 => [0x1004,0x1006], 161 => 'Contrast', 181 => 'Contrast', 186 => 0x20, 187 => 0x31, 188 => 0x27, 189 => 0x19, 194 => 0x2, 257 => 0x33, 258 => 0x37, 259 => 0x3f, 331 => 0x1029, 350 => 0x39, 352 => 0x300a, 386 => 0x20, 393 => 0xc, 405 => 'player.movie.visual.contrast', 412 => 0x24, 414 => 0x52, 418 => 0x1012, 428 => 0xd, 438 => 0x1d, 439 => 0x1a, 452 => 0x2004, 515 => 'Contrast', 517 => 'Contrast', 521 => 'Contrast' }, - 'contrast2012' => { 515 => 'Contrast2012', 517 => 'Contrast2012' }, - 'contrastadj' => { 108 => 0x20303, 113 => 0x115, 302 => 0x2c, 489 => 0x8017 }, + 'contrast' => { 10 => 0x73, 12 => 0x75, 36 => 0xd, 117 => 0xc, 118 => [0x3012,0x20], 124 => [0xa408,0xfe54], 132 => [0x1004,0x1006], 161 => 'Contrast', 181 => 'Contrast', 186 => 0x20, 187 => 0x31, 188 => 0x27, 189 => 0x19, 194 => 0x2, 258 => 0x33, 259 => 0x37, 260 => 0x3f, 333 => 0x1029, 352 => 0x39, 354 => 0x300a, 388 => 0x20, 395 => 0xc, 407 => 'player.movie.visual.contrast', 414 => 0x24, 416 => 0x52, 420 => 0x1012, 430 => 0xd, 440 => 0x1d, 441 => 0x1a, 454 => 0x2004, 517 => 'Contrast', 519 => 'Contrast', 523 => 'Contrast' }, + 'contrast2012' => { 517 => 'Contrast2012', 519 => 'Contrast2012' }, + 'contrastadj' => { 108 => 0x20303, 113 => 0x115, 303 => 0x2c, 491 => 0x8017 }, 'contrastauto' => { 75 => 0x90 }, 'contrastcurve' => { 241 => 0x8c }, 'contrastdetectaf' => { 198 => 0x4 }, - 'contrastdetectafarea' => { 386 => 0x231 }, + 'contrastdetectafarea' => { 388 => 0x231 }, 'contrastdetectafinfocus' => { 198 => [0x1c,0x52] }, 'contrastfaithful' => { 19 => 0xec, 74 => 0x60, 75 => 0x60 }, - 'contrasthighlight' => { 386 => 0x6d }, - 'contrasthighlightshadowadj' => { 386 => 0x6f }, + 'contrasthighlight' => { 388 => 0x6d }, + 'contrasthighlightshadowadj' => { 388 => 0x6f }, 'contrastlandscape' => { 19 => 0xea, 74 => 0x30, 75 => 0x30 }, - 'contrastmode' => { 350 => 0x2c }, + 'contrastmode' => { 352 => 0x2c }, 'contrastmonochrome' => { 19 => 0xed, 74 => 0x78, 75 => 0x78 }, 'contrastneutral' => { 19 => 0xeb, 74 => 0x48, 75 => 0x48 }, 'contrastportrait' => { 19 => 0xe9, 74 => 0x18, 75 => 0x18 }, - 'contrastsetting' => { 326 => 0x505, 334 => 0x1012, 440 => 0x10, 457 => 0x8 }, - 'contrastshadow' => { 386 => 0x6e }, + 'contrastsetting' => { 328 => 0x505, 336 => 0x1012, 442 => 0x10, 459 => 0x8 }, + 'contrastshadow' => { 388 => 0x6e }, 'contraststandard' => { 19 => 0xe8, 74 => 0x0, 75 => 0x0 }, 'contrastuserdef1' => { 19 => 0xee, 74 => 0x90, 75 => 0xa8 }, 'contrastuserdef2' => { 19 => 0xef, 74 => 0xa8, 75 => 0xc0 }, 'contrastuserdef3' => { 19 => 0xf0, 74 => 0xc0, 75 => 0xd8 }, - 'contributedmedia' => { 544 => 'contributedMedia' }, - 'contributedmediaduration' => { 544 => [\'contributedMedia','contributedMediaDuration'] }, - 'contributedmediadurationscale' => { 544 => [\'contributedMedia','contributedMediaDurationScale'] }, - 'contributedmediadurationvalue' => { 544 => [\'contributedMedia','contributedMediaDurationValue'] }, - 'contributedmediamanaged' => { 544 => [\'contributedMedia','contributedMediaManaged'] }, - 'contributedmediapath' => { 544 => [\'contributedMedia','contributedMediaPath'] }, - 'contributedmediastarttime' => { 544 => [\'contributedMedia','contributedMediaStartTime'] }, - 'contributedmediastarttimescale' => { 544 => [\'contributedMedia','contributedMediaStartTimeScale'] }, - 'contributedmediastarttimevalue' => { 544 => [\'contributedMedia','contributedMediaStartTimeValue'] }, - 'contributedmediatrack' => { 544 => [\'contributedMedia','contributedMediaTrack'] }, - 'contributedmediawebstatement' => { 544 => [\'contributedMedia','contributedMediaWebStatement'] }, - 'contributor' => { 518 => 'contributor', 529 => 'Contributor' }, - 'contributoridentifier' => { 529 => [\'Contributor','ContributorIdentifier'] }, - 'contributorname' => { 529 => [\'Contributor','ContributorName'] }, - 'contributorrole' => { 529 => [\'Contributor','ContributorRole'] }, + 'contributedmedia' => { 546 => 'contributedMedia' }, + 'contributedmediaduration' => { 546 => [\'contributedMedia','contributedMediaDuration'] }, + 'contributedmediadurationscale' => { 546 => [\'contributedMedia','contributedMediaDurationScale'] }, + 'contributedmediadurationvalue' => { 546 => [\'contributedMedia','contributedMediaDurationValue'] }, + 'contributedmediamanaged' => { 546 => [\'contributedMedia','contributedMediaManaged'] }, + 'contributedmediapath' => { 546 => [\'contributedMedia','contributedMediaPath'] }, + 'contributedmediastarttime' => { 546 => [\'contributedMedia','contributedMediaStartTime'] }, + 'contributedmediastarttimescale' => { 546 => [\'contributedMedia','contributedMediaStartTimeScale'] }, + 'contributedmediastarttimevalue' => { 546 => [\'contributedMedia','contributedMediaStartTimeValue'] }, + 'contributedmediatrack' => { 546 => [\'contributedMedia','contributedMediaTrack'] }, + 'contributedmediawebstatement' => { 546 => [\'contributedMedia','contributedMediaWebStatement'] }, + 'contributor' => { 520 => 'contributor', 531 => 'Contributor' }, + 'contributoridentifier' => { 531 => [\'Contributor','ContributorIdentifier'] }, + 'contributorname' => { 531 => [\'Contributor','ContributorName'] }, + 'contributorrole' => { 531 => [\'Contributor','ContributorRole'] }, 'contributors' => { 162 => 'Contributors' }, 'controldialset' => { 189 => 0x46 }, - 'controlledvocabularyterm' => { 529 => 'CVterm' }, - 'controllerboardversion' => { 345 => 0x332 }, + 'controlledvocabularyterm' => { 531 => 'CVterm' }, + 'controllerboardversion' => { 347 => 0x332 }, 'controlmode' => { 81 => 0x12 }, - 'controlringresponse' => { 322 => 0x1d5, 323 => 0x1d5, 324 => 0x1ed }, + 'controlringresponse' => { 323 => 0x1cf, 324 => 0x1d5, 325 => 0x1d5, 326 => 0x1ed }, 'controlringrotation' => { 89 => 0x712 }, - 'conversionlens' => { 327 => 0x403, 350 => 0x35 }, - 'converter' => { 124 => 0xfe4d, 288 => 0xb, 515 => 'Converter', 517 => 'Converter' }, - 'converttograyscale' => { 515 => 'ConvertToGrayscale', 517 => 'ConvertToGrayscale' }, - 'cookingequipment' => { 536 => 'cookingEquipment' }, - 'cookingmethod' => { 536 => 'cookingMethod' }, - 'copyright' => { 0 => 0x3, 124 => 0x8298, 162 => 'Copyright', 339 => 'Copyright', 355 => 0x8298, 386 => 0x22f, 402 => 'Copyright', 403 => ['cprt',"\xa9cpy"], 405 => 'copyright', 411 => ['cprt',"\xa9cpy"], 515 => 'Copyright', 517 => 'Copyright', 531 => 'Copyright', 537 => 'copyright', 540 => 'Copyright', 544 => 'copyright' }, - 'copyrightflag' => { 400 => 0x40a }, + 'conversionlens' => { 329 => 0x403, 352 => 0x35 }, + 'converter' => { 124 => 0xfe4d, 289 => 0xb, 517 => 'Converter', 519 => 'Converter' }, + 'converttograyscale' => { 517 => 'ConvertToGrayscale', 519 => 'ConvertToGrayscale' }, + 'cookingequipment' => { 538 => 'cookingEquipment' }, + 'cookingmethod' => { 538 => 'cookingMethod' }, + 'copyright' => { 0 => 0x3, 124 => 0x8298, 162 => 'Copyright', 341 => 'Copyright', 357 => 0x8298, 388 => 0x22f, 404 => 'Copyright', 405 => ['cprt',"\xa9cpy"], 407 => 'copyright', 413 => ['cprt',"\xa9cpy"], 517 => 'Copyright', 519 => 'Copyright', 533 => 'Copyright', 539 => 'copyright', 542 => 'Copyright', 546 => 'copyright' }, + 'copyrightflag' => { 402 => 0x40a }, 'copyrightnotice' => { 136 => 0x74 }, - 'copyrightowner' => { 336 => 'CopyrightOwner' }, - 'copyrightownerid' => { 336 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] }, - 'copyrightownerimageid' => { 336 => 'CopyrightOwnerImageID' }, - 'copyrightownername' => { 336 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] }, - 'copyrightregistrationnumber' => { 336 => 'CopyrightRegistrationNumber' }, - 'copyrightstatus' => { 336 => 'CopyrightStatus' }, - 'copyrightyear' => { 529 => 'CopyrightYear', 534 => 'copyrightYear' }, - 'coringfilter' => { 330 => 0x310, 331 => 0x102d, 334 => 0x310 }, - 'coringvalues' => { 330 => 0x311, 334 => 0x311 }, - 'corporateentity' => { 534 => 'corporateEntity' }, - 'correctionalreadyapplied' => { 340 => 'CorrectionAlreadyApplied' }, - 'correlatedcolortemp' => { 349 => 0x35b }, - 'country' => { 166 => 'Country', 350 => 0x69, 532 => 'Country' }, + 'copyrightowner' => { 338 => 'CopyrightOwner' }, + 'copyrightownerid' => { 338 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] }, + 'copyrightownerimageid' => { 338 => 'CopyrightOwnerImageID' }, + 'copyrightownername' => { 338 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] }, + 'copyrightregistrationnumber' => { 338 => 'CopyrightRegistrationNumber' }, + 'copyrightstatus' => { 338 => 'CopyrightStatus' }, + 'copyrightyear' => { 531 => 'CopyrightYear', 536 => 'copyrightYear' }, + 'coringfilter' => { 332 => 0x310, 333 => 0x102d, 336 => 0x310 }, + 'coringvalues' => { 332 => 0x311, 336 => 0x311 }, + 'corporateentity' => { 536 => 'corporateEntity' }, + 'correctionalreadyapplied' => { 342 => 'CorrectionAlreadyApplied' }, + 'correlatedcolortemp' => { 351 => 0x35b }, + 'country' => { 166 => 'Country', 352 => 0x69, 534 => 'Country' }, 'country-primarylocationcode' => { 136 => 0x64 }, 'country-primarylocationname' => { 136 => 0x65 }, - 'countrycode' => { 240 => 0x5, 398 => 'CountryCode', 528 => 'CountryCode' }, - 'course' => { 536 => 'course' }, - 'coverage' => { 518 => 'coverage' }, - 'coverart' => { 403 => 'covr' }, - 'coverdate' => { 534 => 'coverDate' }, - 'coverdisplaydate' => { 534 => 'coverDisplayDate' }, - 'coveruri' => { 411 => 'cvru' }, - 'cpufirmwareversion' => { 386 => 0x28 }, - 'crc32' => { 519 => 'crc32' }, - 'createdate' => { 124 => 0x9004, 162 => 'CreateDate', 335 => 'CreationDate', 339 => 'create-date', 402 => 'CreationDate', 408 => 0x1, 542 => 'CreateDate' }, - 'creationdate' => { 405 => 'creationdate', 531 => 'CreationDate', 534 => 'creationDate' }, - 'creationtime' => { 339 => 'Creation Time', 405 => 'creation_time' }, - 'creativestyle' => { 438 => 0x1a, 439 => 0x18, 449 => 0x41, 452 => 0xb020, 484 => 0x4a }, - 'creativestylesetting' => { 440 => 0xf, 457 => 0x7 }, - 'creativestylewaschanged' => { 489 => 0x8001 }, - 'creator' => { 335 => 'Creator', 402 => 'Creator', 518 => 'creator', 529 => 'Creator', 531 => 'Creator' }, - 'creatoraddress' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] }, + 'countrycode' => { 240 => 0x5, 400 => 'CountryCode', 530 => 'CountryCode' }, + 'course' => { 538 => 'course' }, + 'coverage' => { 520 => 'coverage' }, + 'coverart' => { 405 => 'covr' }, + 'coverdate' => { 536 => 'coverDate' }, + 'coverdisplaydate' => { 536 => 'coverDisplayDate' }, + 'coveruri' => { 413 => 'cvru' }, + 'cpufirmwareversion' => { 388 => 0x28 }, + 'crc32' => { 521 => 'crc32' }, + 'createdate' => { 124 => 0x9004, 162 => 'CreateDate', 337 => 'CreationDate', 341 => 'create-date', 404 => 'CreationDate', 410 => 0x1, 544 => 'CreateDate' }, + 'creationdate' => { 407 => 'creationdate', 533 => 'CreationDate', 536 => 'creationDate' }, + 'creationtime' => { 341 => 'Creation Time', 407 => 'creation_time' }, + 'creativestyle' => { 440 => 0x1a, 441 => 0x18, 451 => 0x41, 454 => 0xb020, 486 => 0x4a }, + 'creativestylesetting' => { 442 => 0xf, 459 => 0x7 }, + 'creativestylewaschanged' => { 491 => 0x8001 }, + 'creator' => { 337 => 'Creator', 404 => 'Creator', 520 => 'creator', 531 => 'Creator', 533 => 'Creator' }, + 'creatoraddress' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] }, 'creatorappid' => { 183 => 'CreatorAppId' }, - 'creatorcity' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] }, - 'creatorcontactinfo' => { 528 => 'CreatorContactInfo' }, - 'creatorcountry' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] }, - 'creatoridentifier' => { 529 => [\'Creator','CreatorIdentifier'] }, - 'creatoridentity' => { 398 => 'CreatorIdentity' }, - 'creatorname' => { 529 => [\'Creator','CreatorName'] }, + 'creatorcity' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] }, + 'creatorcontactinfo' => { 530 => 'CreatorContactInfo' }, + 'creatorcountry' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] }, + 'creatoridentifier' => { 531 => [\'Creator','CreatorIdentifier'] }, + 'creatoridentity' => { 400 => 'CreatorIdentity' }, + 'creatorname' => { 531 => [\'Creator','CreatorName'] }, 'creatoropenwithuioptions' => { 183 => 'CreatorOpenWithUIOptions' }, - 'creatorpostalcode' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] }, - 'creatorregion' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] }, - 'creatorrole' => { 529 => [\'Creator','CreatorRole'] }, - 'creatortool' => { 542 => 'CreatorTool' }, - 'creatorworkemail' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] }, - 'creatorworktelephone' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] }, - 'creatorworkurl' => { 528 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] }, - 'credit' => { 136 => 0x6e, 532 => 'Credit' }, - 'creditline' => { 537 => 'creditLine' }, - 'creditlinereq' => { 547 => 'CreditLineReq' }, - 'creditlinerequired' => { 336 => 'CreditLineRequired' }, + 'creatorpostalcode' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] }, + 'creatorregion' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] }, + 'creatorrole' => { 531 => [\'Creator','CreatorRole'] }, + 'creatortool' => { 544 => 'CreatorTool' }, + 'creatorworkemail' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] }, + 'creatorworktelephone' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] }, + 'creatorworkurl' => { 530 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] }, + 'credit' => { 136 => 0x6e, 534 => 'Credit' }, + 'creditline' => { 539 => 'creditLine' }, + 'creditlinereq' => { 549 => 'CreditLineReq' }, + 'creditlinerequired' => { 338 => 'CreditLineRequired' }, 'cropactive' => { 106 => 0x0, 113 => 0x244 }, - 'cropangle' => { 106 => 0x8, 515 => 'CropAngle', 517 => 'CropAngle' }, - 'croparea' => { 241 => 0x45, 489 => 0x9011 }, + 'cropangle' => { 106 => 0x8, 517 => 'CropAngle', 519 => 'CropAngle' }, + 'croparea' => { 241 => 0x45, 491 => 0x9011 }, 'cropaspectratio' => { 108 => 0x30101, 113 => 0x260 }, 'cropaspectratiocustom' => { 108 => 0x30102 }, - 'cropbottom' => { 128 => 0x9, 294 => 0x36, 355 => 0x31, 397 => 0xdc, 515 => 'CropBottom', 517 => 'CropBottom' }, + 'cropbottom' => { 128 => 0x9, 295 => 0x36, 357 => 0x31, 399 => 0xdc, 517 => 'CropBottom', 519 => 'CropBottom' }, 'cropbottommargin' => { 56 => 0x3 }, 'cropcircleactive' => { 114 => 0xd6 }, 'cropcircleradius' => { 114 => 0xd9 }, 'cropcirclex' => { 114 => 0xd7 }, 'cropcircley' => { 114 => 0xd8 }, - 'cropconstraintowarp' => { 515 => 'CropConstrainToWarp', 517 => 'CropConstrainToWarp' }, + 'cropconstraintowarp' => { 517 => 'CropConstrainToWarp', 519 => 'CropConstrainToWarp' }, 'cropflag' => { 132 => 0x1051 }, - 'croph' => { 509 => 'CropH' }, - 'cropheight' => { 106 => 0x6, 113 => 0x24c, 330 => 0x615, 334 => 0x615, 515 => 'CropHeight', 517 => 'CropHeight' }, + 'croph' => { 511 => 'CropH' }, + 'cropheight' => { 106 => 0x6, 113 => 0x24c, 332 => 0x615, 336 => 0x615, 517 => 'CropHeight', 519 => 'CropHeight' }, 'crophispeed' => { 241 => 0x1b }, - 'cropleft' => { 113 => 0x246, 128 => 0x6, 294 => 0x1e, 330 => 0x612, 334 => 0x612, 355 => 0x30, 397 => 0xd9, 515 => 'CropLeft', 517 => 'CropLeft' }, + 'cropleft' => { 113 => 0x246, 128 => 0x6, 295 => 0x1e, 332 => 0x612, 336 => 0x612, 357 => 0x30, 399 => 0xd9, 517 => 'CropLeft', 519 => 'CropLeft' }, 'cropleftmargin' => { 56 => 0x0 }, - 'cropmode' => { 132 => 0x104d, 418 => 0x1018 }, + 'cropmode' => { 132 => 0x104d, 420 => 0x1018 }, 'croporiginalheight' => { 106 => 0xb }, 'croporiginalwidth' => { 106 => 0xa }, - 'cropoutputheight' => { 294 => 0xce }, - 'cropoutputheightinches' => { 294 => 0x96 }, - 'cropoutputpixels' => { 294 => 0xd6 }, - 'cropoutputresolution' => { 294 => 0xb6 }, - 'cropoutputscale' => { 294 => 0xbe }, - 'cropoutputwidth' => { 294 => 0xc6 }, - 'cropoutputwidthinches' => { 294 => 0x8e }, - 'croppedareaimageheightpixels' => { 503 => 'CroppedAreaImageHeightPixels', 504 => 'CroppedAreaImageHeightPixels' }, - 'croppedareaimagewidthpixels' => { 503 => 'CroppedAreaImageWidthPixels', 504 => 'CroppedAreaImageWidthPixels' }, - 'croppedarealeftpixels' => { 503 => 'CroppedAreaLeftPixels', 504 => 'CroppedAreaLeftPixels' }, - 'croppedareatoppixels' => { 503 => 'CroppedAreaTopPixels', 504 => 'CroppedAreaTopPixels' }, - 'croppedimageheight' => { 5 => 0x2, 418 => 0x1604 }, + 'cropoutputheight' => { 295 => 0xce }, + 'cropoutputheightinches' => { 295 => 0x96 }, + 'cropoutputpixels' => { 295 => 0xd6 }, + 'cropoutputresolution' => { 295 => 0xb6 }, + 'cropoutputscale' => { 295 => 0xbe }, + 'cropoutputwidth' => { 295 => 0xc6 }, + 'cropoutputwidthinches' => { 295 => 0x8e }, + 'croppedareaimageheightpixels' => { 505 => 'CroppedAreaImageHeightPixels', 506 => 'CroppedAreaImageHeightPixels' }, + 'croppedareaimagewidthpixels' => { 505 => 'CroppedAreaImageWidthPixels', 506 => 'CroppedAreaImageWidthPixels' }, + 'croppedarealeftpixels' => { 505 => 'CroppedAreaLeftPixels', 506 => 'CroppedAreaLeftPixels' }, + 'croppedareatoppixels' => { 505 => 'CroppedAreaTopPixels', 506 => 'CroppedAreaTopPixels' }, + 'croppedimageheight' => { 5 => 0x2, 420 => 0x1604 }, 'croppedimageleft' => { 5 => 0x3 }, 'croppedimagetop' => { 5 => 0x4 }, - 'croppedimagewidth' => { 5 => 0x1, 418 => 0x1603 }, - 'cropping' => { 489 => 0x9010 }, - 'cropright' => { 128 => 0x8, 294 => 0x2e, 355 => 0x32, 397 => 0xdb, 515 => 'CropRight', 517 => 'CropRight' }, + 'croppedimagewidth' => { 5 => 0x1, 420 => 0x1603 }, + 'cropping' => { 491 => 0x9010 }, + 'cropright' => { 128 => 0x8, 295 => 0x2e, 357 => 0x32, 399 => 0xdb, 517 => 'CropRight', 519 => 'CropRight' }, 'croprightmargin' => { 56 => 0x1 }, 'croprotatedoriginalheight' => { 106 => 0x2 }, 'croprotatedoriginalwidth' => { 106 => 0x1 }, 'croprotation' => { 106 => 0x7, 128 => 0xb }, - 'cropscaledresolution' => { 294 => 0x9e }, + 'cropscaledresolution' => { 295 => 0x9e }, 'cropsize' => { 132 => 0x1053 }, - 'cropsourceresolution' => { 294 => 0xae }, - 'croptop' => { 113 => 0x248, 128 => 0x7, 294 => 0x26, 330 => 0x613, 334 => 0x613, 355 => 0x2f, 397 => 0xda, 515 => 'CropTop', 517 => 'CropTop' }, + 'cropsourceresolution' => { 295 => 0xae }, + 'croptop' => { 113 => 0x248, 128 => 0x7, 295 => 0x26, 332 => 0x613, 336 => 0x613, 357 => 0x2f, 399 => 0xda, 517 => 'CropTop', 519 => 'CropTop' }, 'croptopleft' => { 132 => 0x1052 }, 'croptopmargin' => { 56 => 0x2 }, - 'cropunit' => { 515 => 'CropUnit', 517 => 'CropUnit' }, - 'cropunits' => { 515 => 'CropUnits', 517 => 'CropUnits' }, - 'cropw' => { 509 => 'CropW' }, - 'cropwidth' => { 106 => 0x5, 113 => 0x24a, 330 => 0x614, 334 => 0x614, 515 => 'CropWidth', 517 => 'CropWidth' }, - 'cropx' => { 106 => 0x3, 509 => 'CropX' }, - 'cropy' => { 106 => 0x4, 509 => 'CropY' }, - 'crossprocess' => { 386 => 0x7b }, - 'crossprocessparams' => { 386 => 0x235 }, - 'cuisine' => { 536 => 'cuisine' }, + 'cropunit' => { 517 => 'CropUnit', 519 => 'CropUnit' }, + 'cropunits' => { 517 => 'CropUnits', 519 => 'CropUnits' }, + 'cropw' => { 511 => 'CropW' }, + 'cropwidth' => { 106 => 0x5, 113 => 0x24a, 332 => 0x614, 336 => 0x614, 517 => 'CropWidth', 519 => 'CropWidth' }, + 'cropx' => { 106 => 0x3, 511 => 'CropX' }, + 'cropy' => { 106 => 0x4, 511 => 'CropY' }, + 'crossprocess' => { 388 => 0x7b }, + 'crossprocessparams' => { 388 => 0x235 }, + 'cuisine' => { 538 => 'cuisine' }, 'currenticcprofile' => { 124 => 0xc691 }, 'currentpreprofilematrix' => { 124 => 0xc692 }, - 'currentversion' => { 489 => 0xd000 }, - 'curve0x' => { 509 => 'Curve0x' }, - 'curve0y' => { 509 => 'Curve0y' }, - 'curve1x' => { 509 => 'Curve1x' }, - 'curve1y' => { 509 => 'Curve1y' }, - 'curve2x' => { 509 => 'Curve2x' }, - 'curve2y' => { 509 => 'Curve2y' }, - 'curve3x' => { 509 => 'Curve3x' }, - 'curve3y' => { 509 => 'Curve3y' }, - 'curve4x' => { 509 => 'Curve4x' }, - 'curve4y' => { 509 => 'Curve4y' }, - 'curves' => { 299 => 0x76a43201 }, - 'custom1' => { 336 => 'Custom1' }, - 'custom10' => { 336 => 'Custom10' }, - 'custom2' => { 336 => 'Custom2' }, - 'custom3' => { 336 => 'Custom3' }, - 'custom4' => { 336 => 'Custom4' }, - 'custom5' => { 336 => 'Custom5' }, - 'custom6' => { 336 => 'Custom6' }, - 'custom7' => { 336 => 'Custom7' }, - 'custom8' => { 336 => 'Custom8' }, - 'custom9' => { 336 => 'Custom9' }, + 'currentversion' => { 491 => 0xd000 }, + 'curve0x' => { 511 => 'Curve0x' }, + 'curve0y' => { 511 => 'Curve0y' }, + 'curve1x' => { 511 => 'Curve1x' }, + 'curve1y' => { 511 => 'Curve1y' }, + 'curve2x' => { 511 => 'Curve2x' }, + 'curve2y' => { 511 => 'Curve2y' }, + 'curve3x' => { 511 => 'Curve3x' }, + 'curve3y' => { 511 => 'Curve3y' }, + 'curve4x' => { 511 => 'Curve4x' }, + 'curve4y' => { 511 => 'Curve4y' }, + 'curves' => { 300 => 0x76a43201 }, + 'custom1' => { 338 => 'Custom1' }, + 'custom10' => { 338 => 'Custom10' }, + 'custom2' => { 338 => 'Custom2' }, + 'custom3' => { 338 => 'Custom3' }, + 'custom4' => { 338 => 'Custom4' }, + 'custom5' => { 338 => 'Custom5' }, + 'custom6' => { 338 => 'Custom6' }, + 'custom7' => { 338 => 'Custom7' }, + 'custom8' => { 338 => 'Custom8' }, + 'custom9' => { 338 => 'Custom9' }, 'customcolortone' => { 114 => 0x4c }, 'customcontrast' => { 114 => 0x4e }, 'customcontrols' => { 89 => 0x70c }, @@ -2185,70 +2187,70 @@ my %tagLookup = ( 'customrawhighlightpoint' => { 114 => 0x51 }, 'customrawshadow' => { 114 => 0x85 }, 'customrawshadowpoint' => { 114 => 0x52 }, - 'customrendered' => { 124 => 0xa401, 196 => 0x6420, 521 => 'CustomRendered' }, - 'customsaturation' => { 114 => 0x4d, 326 => 0x503 }, - 'customsettingsalldefault' => { 306 => '0.2', 315 => '0.2' }, - 'customsettingsbank' => { 306 => '0.1', 307 => '0.1', 309 => '0.1', 310 => '0.1', 315 => '0.1', 319 => '0.2', 320 => '0.2', 322 => 0x1, 323 => 0x1, 324 => 0x1 }, + 'customrendered' => { 124 => 0xa401, 196 => 0x6420, 523 => 'CustomRendered' }, + 'customsaturation' => { 114 => 0x4d, 328 => 0x503 }, + 'customsettingsalldefault' => { 307 => '0.2', 316 => '0.2' }, + 'customsettingsbank' => { 307 => '0.1', 308 => '0.1', 310 => '0.1', 311 => '0.1', 316 => '0.1', 320 => '0.2', 321 => '0.2', 324 => 0x1, 325 => 0x1, 326 => 0x1 }, 'customsharpness' => { 114 => 0x50 }, 'customunsharpmaskfineness' => { 114 => 0xb8 }, 'customunsharpmaskstrength' => { 114 => 0xb6 }, 'customunsharpmaskthreshold' => { 114 => 0xba }, - 'customwb_rblevels' => { 457 => 0x1a }, - 'customwb_rgblevels' => { 439 => 0x8, 440 => 0x19 }, + 'customwb_rblevels' => { 459 => 0x1a }, + 'customwb_rgblevels' => { 441 => 0x8, 442 => 0x19 }, 'customwbbluelevel' => { 189 => 0x36 }, 'customwberror' => { 189 => 0x37 }, 'customwbgreenlevel' => { 189 => 0x35 }, 'customwbredlevel' => { 189 => 0x34 }, 'customwbsetting' => { 189 => 0x26 }, - 'cx' => { 411 => '_cx_' }, - 'cy' => { 411 => '_cy_' }, - 'd-lightinghq' => { 299 => 0x2175eb78 }, - 'd-lightinghqcolorboost' => { 295 => 0x2 }, - 'd-lightinghqhighlight' => { 295 => 0x1 }, - 'd-lightinghqselected' => { 299 => 0x6a6e36b6 }, - 'd-lightinghqshadow' => { 295 => 0x0 }, - 'd-lightinghs' => { 299 => 0xce5554aa }, - 'd-lightinghsadjustment' => { 296 => 0x0 }, - 'd-lightinghscolorboost' => { 296 => 0x1 }, - 'd-rangeoptimizerhighlight' => { 489 => 0x8024 }, - 'd-rangeoptimizermode' => { 489 => 0x8022 }, - 'd-rangeoptimizershadow' => { 489 => 0x802d }, - 'd-rangeoptimizervalue' => { 489 => 0x8023 }, + 'cx' => { 413 => '_cx_' }, + 'cy' => { 413 => '_cy_' }, + 'd-lightinghq' => { 300 => 0x2175eb78 }, + 'd-lightinghqcolorboost' => { 296 => 0x2 }, + 'd-lightinghqhighlight' => { 296 => 0x1 }, + 'd-lightinghqselected' => { 300 => 0x6a6e36b6 }, + 'd-lightinghqshadow' => { 296 => 0x0 }, + 'd-lightinghs' => { 300 => 0xce5554aa }, + 'd-lightinghsadjustment' => { 297 => 0x0 }, + 'd-lightinghscolorboost' => { 297 => 0x1 }, + 'd-rangeoptimizerhighlight' => { 491 => 0x8024 }, + 'd-rangeoptimizermode' => { 491 => 0x8022 }, + 'd-rangeoptimizershadow' => { 491 => 0x802d }, + 'd-rangeoptimizervalue' => { 491 => 0x8023 }, 'darkblacksegrows' => { 143 => 0x18d8 }, - 'darkfocusenvironment' => { 350 => 0x8003 }, + 'darkfocusenvironment' => { 352 => 0x8003 }, 'darkframecountfactor' => { 143 => 0xc85 }, 'darkframelongexposure' => { 143 => 0xc84 }, 'darkframeshortexposure' => { 143 => 0xc83 }, 'darkpedestal' => { 143 => 0xc7f }, 'datacompressionmethod' => { 138 => 0x6e }, 'dataimprint' => { 186 => 0x34 }, - 'datamining' => { 336 => 'DataMining' }, - 'dataonscreen' => { 529 => 'DataOnScreen' }, - 'dataonscreenregion' => { 529 => [\'DataOnScreen','DataOnScreenRegion'] }, - 'dataonscreenregiond' => { 529 => [\'DataOnScreen','DataOnScreenRegionD'] }, - 'dataonscreenregionh' => { 529 => [\'DataOnScreen','DataOnScreenRegionH'] }, - 'dataonscreenregiontext' => { 529 => [\'DataOnScreen','DataOnScreenRegionText'] }, - 'dataonscreenregionunit' => { 529 => [\'DataOnScreen','DataOnScreenRegionUnit'] }, - 'dataonscreenregionw' => { 529 => [\'DataOnScreen','DataOnScreenRegionW'] }, - 'dataonscreenregionx' => { 529 => [\'DataOnScreen','DataOnScreenRegionX'] }, - 'dataonscreenregiony' => { 529 => [\'DataOnScreen','DataOnScreenRegionY'] }, - 'datascaling' => { 386 => 0x3d }, - 'date' => { 386 => 0x6, 518 => 'date' }, + 'datamining' => { 338 => 'DataMining' }, + 'dataonscreen' => { 531 => 'DataOnScreen' }, + 'dataonscreenregion' => { 531 => [\'DataOnScreen','DataOnScreenRegion'] }, + 'dataonscreenregiond' => { 531 => [\'DataOnScreen','DataOnScreenRegionD'] }, + 'dataonscreenregionh' => { 531 => [\'DataOnScreen','DataOnScreenRegionH'] }, + 'dataonscreenregiontext' => { 531 => [\'DataOnScreen','DataOnScreenRegionText'] }, + 'dataonscreenregionunit' => { 531 => [\'DataOnScreen','DataOnScreenRegionUnit'] }, + 'dataonscreenregionw' => { 531 => [\'DataOnScreen','DataOnScreenRegionW'] }, + 'dataonscreenregionx' => { 531 => [\'DataOnScreen','DataOnScreenRegionX'] }, + 'dataonscreenregiony' => { 531 => [\'DataOnScreen','DataOnScreenRegionY'] }, + 'datascaling' => { 388 => 0x3d }, + 'date' => { 388 => 0x6, 520 => 'date' }, 'dateacquired' => { 183 => 'DateAcquired', 184 => '{2CBAA8F5-D81F-47CA-B17A-F8D822300131} 100' }, - 'datecreated' => { 136 => 0x37, 532 => 'DateCreated' }, - 'datedisplayformat' => { 291 => 0x3 }, + 'datecreated' => { 136 => 0x37, 534 => 'DateCreated' }, + 'datedisplayformat' => { 292 => 0x3 }, 'dateidentified' => { 123 => [\'Identification','IdentificationDateIdentified'] }, - 'dateimprint' => { 311 => '4.2' }, - 'daterecieved' => { 534 => 'dateRecieved' }, + 'dateimprint' => { 312 => '4.2' }, + 'daterecieved' => { 536 => 'dateRecieved' }, 'datesent' => { 137 => 0x46 }, 'datestampmode' => { 68 => 0x1c, 241 => 0x9d }, - 'datetime' => { 510 => 'datetime', 540 => 'DateTime' }, - 'datetimedigitized' => { 521 => 'DateTimeDigitized' }, - 'datetimeoriginal' => { 105 => 0x0, 124 => 0x9003, 159 => 0x14, 162 => 'OriginalDate', 406 => 'IDIT', 411 => 'date', 412 => 0xb, 413 => 0x3b, 414 => 0x3e, 521 => 'DateTimeOriginal' }, + 'datetime' => { 512 => 'datetime', 542 => 'DateTime' }, + 'datetimedigitized' => { 523 => 'DateTimeDigitized' }, + 'datetimeoriginal' => { 105 => 0x0, 124 => 0x9003, 159 => 0x14, 162 => 'OriginalDate', 408 => 'IDIT', 413 => 'date', 414 => 0xb, 415 => 0x3b, 416 => 0x3e, 523 => 'DateTimeOriginal' }, 'datetimestamp' => { 145 => 0x64 }, - 'datetimeutc' => { 326 => 0x908 }, - 'daylightsavings' => { 82 => 0x3, 291 => 0x2 }, - 'dayofweek' => { 413 => 0x42, 414 => 0x4a }, + 'datetimeutc' => { 328 => 0x908 }, + 'daylightsavings' => { 82 => 0x3, 292 => 0x2 }, + 'dayofweek' => { 415 => 0x42, 416 => 0x4a }, 'dccontinent' => { 123 => [\'dctermsLocation','dctermsLocationContinent'] }, 'dccoordinateprecision' => { 123 => [\'dctermsLocation','dctermsLocationCoordinatePrecision'] }, 'dccoordinateuncertaintyinmeters' => { 123 => [\'dctermsLocation','dctermsLocationCoordinateUncertaintyInMeters'] }, @@ -2298,177 +2300,177 @@ my %tagLookup = ( 'dcwaterbody' => { 123 => [\'dctermsLocation','dctermsLocationWaterBody'] }, 'declination' => { 170 => 'Declination' }, 'decposition' => { 186 => 0x32 }, - 'defaultautogray' => { 515 => 'DefaultAutoGray', 517 => 'DefaultAutoGray' }, - 'defaultautotone' => { 515 => 'DefaultAutoTone', 517 => 'DefaultAutoTone' }, + 'defaultautogray' => { 517 => 'DefaultAutoGray', 519 => 'DefaultAutoGray' }, + 'defaultautotone' => { 517 => 'DefaultAutoTone', 519 => 'DefaultAutoTone' }, 'defaultblackrender' => { 124 => 0xc7a6 }, 'defaultcroporigin' => { 124 => 0xc61f }, 'defaultcropsize' => { 124 => 0xc620 }, 'defaulteraseoption' => { 89 => 0x813 }, 'defaultscale' => { 124 => 0xc61e }, - 'defaultsspecifictoiso' => { 515 => 'DefaultsSpecificToISO', 517 => 'DefaultsSpecificToISO' }, - 'defaultsspecifictoserial' => { 515 => 'DefaultsSpecificToSerial', 517 => 'DefaultsSpecificToSerial' }, + 'defaultsspecifictoiso' => { 517 => 'DefaultsSpecificToISO', 519 => 'DefaultsSpecificToISO' }, + 'defaultsspecifictoserial' => { 517 => 'DefaultsSpecificToSerial', 519 => 'DefaultsSpecificToSerial' }, 'defaultusercrop' => { 124 => 0xc7b5 }, 'defectisocode' => { 143 => 0x90f }, - 'defringe' => { 515 => 'Defringe', 517 => 'Defringe' }, - 'defringegreenamount' => { 515 => 'DefringeGreenAmount', 517 => 'DefringeGreenAmount' }, - 'defringegreenhuehi' => { 515 => 'DefringeGreenHueHi', 517 => 'DefringeGreenHueHi' }, - 'defringegreenhuelo' => { 515 => 'DefringeGreenHueLo', 517 => 'DefringeGreenHueLo' }, - 'defringepurpleamount' => { 515 => 'DefringePurpleAmount', 517 => 'DefringePurpleAmount' }, - 'defringepurplehuehi' => { 515 => 'DefringePurpleHueHi', 517 => 'DefringePurpleHueHi' }, - 'defringepurplehuelo' => { 515 => 'DefringePurpleHueLo', 517 => 'DefringePurpleHueLo' }, - 'dehaze' => { 515 => 'Dehaze', 517 => 'Dehaze' }, - 'deletedimagecount' => { 241 => 0xa6, 270 => 0x6e }, - 'deprecatedon' => { 513 => 'deprecatedOn' }, - 'depthbasedcorrcorrectionactive' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'] }, - 'depthbasedcorrcorrectionamount' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'] }, - 'depthbasedcorrcorrectionsyncid' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'] }, - 'depthbasedcorrections' => { 515 => 'DepthBasedCorrections', 517 => 'DepthBasedCorrections' }, - 'depthbasedcorrlocalcorrecteddepth' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'] }, - 'depthbasedcorrlocalcurverefinesaturation' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'] }, - 'depthbasedcorrmask' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'] }, - 'depthbasedcorrmaskalpha' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'] }, - 'depthbasedcorrmaskangle' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'] }, - 'depthbasedcorrmaskbottom' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'] }, - 'depthbasedcorrmaskcentervalue' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'] }, - 'depthbasedcorrmaskcenterweight' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'depthbasedcorrmaskdabs' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'] }, - 'depthbasedcorrmaskfeather' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'] }, - 'depthbasedcorrmaskflipped' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'] }, - 'depthbasedcorrmaskflow' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'] }, - 'depthbasedcorrmaskfullx' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'] }, - 'depthbasedcorrmaskfully' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'] }, - 'depthbasedcorrmaskinputdigest' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'] }, - 'depthbasedcorrmaskleft' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'] }, - 'depthbasedcorrmaskmaskactive' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'] }, - 'depthbasedcorrmaskmaskblendmode' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'depthbasedcorrmaskmaskdigest' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'depthbasedcorrmaskmaskinverted' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'depthbasedcorrmaskmaskname' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'] }, - 'depthbasedcorrmaskmasks' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'] }, - 'depthbasedcorrmaskmasksalpha' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'depthbasedcorrmaskmasksangle' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'depthbasedcorrmaskmasksbottom' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'depthbasedcorrmaskmaskscentervalue' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'depthbasedcorrmaskmaskscenterweight' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'depthbasedcorrmaskmasksdabs' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'depthbasedcorrmaskmasksfeather' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'depthbasedcorrmaskmasksflipped' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'depthbasedcorrmaskmasksflow' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'depthbasedcorrmaskmasksfullx' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'depthbasedcorrmaskmasksfully' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'depthbasedcorrmaskmasksinputdigest' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'depthbasedcorrmaskmasksleft' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'depthbasedcorrmaskmasksmaskactive' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'depthbasedcorrmaskmasksmaskblendmode' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'depthbasedcorrmaskmasksmaskdigest' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'depthbasedcorrmaskmasksmaskinverted' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'depthbasedcorrmaskmasksmaskname' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'depthbasedcorrmaskmasksmasksubtype' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'depthbasedcorrmaskmasksmasksyncid' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'depthbasedcorrmaskmasksmaskversion' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'depthbasedcorrmaskmasksmidpoint' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'depthbasedcorrmaskmasksorigin' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'depthbasedcorrmaskmasksperimetervalue' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'depthbasedcorrmaskmasksradius' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'depthbasedcorrmaskmasksreferencepoint' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'depthbasedcorrmaskmasksright' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'] }, - 'depthbasedcorrmaskmasksroundness' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'depthbasedcorrmaskmaskssizex' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'depthbasedcorrmaskmaskssizey' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'depthbasedcorrmaskmaskstop' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'] }, - 'depthbasedcorrmaskmasksubtype' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'depthbasedcorrmaskmasksvalue' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'depthbasedcorrmaskmasksversion' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'depthbasedcorrmaskmaskswhat' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'depthbasedcorrmaskmaskswholeimagearea' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'depthbasedcorrmaskmasksx' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'] }, - 'depthbasedcorrmaskmasksy' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'] }, - 'depthbasedcorrmaskmasksyncid' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'depthbasedcorrmaskmaskszerox' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'depthbasedcorrmaskmaskszeroy' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'depthbasedcorrmaskmaskversion' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'depthbasedcorrmaskmidpoint' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'] }, - 'depthbasedcorrmaskorigin' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'] }, - 'depthbasedcorrmaskperimetervalue' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'depthbasedcorrmaskradius' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'] }, - 'depthbasedcorrmaskrange' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'depthbasedcorrmaskrangeareamodels' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'depthbasedcorrmaskrangeareamodelscolorsampleinfo' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'depthbasedcorrmaskrangeareamodelscomponents' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'depthbasedcorrmaskrangecoloramount' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'depthbasedcorrmaskrangedepthfeather' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'depthbasedcorrmaskrangedepthmax' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'depthbasedcorrmaskrangedepthmin' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'depthbasedcorrmaskrangeinvert' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'depthbasedcorrmaskrangelumfeather' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'depthbasedcorrmaskrangeluminancedepthsampleinfo' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'depthbasedcorrmaskrangelummax' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'depthbasedcorrmaskrangelummin' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'depthbasedcorrmaskrangelumrange' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'depthbasedcorrmaskrangesampletype' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'depthbasedcorrmaskrangetype' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'depthbasedcorrmaskrangeversion' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'depthbasedcorrmaskreferencepoint' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'depthbasedcorrmaskright' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'] }, - 'depthbasedcorrmaskroundness' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'] }, - 'depthbasedcorrmasksizex' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'] }, - 'depthbasedcorrmasksizey' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'] }, - 'depthbasedcorrmasktop' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'] }, - 'depthbasedcorrmaskvalue' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'] }, - 'depthbasedcorrmaskversion' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'] }, - 'depthbasedcorrmaskwhat' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'] }, - 'depthbasedcorrmaskwholeimagearea' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'depthbasedcorrmaskx' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'] }, - 'depthbasedcorrmasky' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'] }, - 'depthbasedcorrmaskzerox' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'] }, - 'depthbasedcorrmaskzeroy' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'] }, - 'depthbasedcorrwhat' => { 515 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'], 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'] }, + 'defringe' => { 517 => 'Defringe', 519 => 'Defringe' }, + 'defringegreenamount' => { 517 => 'DefringeGreenAmount', 519 => 'DefringeGreenAmount' }, + 'defringegreenhuehi' => { 517 => 'DefringeGreenHueHi', 519 => 'DefringeGreenHueHi' }, + 'defringegreenhuelo' => { 517 => 'DefringeGreenHueLo', 519 => 'DefringeGreenHueLo' }, + 'defringepurpleamount' => { 517 => 'DefringePurpleAmount', 519 => 'DefringePurpleAmount' }, + 'defringepurplehuehi' => { 517 => 'DefringePurpleHueHi', 519 => 'DefringePurpleHueHi' }, + 'defringepurplehuelo' => { 517 => 'DefringePurpleHueLo', 519 => 'DefringePurpleHueLo' }, + 'dehaze' => { 517 => 'Dehaze', 519 => 'Dehaze' }, + 'deletedimagecount' => { 241 => 0xa6, 271 => 0x6e }, + 'deprecatedon' => { 515 => 'deprecatedOn' }, + 'depthbasedcorrcorrectionactive' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionActive'] }, + 'depthbasedcorrcorrectionamount' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionAmount'] }, + 'depthbasedcorrcorrectionsyncid' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionSyncID'] }, + 'depthbasedcorrections' => { 517 => 'DepthBasedCorrections', 519 => 'DepthBasedCorrections' }, + 'depthbasedcorrlocalcorrecteddepth' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCorrectedDepth'] }, + 'depthbasedcorrlocalcurverefinesaturation' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsLocalCurveRefineSaturation'] }, + 'depthbasedcorrmask' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasks'] }, + 'depthbasedcorrmaskalpha' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAlpha'] }, + 'depthbasedcorrmaskangle' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksAngle'] }, + 'depthbasedcorrmaskbottom' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksBottom'] }, + 'depthbasedcorrmaskcentervalue' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterValue'] }, + 'depthbasedcorrmaskcenterweight' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'depthbasedcorrmaskdabs' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksDabs'] }, + 'depthbasedcorrmaskfeather' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFeather'] }, + 'depthbasedcorrmaskflipped' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlipped'] }, + 'depthbasedcorrmaskflow' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFlow'] }, + 'depthbasedcorrmaskfullx' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullX'] }, + 'depthbasedcorrmaskfully' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksFullY'] }, + 'depthbasedcorrmaskinputdigest' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksInputDigest'] }, + 'depthbasedcorrmaskleft' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksLeft'] }, + 'depthbasedcorrmaskmaskactive' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskActive'] }, + 'depthbasedcorrmaskmaskblendmode' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'depthbasedcorrmaskmaskdigest' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'depthbasedcorrmaskmaskinverted' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'depthbasedcorrmaskmaskname' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskName'] }, + 'depthbasedcorrmaskmasks' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasks'] }, + 'depthbasedcorrmaskmasksalpha' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'depthbasedcorrmaskmasksangle' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'depthbasedcorrmaskmasksbottom' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'depthbasedcorrmaskmaskscentervalue' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'depthbasedcorrmaskmaskscenterweight' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'depthbasedcorrmaskmasksdabs' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'depthbasedcorrmaskmasksfeather' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'depthbasedcorrmaskmasksflipped' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'depthbasedcorrmaskmasksflow' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'depthbasedcorrmaskmasksfullx' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'depthbasedcorrmaskmasksfully' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'depthbasedcorrmaskmasksinputdigest' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'depthbasedcorrmaskmasksleft' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'depthbasedcorrmaskmasksmaskactive' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'depthbasedcorrmaskmasksmaskblendmode' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'depthbasedcorrmaskmasksmaskdigest' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'depthbasedcorrmaskmasksmaskinverted' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'depthbasedcorrmaskmasksmaskname' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'depthbasedcorrmaskmasksmasksubtype' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'depthbasedcorrmaskmasksmasksyncid' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'depthbasedcorrmaskmasksmaskversion' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'depthbasedcorrmaskmasksmidpoint' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'depthbasedcorrmaskmasksorigin' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'depthbasedcorrmaskmasksperimetervalue' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'depthbasedcorrmaskmasksradius' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'depthbasedcorrmaskmasksreferencepoint' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'depthbasedcorrmaskmasksright' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRight'] }, + 'depthbasedcorrmaskmasksroundness' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'depthbasedcorrmaskmaskssizex' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'depthbasedcorrmaskmaskssizey' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'depthbasedcorrmaskmaskstop' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksTop'] }, + 'depthbasedcorrmaskmasksubtype' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'depthbasedcorrmaskmasksvalue' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'depthbasedcorrmaskmasksversion' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'depthbasedcorrmaskmaskswhat' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'depthbasedcorrmaskmaskswholeimagearea' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'depthbasedcorrmaskmasksx' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksX'] }, + 'depthbasedcorrmaskmasksy' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksY'] }, + 'depthbasedcorrmaskmasksyncid' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'depthbasedcorrmaskmaskszerox' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'depthbasedcorrmaskmaskszeroy' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'depthbasedcorrmaskmaskversion' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'depthbasedcorrmaskmidpoint' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMidpoint'] }, + 'depthbasedcorrmaskorigin' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksOrigin'] }, + 'depthbasedcorrmaskperimetervalue' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'depthbasedcorrmaskradius' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRadius'] }, + 'depthbasedcorrmaskrange' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'depthbasedcorrmaskrangeareamodels' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'depthbasedcorrmaskrangeareamodelscolorsampleinfo' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'depthbasedcorrmaskrangeareamodelscomponents' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'depthbasedcorrmaskrangecoloramount' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'depthbasedcorrmaskrangedepthfeather' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'depthbasedcorrmaskrangedepthmax' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'depthbasedcorrmaskrangedepthmin' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'depthbasedcorrmaskrangeinvert' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'depthbasedcorrmaskrangelumfeather' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'depthbasedcorrmaskrangeluminancedepthsampleinfo' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'depthbasedcorrmaskrangelummax' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'depthbasedcorrmaskrangelummin' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'depthbasedcorrmaskrangelumrange' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'depthbasedcorrmaskrangesampletype' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'depthbasedcorrmaskrangetype' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'depthbasedcorrmaskrangeversion' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'depthbasedcorrmaskreferencepoint' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'depthbasedcorrmaskright' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRight'] }, + 'depthbasedcorrmaskroundness' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksRoundness'] }, + 'depthbasedcorrmasksizex' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeX'] }, + 'depthbasedcorrmasksizey' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksSizeY'] }, + 'depthbasedcorrmasktop' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksTop'] }, + 'depthbasedcorrmaskvalue' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksMaskValue'] }, + 'depthbasedcorrmaskversion' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksVersion'] }, + 'depthbasedcorrmaskwhat' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWhat'] }, + 'depthbasedcorrmaskwholeimagearea' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'depthbasedcorrmaskx' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksX'] }, + 'depthbasedcorrmasky' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksY'] }, + 'depthbasedcorrmaskzerox' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroX'] }, + 'depthbasedcorrmaskzeroy' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsCorrectionMasksZeroY'] }, + 'depthbasedcorrwhat' => { 517 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'], 519 => [\'DepthBasedCorrections','DepthBasedCorrectionsWhat'] }, 'depthfar' => { 124 => 0xc7eb }, 'depthformat' => { 124 => 0xc7e9 }, - 'depthimage' => { 500 => 'Data' }, - 'depthmapinfo' => { 515 => 'DepthMapInfo', 517 => 'DepthMapInfo' }, - 'depthmapinfobasehighlightguideinputdigest' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'], 517 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'] }, - 'depthmapinfobasehighlightguidetable' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'], 517 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'] }, - 'depthmapinfobasehighlightguideversion' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'], 517 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'] }, - 'depthmapinfobaselayereddepthinputdigest' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'], 517 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'] }, - 'depthmapinfobaselayereddepthtable' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'], 517 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'] }, - 'depthmapinfobaselayereddepthversion' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'], 517 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'] }, - 'depthmapinfobaserawdepthinputdigest' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'], 517 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'] }, - 'depthmapinfobaserawdepthtable' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'], 517 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'] }, - 'depthmapinfobaserawdepthversion' => { 515 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'], 517 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'] }, - 'depthmapinfodepthsource' => { 515 => [\'DepthMapInfo','DepthMapInfoDepthSource'], 517 => [\'DepthMapInfo','DepthMapInfoDepthSource'] }, + 'depthimage' => { 502 => 'Data' }, + 'depthmapinfo' => { 517 => 'DepthMapInfo', 519 => 'DepthMapInfo' }, + 'depthmapinfobasehighlightguideinputdigest' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'], 519 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideInputDigest'] }, + 'depthmapinfobasehighlightguidetable' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'], 519 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideTable'] }, + 'depthmapinfobasehighlightguideversion' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'], 519 => [\'DepthMapInfo','DepthMapInfoBaseHighlightGuideVersion'] }, + 'depthmapinfobaselayereddepthinputdigest' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'], 519 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthInputDigest'] }, + 'depthmapinfobaselayereddepthtable' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'], 519 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthTable'] }, + 'depthmapinfobaselayereddepthversion' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'], 519 => [\'DepthMapInfo','DepthMapInfoBaseLayeredDepthVersion'] }, + 'depthmapinfobaserawdepthinputdigest' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'], 519 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthInputDigest'] }, + 'depthmapinfobaserawdepthtable' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'], 519 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthTable'] }, + 'depthmapinfobaserawdepthversion' => { 517 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'], 519 => [\'DepthMapInfo','DepthMapInfoBaseRawDepthVersion'] }, + 'depthmapinfodepthsource' => { 517 => [\'DepthMapInfo','DepthMapInfoDepthSource'], 519 => [\'DepthMapInfo','DepthMapInfoDepthSource'] }, 'depthmeasuretype' => { 124 => 0xc7ed }, 'depthnear' => { 124 => 0xc7ea }, 'depthunits' => { 124 => 0xc7ec }, - 'derivedfrom' => { 545 => 'DerivedFrom' }, - 'derivedfromalternatepaths' => { 545 => [\'DerivedFrom','DerivedFromAlternatePaths'] }, - 'derivedfromdocumentid' => { 545 => [\'DerivedFrom','DerivedFromDocumentID'] }, - 'derivedfromfilepath' => { 545 => [\'DerivedFrom','DerivedFromFilePath'] }, - 'derivedfromfrompart' => { 545 => [\'DerivedFrom','DerivedFromFromPart'] }, - 'derivedfrominstanceid' => { 545 => [\'DerivedFrom','DerivedFromInstanceID'] }, - 'derivedfromlastmodifydate' => { 545 => [\'DerivedFrom','DerivedFromLastModifyDate'] }, - 'derivedfromlasturl' => { 545 => [\'DerivedFrom','DerivedFromLastURL'] }, - 'derivedfromlinkcategory' => { 545 => [\'DerivedFrom','DerivedFromLinkCategory'] }, - 'derivedfromlinkform' => { 545 => [\'DerivedFrom','DerivedFromLinkForm'] }, - 'derivedfrommanager' => { 545 => [\'DerivedFrom','DerivedFromManager'] }, - 'derivedfrommanagervariant' => { 545 => [\'DerivedFrom','DerivedFromManagerVariant'] }, - 'derivedfrommanageto' => { 545 => [\'DerivedFrom','DerivedFromManageTo'] }, - 'derivedfrommanageui' => { 545 => [\'DerivedFrom','DerivedFromManageUI'] }, - 'derivedfrommaskmarkers' => { 545 => [\'DerivedFrom','DerivedFromMaskMarkers'] }, - 'derivedfromoriginaldocumentid' => { 545 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] }, - 'derivedfrompartmapping' => { 545 => [\'DerivedFrom','DerivedFromPartMapping'] }, - 'derivedfromplacedresolutionunit' => { 545 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] }, - 'derivedfromplacedxresolution' => { 545 => [\'DerivedFrom','DerivedFromPlacedXResolution'] }, - 'derivedfromplacedyresolution' => { 545 => [\'DerivedFrom','DerivedFromPlacedYResolution'] }, - 'derivedfromrenditionclass' => { 545 => [\'DerivedFrom','DerivedFromRenditionClass'] }, - 'derivedfromrenditionparams' => { 545 => [\'DerivedFrom','DerivedFromRenditionParams'] }, - 'derivedfromtopart' => { 545 => [\'DerivedFrom','DerivedFromToPart'] }, - 'derivedfromversionid' => { 545 => [\'DerivedFrom','DerivedFromVersionID'] }, - 'description' => { 184 => 'Description', 339 => 'Description', 403 => ['desc','dscp',"\xa9des"], 405 => 'description', 411 => 'dscp', 515 => 'Description', 517 => 'Description', 518 => 'description', 542 => 'Description' }, + 'derivedfrom' => { 547 => 'DerivedFrom' }, + 'derivedfromalternatepaths' => { 547 => [\'DerivedFrom','DerivedFromAlternatePaths'] }, + 'derivedfromdocumentid' => { 547 => [\'DerivedFrom','DerivedFromDocumentID'] }, + 'derivedfromfilepath' => { 547 => [\'DerivedFrom','DerivedFromFilePath'] }, + 'derivedfromfrompart' => { 547 => [\'DerivedFrom','DerivedFromFromPart'] }, + 'derivedfrominstanceid' => { 547 => [\'DerivedFrom','DerivedFromInstanceID'] }, + 'derivedfromlastmodifydate' => { 547 => [\'DerivedFrom','DerivedFromLastModifyDate'] }, + 'derivedfromlasturl' => { 547 => [\'DerivedFrom','DerivedFromLastURL'] }, + 'derivedfromlinkcategory' => { 547 => [\'DerivedFrom','DerivedFromLinkCategory'] }, + 'derivedfromlinkform' => { 547 => [\'DerivedFrom','DerivedFromLinkForm'] }, + 'derivedfrommanager' => { 547 => [\'DerivedFrom','DerivedFromManager'] }, + 'derivedfrommanagervariant' => { 547 => [\'DerivedFrom','DerivedFromManagerVariant'] }, + 'derivedfrommanageto' => { 547 => [\'DerivedFrom','DerivedFromManageTo'] }, + 'derivedfrommanageui' => { 547 => [\'DerivedFrom','DerivedFromManageUI'] }, + 'derivedfrommaskmarkers' => { 547 => [\'DerivedFrom','DerivedFromMaskMarkers'] }, + 'derivedfromoriginaldocumentid' => { 547 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] }, + 'derivedfrompartmapping' => { 547 => [\'DerivedFrom','DerivedFromPartMapping'] }, + 'derivedfromplacedresolutionunit' => { 547 => [\'DerivedFrom','DerivedFromPlacedResolutionUnit'] }, + 'derivedfromplacedxresolution' => { 547 => [\'DerivedFrom','DerivedFromPlacedXResolution'] }, + 'derivedfromplacedyresolution' => { 547 => [\'DerivedFrom','DerivedFromPlacedYResolution'] }, + 'derivedfromrenditionclass' => { 547 => [\'DerivedFrom','DerivedFromRenditionClass'] }, + 'derivedfromrenditionparams' => { 547 => [\'DerivedFrom','DerivedFromRenditionParams'] }, + 'derivedfromtopart' => { 547 => [\'DerivedFrom','DerivedFromToPart'] }, + 'derivedfromversionid' => { 547 => [\'DerivedFrom','DerivedFromVersionID'] }, + 'description' => { 184 => 'Description', 341 => 'Description', 405 => ['desc','dscp',"\xa9des"], 407 => 'description', 413 => 'dscp', 517 => 'Description', 519 => 'Description', 520 => 'description', 544 => 'Description' }, 'destination' => { 137 => 0x5 }, - 'destinationcity' => { 386 => 0x24, 392 => 0x3 }, - 'destinationcitycode' => { 393 => 0x1001 }, - 'destinationdst' => { 386 => 0x26, 392 => '0.3' }, + 'destinationcity' => { 388 => 0x24, 394 => 0x3 }, + 'destinationcitycode' => { 395 => 0x1001 }, + 'destinationdst' => { 388 => 0x26, 394 => '0.3' }, 'developmentdynamicrange' => { 132 => 0x1403 }, 'deviantmatrixcustom' => { 143 => 0x7de }, 'deviantmatrixdaylight' => { 143 => 0x7da }, @@ -2480,137 +2482,137 @@ my %tagLookup = ( 'deviantwhiteflash' => { 143 => 0x841 }, 'deviantwhitefluorescent' => { 143 => 0x840 }, 'deviantwhitetungsten' => { 143 => 0x83f }, - 'device' => { 534 => 'device' }, - 'devicesettingdescription' => { 521 => 'DeviceSettingDescription' }, - 'devicesettingdescriptioncolumns' => { 521 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] }, - 'devicesettingdescriptionrows' => { 521 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] }, - 'devicesettingdescriptionsettings' => { 521 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] }, - 'devicetype' => { 425 => 0x2 }, + 'device' => { 536 => 'device' }, + 'devicesettingdescription' => { 523 => 'DeviceSettingDescription' }, + 'devicesettingdescriptioncolumns' => { 523 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] }, + 'devicesettingdescriptionrows' => { 523 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] }, + 'devicesettingdescriptionsettings' => { 523 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] }, + 'devicetype' => { 427 => 0x2 }, 'dewarpdata' => { 121 => 'DewarpData' }, 'dewarpflag' => { 121 => 'DewarpFlag' }, 'dialdirectiontvav' => { 89 => 0x706 }, - 'dietaryneeds' => { 536 => 'dietaryNeeds' }, - 'diffractioncompensation' => { 230 => 0x20e, 245 => 0x142, 246 => 0x1b2, 247 => 0x1b2, 248 => 0x1a2, 249 => 0x1b6, 250 => 0x1b6 }, - 'diffractioncorrection' => { 350 => 0xbc, 375 => 0x3 }, + 'dietaryneeds' => { 538 => 'dietaryNeeds' }, + 'diffractioncompensation' => { 230 => 0x20e, 245 => 0x2ce, 246 => 0x142, 247 => 0x1b2, 248 => 0x1b2, 249 => 0x1a2, 250 => 0x1b6, 251 => 0x1b6 }, + 'diffractioncorrection' => { 352 => 0xbc, 377 => 0x3 }, 'diffractioncorrectionon' => { 108 => 0x2070b }, 'digitalcreationdate' => { 136 => 0x3e }, 'digitalcreationtime' => { 136 => 0x3f }, - 'digitaldeehighlightadj' => { 265 => 0x202 }, - 'digitaldeeshadowadj' => { 265 => 0x200 }, - 'digitaldeethreshold' => { 265 => 0x201 }, - 'digitalfilter' => { 428 => 0x59 }, - 'digitalfilter01' => { 372 => 0x5 }, - 'digitalfilter02' => { 372 => 0x16 }, - 'digitalfilter03' => { 372 => 0x27 }, - 'digitalfilter04' => { 372 => 0x38 }, - 'digitalfilter05' => { 372 => 0x49 }, - 'digitalfilter06' => { 372 => 0x5a }, - 'digitalfilter07' => { 372 => 0x6b }, - 'digitalfilter08' => { 372 => 0x7c }, - 'digitalfilter09' => { 372 => 0x8d }, - 'digitalfilter10' => { 372 => 0x9e }, - 'digitalfilter11' => { 372 => 0xaf }, - 'digitalfilter12' => { 372 => 0xc0 }, - 'digitalfilter13' => { 372 => 0xd1 }, - 'digitalfilter14' => { 372 => 0xe2 }, - 'digitalfilter15' => { 372 => 0xf3 }, - 'digitalfilter16' => { 372 => 0x104 }, - 'digitalfilter17' => { 372 => 0x115 }, - 'digitalfilter18' => { 372 => 0x126 }, - 'digitalfilter19' => { 372 => 0x137 }, - 'digitalfilter20' => { 372 => 0x148 }, + 'digitaldeehighlightadj' => { 266 => 0x202 }, + 'digitaldeeshadowadj' => { 266 => 0x200 }, + 'digitaldeethreshold' => { 266 => 0x201 }, + 'digitalfilter' => { 430 => 0x59 }, + 'digitalfilter01' => { 374 => 0x5 }, + 'digitalfilter02' => { 374 => 0x16 }, + 'digitalfilter03' => { 374 => 0x27 }, + 'digitalfilter04' => { 374 => 0x38 }, + 'digitalfilter05' => { 374 => 0x49 }, + 'digitalfilter06' => { 374 => 0x5a }, + 'digitalfilter07' => { 374 => 0x6b }, + 'digitalfilter08' => { 374 => 0x7c }, + 'digitalfilter09' => { 374 => 0x8d }, + 'digitalfilter10' => { 374 => 0x9e }, + 'digitalfilter11' => { 374 => 0xaf }, + 'digitalfilter12' => { 374 => 0xc0 }, + 'digitalfilter13' => { 374 => 0xd1 }, + 'digitalfilter14' => { 374 => 0xe2 }, + 'digitalfilter15' => { 374 => 0xf3 }, + 'digitalfilter16' => { 374 => 0x104 }, + 'digitalfilter17' => { 374 => 0x115 }, + 'digitalfilter18' => { 374 => 0x126 }, + 'digitalfilter19' => { 374 => 0x137 }, + 'digitalfilter20' => { 374 => 0x148 }, 'digitalgain' => { 78 => 0xb }, 'digitalgem' => { 225 => 0x0 }, - 'digitalice' => { 265 => 0x100 }, - 'digitalimageguid' => { 529 => 'DigImageGUID' }, + 'digitalice' => { 266 => 0x100 }, + 'digitalimageguid' => { 531 => 'DigImageGUID' }, 'digitallensoptimizer' => { 66 => 0xa }, 'digitallensoptimizersetting' => { 84 => 0x9 }, - 'digitalroc' => { 262 => 0x0 }, - 'digitalsourcefiletype' => { 529 => 'DigitalSourcefileType' }, - 'digitalsourcetype' => { 529 => 'DigitalSourceType' }, - 'digitalzoom' => { 36 => 0xc, 117 => 0xa, 132 => 0x1044, 145 => 0x68, 156 => 0x22, 157 => 0x1e, 161 => 'DigitalZoom', 186 => 0xc, 241 => 0x86, 288 => 0xa, 331 => 0x204, 386 => 0x1e, 393 => 0xa, 427 => 0x204, 475 => 0x12, 476 => 0x12 }, - 'digitalzoomon' => { 427 => 0x21b }, - 'digitalzoomratio' => { 124 => 0xa404, 463 => 0x200, 465 => 0x21c, 521 => 'DigitalZoomRatio' }, - 'director' => { 184 => 'WM/Director', 403 => "\xa9dir", 405 => 'director', 411 => "\xa9dir", 544 => 'director' }, - 'directorphotography' => { 544 => 'directorPhotography' }, + 'digitalroc' => { 263 => 0x0 }, + 'digitalsourcefiletype' => { 531 => 'DigitalSourcefileType' }, + 'digitalsourcetype' => { 531 => 'DigitalSourceType' }, + 'digitalzoom' => { 36 => 0xc, 117 => 0xa, 132 => 0x1044, 145 => 0x68, 156 => 0x22, 157 => 0x1e, 161 => 'DigitalZoom', 186 => 0xc, 241 => 0x86, 289 => 0xa, 333 => 0x204, 388 => 0x1e, 395 => 0xa, 429 => 0x204, 477 => 0x12, 478 => 0x12 }, + 'digitalzoomon' => { 429 => 0x21b }, + 'digitalzoomratio' => { 124 => 0xa404, 465 => 0x200, 467 => 0x21c, 523 => 'DigitalZoomRatio' }, + 'director' => { 184 => 'WM/Director', 405 => "\xa9dir", 407 => 'director', 413 => "\xa9dir", 546 => 'director' }, + 'directorphotography' => { 546 => 'directorPhotography' }, 'directory' => { 125 => 'Directory' }, 'directoryindex' => { 7 => 0x137, 9 => 0x2dc, 11 => 0x17e, 13 => 0x238, 14 => 0x13f, 15 => 0x133, 16 => 0x1df, 17 => 0x1a7, 18 => 0x1f0, 19 => 0xcc, 20 => 0x1c7, 21 => 0x298, 22 => 0x1e7, 23 => 0x1e5, 24 => [0x27c,0x280], 25 => 0x2b6, 26 => 0x2bf, 28 => 0x1f7, 29 => 0x4ba, 30 => 0xb21 }, 'directoryindex2' => { 21 => 0x29c }, - 'directoryitem' => { 498 => [\'Directory','DirectoryItem'] }, - 'directoryitemlabel' => { 498 => [\'Directory','DirectoryItemLabel'] }, - 'directoryitemlength' => { 498 => [\'Directory','DirectoryItemLength'] }, - 'directoryitemmime' => { 498 => [\'Directory','DirectoryItemMime'] }, - 'directoryitempadding' => { 498 => [\'Directory','DirectoryItemPadding'] }, - 'directoryitemsemantic' => { 498 => [\'Directory','DirectoryItemSemantic'] }, - 'directoryitemuri' => { 498 => [\'Directory','DirectoryItemURI'] }, - 'directorynumber' => { 218 => 0x3, 414 => 0x12 }, - 'disableautocreation' => { 497 => 'DisableAutoCreation' }, - 'disablesuggestedaction' => { 497 => 'DisableSuggestedAction' }, - 'disclaimer' => { 339 => 'Disclaimer' }, - 'discnumber' => { 544 => 'discNumber' }, - 'dishtype' => { 536 => 'dishType' }, - 'disknumber' => { 403 => 'disk' }, - 'dispbutton' => { 250 => 0x7d4, 322 => 0x2ab }, + 'directoryitem' => { 500 => [\'Directory','DirectoryItem'] }, + 'directoryitemlabel' => { 500 => [\'Directory','DirectoryItemLabel'] }, + 'directoryitemlength' => { 500 => [\'Directory','DirectoryItemLength'] }, + 'directoryitemmime' => { 500 => [\'Directory','DirectoryItemMime'] }, + 'directoryitempadding' => { 500 => [\'Directory','DirectoryItemPadding'] }, + 'directoryitemsemantic' => { 500 => [\'Directory','DirectoryItemSemantic'] }, + 'directoryitemuri' => { 500 => [\'Directory','DirectoryItemURI'] }, + 'directorynumber' => { 218 => 0x3, 416 => 0x12 }, + 'disableautocreation' => { 499 => 'DisableAutoCreation' }, + 'disablesuggestedaction' => { 499 => 'DisableSuggestedAction' }, + 'disclaimer' => { 341 => 'Disclaimer' }, + 'discnumber' => { 546 => 'discNumber' }, + 'dishtype' => { 538 => 'dishType' }, + 'disknumber' => { 405 => 'disk' }, + 'dispbutton' => { 251 => 0x7d4, 324 => 0x2ab }, 'displayallafpoints' => { 89 => 0x514 }, 'displayaperture' => { 36 => 0x23 }, - 'displayedunitsx' => { 401 => 0x2 }, - 'displayedunitsy' => { 401 => 0x6 }, - 'displayname' => { 405 => 'displayname', 533 => 'displayName' }, + 'displayedunitsx' => { 403 => 0x2 }, + 'displayedunitsy' => { 403 => 0x6 }, + 'displayname' => { 407 => 'displayname', 535 => 'displayName' }, 'distance1' => { 145 => 0x28 }, 'distance2' => { 145 => 0x2c }, 'distance3' => { 145 => 0x30 }, 'distance4' => { 145 => 0x34 }, - 'distortion' => { 425 => 0xa050 }, - 'distortioncompensation' => { 489 => 0x8040 }, - 'distortioncontrol' => { 270 => 0x10 }, - 'distortioncorrection' => { 83 => 0x3, 108 => 0x20705, 114 => 0x67, 124 => 0x7036, 216 => 0x4, 326 => 0x50b, 354 => '7.1', 375 => 0x0, 483 => 0x601, 484 => 0x5b }, - 'distortioncorrection2' => { 330 => 0x1011 }, - 'distortioncorrectionalreadyapplied' => { 512 => 'DistortionCorrectionAlreadyApplied' }, + 'distortion' => { 427 => 0xa050 }, + 'distortioncompensation' => { 491 => 0x8040 }, + 'distortioncontrol' => { 271 => 0x10 }, + 'distortioncorrection' => { 83 => 0x3, 108 => 0x20705, 114 => 0x67, 124 => 0x7036, 216 => 0x4, 328 => 0x50b, 356 => '7.1', 377 => 0x0, 485 => 0x601, 486 => 0x5b }, + 'distortioncorrection2' => { 332 => 0x1011 }, + 'distortioncorrectionalreadyapplied' => { 514 => 'DistortionCorrectionAlreadyApplied' }, 'distortioncorrectionon' => { 108 => '0x20705.0', 114 => 0x63 }, - 'distortioncorrectionsetting' => { 84 => 0x7, 452 => 0x2013 }, + 'distortioncorrectionsetting' => { 84 => 0x7, 454 => 0x2013 }, 'distortioncorrectionvalue' => { 83 => 0x9 }, 'distortioncorrectionversion' => { 216 => 0x0 }, - 'distortioncorrparams' => { 124 => 0x7037, 462 => 0x1a23, 465 => 0x1870, 467 => 0x189c, 468 => 0x18cc, 469 => 0x17d0, 483 => 0x6ca, 484 => 0x64 }, - 'distortioncorrparamsnumber' => { 465 => 0x1899, 467 => 0x18c5, 468 => 0x18f5, 469 => 0x17f9 }, - 'distortioncorrparamspresent' => { 465 => 0x1898, 467 => 0x18c4, 468 => 0x18f4, 469 => 0x17f8, 471 => 0x10b, 472 => 0x10b, 483 => 0x600, 484 => 0x5a }, + 'distortioncorrparams' => { 124 => 0x7037, 464 => 0x1a23, 467 => 0x1870, 469 => 0x189c, 470 => 0x18cc, 471 => 0x17d0, 485 => 0x6ca, 486 => 0x64 }, + 'distortioncorrparamsnumber' => { 467 => 0x1899, 469 => 0x18c5, 470 => 0x18f5, 471 => 0x17f9 }, + 'distortioncorrparamspresent' => { 467 => 0x1898, 469 => 0x18c4, 470 => 0x18f4, 471 => 0x17f8, 473 => 0x10b, 474 => 0x10b, 485 => 0x600, 486 => 0x5a }, 'distortioneffect' => { 108 => 0x20709 }, - 'distortionn' => { 354 => 0xc }, - 'distortionparam02' => { 354 => 0x2 }, - 'distortionparam04' => { 354 => 0x4 }, - 'distortionparam08' => { 354 => 0x8 }, - 'distortionparam09' => { 354 => 0x9 }, - 'distortionparam11' => { 354 => 0xb }, - 'distortionscale' => { 354 => 0x5 }, - 'distributor' => { 534 => 'distributor' }, - 'distributorproductid' => { 533 => 'distributorProductID' }, + 'distortionn' => { 356 => 0xc }, + 'distortionparam02' => { 356 => 0x2 }, + 'distortionparam04' => { 356 => 0x4 }, + 'distortionparam08' => { 356 => 0x8 }, + 'distortionparam09' => { 356 => 0x9 }, + 'distortionparam11' => { 356 => 0xb }, + 'distortionscale' => { 356 => 0x5 }, + 'distributor' => { 536 => 'distributor' }, + 'distributorproductid' => { 535 => 'distributorProductID' }, 'dloon' => { 108 => '0x20706.0', 114 => 0xdc }, 'dlosetting' => { 108 => 0x20706, 114 => 0xdd }, 'dlosettingapplied' => { 107 => 0x4 }, 'dloshootingdistance' => { 114 => 0xde }, 'dloversion' => { 107 => 0x5 }, - 'dmcomment' => { 544 => 'comment' }, + 'dmcomment' => { 546 => 'comment' }, 'dmdithermatrix' => { 143 => 0xc7a }, 'dmdithermatrixheight' => { 143 => 0xc7c }, 'dmdithermatrixwidth' => { 143 => 0xc7b }, 'dngadobedata' => { 124 => 0xc634 }, 'dngbackwardversion' => { 124 => 0xc613 }, - 'dngignoresidecars' => { 515 => 'DNGIgnoreSidecars', 517 => 'DNGIgnoreSidecars' }, + 'dngignoresidecars' => { 517 => 'DNGIgnoreSidecars', 519 => 'DNGIgnoreSidecars' }, 'dnglensinfo' => { 124 => 0xc630 }, 'dngprivatedata' => { 124 => 0xc634 }, 'dngversion' => { 124 => 0xc612 }, - 'document' => { 339 => 'Document' }, - 'documentancestors' => { 532 => 'DocumentAncestors' }, + 'document' => { 341 => 'Document' }, + 'documentancestors' => { 534 => 'DocumentAncestors' }, 'documenthistory' => { 136 => 0xe7 }, - 'documentid' => { 545 => 'DocumentID' }, + 'documentid' => { 547 => 'DocumentID' }, 'documentname' => { 124 => 0x10d }, 'documentnotes' => { 136 => 0xe6 }, - 'doi' => { 534 => 'doi' }, - 'dopesheet' => { 529 => 'Dopesheet' }, - 'dopesheetlink' => { 529 => 'DopesheetLink' }, - 'dopesheetlinklink' => { 529 => [\'DopesheetLink','DopesheetLinkLink'] }, - 'dopesheetlinklinkqualifier' => { 529 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] }, + 'doi' => { 536 => 'doi' }, + 'dopesheet' => { 531 => 'Dopesheet' }, + 'dopesheetlink' => { 531 => 'DopesheetLink' }, + 'dopesheetlinklink' => { 531 => [\'DopesheetLink','DopesheetLinkLink'] }, + 'dopesheetlinklinkqualifier' => { 531 => [\'DopesheetLink','DopesheetLinkLinkQualifier'] }, 'doublingmicrovolts' => { 143 => 0xc82 }, - 'dpp' => { 510 => 'dpp' }, + 'dpp' => { 512 => 'dpp' }, 'dprawbokehshift' => { 108 => 0x20b20 }, 'dprawbokehshiftarea' => { 108 => 0x20b21 }, 'dprawghostingreductionarea' => { 108 => 0x20b30 }, @@ -2620,342 +2622,342 @@ my %tagLookup = ( 'drangepriority' => { 132 => 0x1443 }, 'drangepriorityauto' => { 132 => 0x1444 }, 'drangepriorityfixed' => { 132 => 0x1445 }, - 'drivemode' => { 118 => 0x3103, 130 => '0.1', 186 => 0x6, 189 => 0x1e, 192 => 0xe, 196 => 0x64d0, 326 => 0x600, 386 => 0x34, 418 => 0x1002, 428 => 0x3, 438 => 0x4, 439 => 0x7e, 440 => 0x34 }, - 'drivemode2' => { 189 => 0xa, 366 => 0x7, 449 => 0xe, 457 => 0x1 }, - 'drivemodesetting' => { 440 => 0x4 }, + 'drivemode' => { 118 => 0x3103, 130 => '0.1', 186 => 0x6, 189 => 0x1e, 192 => 0xe, 196 => 0x64d0, 328 => 0x600, 388 => 0x34, 420 => 0x1002, 430 => 0x3, 440 => 0x4, 441 => 0x7e, 442 => 0x34 }, + 'drivemode2' => { 189 => 0xa, 368 => 0x7, 451 => 0xe, 459 => 0x1 }, + 'drivemodesetting' => { 442 => 0x4 }, 'drivespeed' => { 130 => '0.2' }, - 'dspfirmwareversion' => { 386 => 0x27 }, + 'dspfirmwareversion' => { 388 => 0x27 }, 'dualpixelraw' => { 66 => 0xb }, - 'duration' => { 71 => 0x6a, 160 => 'Duration', 174 => 'Duration', 536 => 'duration', 544 => 'duration' }, - 'durationscale' => { 544 => [\'duration','durationScale'] }, - 'durationvalue' => { 544 => [\'duration','durationValue'] }, + 'duration' => { 71 => 0x6a, 160 => 'Duration', 174 => 'Duration', 538 => 'duration', 546 => 'duration' }, + 'durationscale' => { 546 => [\'duration','durationScale'] }, + 'durationvalue' => { 546 => [\'duration','durationValue'] }, 'dustremovaldata' => { 68 => 0x97 }, - 'dxcropalert' => { 246 => 0x250, 247 => 0x250, 248 => 0x23c, 249 => 0x250, 250 => 0x250 }, - 'dynamicafarea' => { 306 => '1.4', 315 => '1.4' }, - 'dynamicafareasize' => { 246 => 0x254, 247 => 0x254, 248 => 0x240, 249 => 0x254, 250 => 0x254 }, - 'dynamicareaafassist' => { 322 => 0x18, 323 => 0x18, 324 => 0x18 }, - 'dynamicareaafdisplay' => { 307 => '46.1', 309 => '47.1', 310 => '47.1', 319 => '47.1', 320 => '47.1' }, + 'dxcropalert' => { 247 => 0x250, 248 => 0x250, 249 => 0x23c, 250 => 0x250, 251 => 0x250 }, + 'dynamicafarea' => { 307 => '1.4', 316 => '1.4' }, + 'dynamicafareasize' => { 245 => 0x370, 247 => 0x254, 248 => 0x254, 249 => 0x240, 250 => 0x254, 251 => 0x254 }, + 'dynamicareaafassist' => { 323 => 0x18, 324 => 0x18, 325 => 0x18, 326 => 0x18 }, + 'dynamicareaafdisplay' => { 308 => '46.1', 310 => '47.1', 311 => '47.1', 320 => '47.1', 321 => '47.1' }, 'dynamicrange' => { 132 => 0x1400 }, - 'dynamicrangeboost' => { 350 => 0xee }, - 'dynamicrangeexpansion' => { 386 => 0x69, 418 => 0x100e }, + 'dynamicrangeboost' => { 352 => 0xee }, + 'dynamicrangeexpansion' => { 388 => 0x69, 420 => 0x100e }, 'dynamicrangemax' => { 113 => 0x7c }, 'dynamicrangemin' => { 113 => 0x7a }, - 'dynamicrangeoptimizer' => { 189 => 0x15, 452 => [0xb025,0xb04f], 461 => 0x1144, 462 => [0x1144,0x324], 463 => [0x1120,0x300], 464 => [0x119c,0x37c], 465 => [0x1178,0x328], 466 => [0x1030,0x50], 467 => [0x228,0x50], 468 => [0x228,0x50], 469 => [0x21b,0x4e] }, - 'dynamicrangeoptimizerbracket' => { 449 => 0x2e }, - 'dynamicrangeoptimizerlevel' => { 438 => 0x19, 439 => 0x17, 440 => 0xd, 449 => 0x79, 457 => 0x5 }, - 'dynamicrangeoptimizermode' => { 192 => 0x15, 438 => 0x18, 439 => 0x16, 449 => [0x77,0x15] }, - 'dynamicrangeoptimizersetting' => { 189 => 0x27, 440 => 0xc, 457 => 0x4 }, + 'dynamicrangeoptimizer' => { 189 => 0x15, 454 => [0xb025,0xb04f], 463 => 0x1144, 464 => [0x1144,0x324], 465 => [0x1120,0x300], 466 => [0x119c,0x37c], 467 => [0x1178,0x328], 468 => [0x1030,0x50], 469 => [0x228,0x50], 470 => [0x228,0x50], 471 => [0x21b,0x4e] }, + 'dynamicrangeoptimizerbracket' => { 451 => 0x2e }, + 'dynamicrangeoptimizerlevel' => { 440 => 0x19, 441 => 0x17, 442 => 0xd, 451 => 0x79, 459 => 0x5 }, + 'dynamicrangeoptimizermode' => { 192 => 0x15, 440 => 0x18, 441 => 0x16, 451 => [0x77,0x15] }, + 'dynamicrangeoptimizersetting' => { 189 => 0x27, 442 => 0xc, 459 => 0x4 }, 'dynamicrangesetting' => { 132 => 0x1402 }, - 'e-dialinprogram' => { 366 => '1.3' }, + 'e-dialinprogram' => { 368 => '1.3' }, 'earliestageorloweststage' => { 123 => [\'GeologicalContext','GeologicalContextEarliestAgeOrLowestStage'] }, 'earliesteonorlowesteonothem' => { 123 => [\'GeologicalContext','GeologicalContextEarliestEonOrLowestEonothem'] }, 'earliestepochorlowestseries' => { 123 => [\'GeologicalContext','GeologicalContextEarliestEpochOrLowestSeries'] }, 'earliesteraorlowesterathem' => { 123 => [\'GeologicalContext','GeologicalContextEarliestEraOrLowestErathem'] }, 'earliestperiodorlowestsystem' => { 123 => [\'GeologicalContext','GeologicalContextEarliestPeriodOrLowestSystem'] }, - 'earthpos' => { 493 => 'EarthPos' }, - 'earthposaltitude' => { 493 => [\'EarthPos','EarthPosAltitude'] }, - 'earthposlatitude' => { 493 => [\'EarthPos','EarthPosLatitude'] }, - 'earthposlongitude' => { 493 => [\'EarthPos','EarthPosLongitude'] }, - 'earthposrotationw' => { 493 => [\'EarthPos','EarthPosRotationW'] }, - 'earthposrotationx' => { 493 => [\'EarthPos','EarthPosRotationX'] }, - 'earthposrotationy' => { 493 => [\'EarthPos','EarthPosRotationY'] }, - 'earthposrotationz' => { 493 => [\'EarthPos','EarthPosRotationZ'] }, - 'earthpostimestamp' => { 493 => [\'EarthPos','EarthPosTimestamp'] }, - 'easyexposurecomp' => { 321 => '6.1' }, - 'easyexposurecompensation' => { 306 => '6.4', 307 => '6.5', 309 => '6.3', 310 => '6.3', 314 => '5.1', 315 => '4.4', 316 => '5.2', 319 => '6.3', 320 => '6.3', 322 => 0x1d, 323 => 0x1d, 324 => 0x1d }, + 'earthpos' => { 495 => 'EarthPos' }, + 'earthposaltitude' => { 495 => [\'EarthPos','EarthPosAltitude'] }, + 'earthposlatitude' => { 495 => [\'EarthPos','EarthPosLatitude'] }, + 'earthposlongitude' => { 495 => [\'EarthPos','EarthPosLongitude'] }, + 'earthposrotationw' => { 495 => [\'EarthPos','EarthPosRotationW'] }, + 'earthposrotationx' => { 495 => [\'EarthPos','EarthPosRotationX'] }, + 'earthposrotationy' => { 495 => [\'EarthPos','EarthPosRotationY'] }, + 'earthposrotationz' => { 495 => [\'EarthPos','EarthPosRotationZ'] }, + 'earthpostimestamp' => { 495 => [\'EarthPos','EarthPosTimestamp'] }, + 'easyexposurecomp' => { 322 => '6.1' }, + 'easyexposurecompensation' => { 307 => '6.4', 308 => '6.5', 310 => '6.3', 311 => '6.3', 315 => '5.1', 316 => '4.4', 317 => '5.2', 320 => '6.3', 321 => '6.3', 323 => 0x1f, 324 => 0x1d, 325 => 0x1d, 326 => 0x1d }, 'easymode' => { 36 => 0xb }, 'edgemapslope' => { 143 => 0x930 }, 'edgemapx1' => { 143 => 0x931 }, 'edgemapx2' => { 143 => 0x932 }, 'edgemapx3' => { 143 => 0x934 }, 'edgemapx4' => { 143 => 0x935 }, - 'edgenoisereduction' => { 300 => 0x4, 489 => 0x8028 }, - 'edit1' => { 411 => "\xa9ed1" }, - 'edit2' => { 411 => "\xa9ed2" }, - 'edit3' => { 411 => "\xa9ed3" }, - 'edit4' => { 411 => "\xa9ed4" }, - 'edit5' => { 411 => "\xa9ed5" }, - 'edit6' => { 411 => "\xa9ed6" }, - 'edit7' => { 411 => "\xa9ed7" }, - 'edit8' => { 411 => "\xa9ed8" }, - 'edit9' => { 411 => "\xa9ed9" }, - 'edition' => { 534 => 'edition' }, + 'edgenoisereduction' => { 301 => 0x4, 491 => 0x8028 }, + 'edit1' => { 413 => "\xa9ed1" }, + 'edit2' => { 413 => "\xa9ed2" }, + 'edit3' => { 413 => "\xa9ed3" }, + 'edit4' => { 413 => "\xa9ed4" }, + 'edit5' => { 413 => "\xa9ed5" }, + 'edit6' => { 413 => "\xa9ed6" }, + 'edit7' => { 413 => "\xa9ed7" }, + 'edit8' => { 413 => "\xa9ed8" }, + 'edit9' => { 413 => "\xa9ed9" }, + 'edition' => { 536 => 'edition' }, 'editorialupdate' => { 136 => 0x8 }, - 'editstatus' => { 136 => 0x7, 398 => 'EditStatus', 510 => 'EditStatus' }, - 'editversionname' => { 299 => 0x3d136244 }, - 'effectivelv' => { 386 => 0x2d }, + 'editstatus' => { 136 => 0x7, 400 => 'EditStatus', 512 => 'EditStatus' }, + 'editversionname' => { 300 => 0x3d136244 }, + 'effectivelv' => { 388 => 0x2d }, 'effectivemaxaperture' => { 234 => 0x12, 235 => 0x13, 239 => 0x14 }, - 'eissn' => { 534 => 'eIssn' }, + 'eissn' => { 536 => 'eIssn' }, 'electricalblackcolumns' => { 143 => 0x1810 }, - 'electronicfront-curtainshutter' => { 309 => '5.2', 310 => '5.2', 319 => '5.3', 320 => '5.2' }, - 'electronicfrontcurtainshutter' => { 452 => 0x201a }, + 'electronicfront-curtainshutter' => { 310 => '5.2', 311 => '5.2', 320 => '5.3', 321 => '5.2' }, + 'electronicfrontcurtainshutter' => { 454 => 0x201a }, 'elevation' => { 170 => 'Elevation' }, 'email' => { 162 => 'EMail' }, - 'embargodate' => { 537 => 'embargoDate' }, - 'embdencrightsexpr' => { 529 => 'EmbdEncRightsExpr' }, - 'embeddedencodedrightsexpr' => { 529 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] }, - 'embeddedencodedrightsexprlangid' => { 529 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] }, - 'embeddedencodedrightsexprtype' => { 529 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] }, - 'embeddedxmpdigest' => { 532 => 'EmbeddedXMPDigest' }, + 'embargodate' => { 539 => 'embargoDate' }, + 'embdencrightsexpr' => { 531 => 'EmbdEncRightsExpr' }, + 'embeddedencodedrightsexpr' => { 531 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] }, + 'embeddedencodedrightsexprlangid' => { 531 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] }, + 'embeddedencodedrightsexprtype' => { 531 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] }, + 'embeddedxmpdigest' => { 534 => 'EmbeddedXMPDigest' }, 'emissivity' => { 126 => 0x3 }, - 'emptyslotrelease' => { 246 => 0x723, 247 => 0x733, 248 => 0x625, 249 => 0x655, 250 => 0x6bd }, + 'emptyslotrelease' => { 245 => 0x98c, 247 => 0x723, 248 => 0x733, 249 => 0x625, 250 => 0x655, 251 => 0x6bd }, 'enablechromanoisereduction' => { 143 => 0xe6e }, 'enablesharpening' => { 143 => 0x92e }, - 'encodedby' => { 184 => 'WM/EncodedBy', 403 => "\xa9enc" }, - 'encodedwith' => { 405 => 'Encoded_With' }, - 'encoder' => { 403 => "\xa9too", 405 => 'encoder', 411 => "\xa9too" }, - 'encoderid' => { 411 => "\xa9enc" }, + 'encodedby' => { 184 => 'WM/EncodedBy', 405 => "\xa9enc" }, + 'encodedwith' => { 407 => 'Encoded_With' }, + 'encoder' => { 405 => "\xa9too", 407 => 'encoder', 413 => "\xa9too" }, + 'encoderid' => { 413 => "\xa9enc" }, 'encodingtime' => { 184 => 'WM/EncodingTime' }, - 'encryptionkey' => { 425 => 0xa020 }, - 'endingpage' => { 534 => 'endingPage' }, - 'enduser' => { 336 => 'EndUser' }, - 'enduserid' => { 336 => [\'EndUser','EndUserEndUserID'] }, - 'endusername' => { 336 => [\'EndUser','EndUserEndUserName'] }, - 'energysavingmode' => { 246 => 0x746, 247 => 0x756, 248 => 0x648, 249 => 0x678, 250 => 0x6e0 }, - 'engineer' => { 544 => 'engineer' }, - 'enhancedarktones' => { 292 => 0x8 }, - 'enhancedenoisealreadyapplied' => { 512 => 'EnhanceDenoiseAlreadyApplied' }, - 'enhancedenoiselumaamount' => { 512 => 'EnhanceDenoiseLumaAmount' }, - 'enhancedenoiseversion' => { 512 => 'EnhanceDenoiseVersion' }, - 'enhancedetailsalreadyapplied' => { 512 => 'EnhanceDetailsAlreadyApplied' }, - 'enhancedetailsversion' => { 512 => 'EnhanceDetailsVersion' }, + 'encryptionkey' => { 427 => 0xa020 }, + 'endingpage' => { 536 => 'endingPage' }, + 'enduser' => { 338 => 'EndUser' }, + 'enduserid' => { 338 => [\'EndUser','EndUserEndUserID'] }, + 'endusername' => { 338 => [\'EndUser','EndUserEndUserName'] }, + 'energysavingmode' => { 245 => 0x992, 247 => 0x746, 248 => 0x756, 249 => 0x648, 250 => 0x678, 251 => 0x6e0 }, + 'engineer' => { 546 => 'engineer' }, + 'enhancedarktones' => { 293 => 0x8 }, + 'enhancedenoisealreadyapplied' => { 514 => 'EnhanceDenoiseAlreadyApplied' }, + 'enhancedenoiselumaamount' => { 514 => 'EnhanceDenoiseLumaAmount' }, + 'enhancedenoiseversion' => { 514 => 'EnhanceDenoiseVersion' }, + 'enhancedetailsalreadyapplied' => { 514 => 'EnhanceDetailsAlreadyApplied' }, + 'enhancedetailsversion' => { 514 => 'EnhanceDetailsVersion' }, 'enhancement' => { 117 => 0x16, 118 => 0x3016 }, 'enhanceparams' => { 124 => 0xc7ee }, - 'enhancer' => { 330 => 0x300 }, - 'enhancervalues' => { 330 => 0x301 }, - 'enhancesuperresolutionalreadyapplied' => { 512 => 'EnhanceSuperResolutionAlreadyApplied' }, - 'enhancesuperresolutionscale' => { 512 => 'EnhanceSuperResolutionScale' }, - 'enhancesuperresolutionversion' => { 512 => 'EnhanceSuperResolutionVersion' }, + 'enhancer' => { 332 => 0x300 }, + 'enhancervalues' => { 332 => 0x301 }, + 'enhancesuperresolutionalreadyapplied' => { 514 => 'EnhanceSuperResolutionAlreadyApplied' }, + 'enhancesuperresolutionscale' => { 514 => 'EnhanceSuperResolutionScale' }, + 'enhancesuperresolutionversion' => { 514 => 'EnhanceSuperResolutionVersion' }, 'envelopenumber' => { 137 => 0x28 }, 'envelopepriority' => { 137 => 0x3c }, 'enveloperecordversion' => { 137 => 0x0 }, - 'episode' => { 529 => 'Episode' }, - 'episodeglobaluniqueid' => { 403 => 'egid' }, - 'episodeidentifier' => { 529 => [\'Episode','EpisodeIdentifier'] }, - 'episodename' => { 529 => [\'Episode','EpisodeName'] }, - 'episodenumber' => { 529 => [\'Episode','EpisodeNumber'] }, - 'epsonimageheight' => { 331 => 0x20c }, - 'epsonimagewidth' => { 331 => 0x20b }, - 'epsonsoftware' => { 331 => 0x20d }, - 'equipmentinstitution' => { 492 => 'EquipmentInstitution' }, - 'equipmentmanufacturer' => { 492 => 'EquipmentManufacturer' }, - 'equipmentversion' => { 327 => 0x0 }, + 'episode' => { 531 => 'Episode' }, + 'episodeglobaluniqueid' => { 405 => 'egid' }, + 'episodeidentifier' => { 531 => [\'Episode','EpisodeIdentifier'] }, + 'episodename' => { 531 => [\'Episode','EpisodeName'] }, + 'episodenumber' => { 531 => [\'Episode','EpisodeNumber'] }, + 'epsonimageheight' => { 333 => 0x20c }, + 'epsonimagewidth' => { 333 => 0x20b }, + 'epsonsoftware' => { 333 => 0x20d }, + 'equipmentinstitution' => { 494 => 'EquipmentInstitution' }, + 'equipmentmanufacturer' => { 494 => 'EquipmentManufacturer' }, + 'equipmentversion' => { 329 => 0x0 }, 'ettlii' => { 89 => 0x304, 90 => 0xd, 91 => 0xe, 92 => 0x7, 93 => 0x7, 94 => 0xe }, - 'event' => { 495 => 'Event', 508 => 'Event', 529 => 'Event', 534 => 'event' }, - 'eventalias' => { 533 => 'eventAlias' }, + 'event' => { 497 => 'Event', 510 => 'Event', 531 => 'Event', 536 => 'event' }, + 'eventalias' => { 535 => 'eventAlias' }, 'eventdate' => { 123 => [\'Event','EventEventDate'] }, 'eventday' => { 123 => [\'Event','EventDay'] }, 'eventearliestdate' => { 123 => [\'Event','EventEarliestDate'] }, - 'eventend' => { 533 => 'eventEnd' }, + 'eventend' => { 535 => 'eventEnd' }, 'eventenddayofyear' => { 123 => [\'Event','EventEndDayOfYear'] }, 'eventfieldnotes' => { 123 => [\'Event','EventFieldNotes'] }, 'eventfieldnumber' => { 123 => [\'Event','EventFieldNumber'] }, 'eventhabitat' => { 123 => [\'Event','EventHabitat'] }, - 'eventid' => { 123 => [\'Event','EventEventID'], 529 => 'EventId' }, + 'eventid' => { 123 => [\'Event','EventEventID'], 531 => 'EventId' }, 'eventlatestdate' => { 123 => [\'Event','EventLatestDate'] }, 'eventmonth' => { 123 => [\'Event','EventMonth'] }, - 'eventnumber' => { 412 => 0x9, 413 => 0x37, 414 => 0x3a }, + 'eventnumber' => { 414 => 0x9, 415 => 0x37, 416 => 0x3a }, 'eventparenteventid' => { 123 => [\'Event','EventParentEventID'] }, 'eventremarks' => { 123 => [\'Event','EventEventRemarks'] }, 'eventsamplesizeunit' => { 123 => [\'Event','EventSampleSizeUnit'] }, 'eventsamplesizevalue' => { 123 => [\'Event','EventSampleSizeValue'] }, 'eventsamplingeffort' => { 123 => [\'Event','EventSamplingEffort'] }, 'eventsamplingprotocol' => { 123 => [\'Event','EventSamplingProtocol'] }, - 'eventstart' => { 533 => 'eventStart' }, + 'eventstart' => { 535 => 'eventStart' }, 'eventstartdayofyear' => { 123 => [\'Event','EventStartDayOfYear'] }, - 'eventsubtype' => { 533 => 'eventSubtype' }, + 'eventsubtype' => { 535 => 'eventSubtype' }, 'eventtime' => { 123 => [\'Event','EventEventTime'] }, - 'eventtype' => { 533 => 'eventType' }, + 'eventtype' => { 535 => 'eventType' }, 'eventverbatimeventdate' => { 123 => [\'Event','EventVerbatimEventDate'] }, 'eventyear' => { 123 => [\'Event','EventYear'] }, - 'evfgrid' => { 322 => 0x165, 323 => 0x165, 324 => 0x17d }, - 'evfimageframe' => { 322 => 0x164, 323 => 0x164, 324 => 0x17c }, - 'evfreleaseindicator' => { 322 => 0x24f, 323 => 0x24f, 324 => 0x267 }, - 'evfwarmdisplaybrightness' => { 322 => 0x24d, 323 => 0x24d, 324 => 0x265 }, - 'evfwarmdisplaymode' => { 322 => 0x24b, 323 => 0x24b, 324 => 0x263 }, - 'evsteps' => { 366 => '1.2', 368 => 0x0 }, - 'evstepsize' => { 311 => '5.1', 312 => '6.1', 313 => '6.1', 317 => '0.7' }, - 'exclusivecoverage' => { 505 => 'ExclusiveCoverage' }, - 'exclusivityenddate' => { 537 => 'exclusivityEndDate' }, + 'evfgrid' => { 323 => 0x15f, 324 => 0x165, 325 => 0x165, 326 => 0x17d }, + 'evfimageframe' => { 323 => 0x15e, 324 => 0x164, 325 => 0x164, 326 => 0x17c }, + 'evfreleaseindicator' => { 324 => 0x24f, 325 => 0x24f, 326 => 0x267 }, + 'evfwarmdisplaybrightness' => { 324 => 0x24d, 325 => 0x24d, 326 => 0x265 }, + 'evfwarmdisplaymode' => { 324 => 0x24b, 325 => 0x24b, 326 => 0x263 }, + 'evsteps' => { 368 => '1.2', 370 => 0x0 }, + 'evstepsize' => { 312 => '5.1', 313 => '6.1', 314 => '6.1', 318 => '0.7' }, + 'exclusivecoverage' => { 507 => 'ExclusiveCoverage' }, + 'exclusivityenddate' => { 539 => 'exclusivityEndDate' }, 'excursiontolerance' => { 138 => 0x82 }, - 'executiveproducer' => { 403 => "\xa9xpd" }, + 'executiveproducer' => { 405 => "\xa9xpd" }, 'exif' => { 125 => 'EXIF' }, 'exifbyteorder' => { 125 => 'ExifByteOrder' }, 'exifcamerainfo' => { 136 => 0xe8 }, - 'exifimageheight' => { 124 => 0xa003, 521 => 'PixelYDimension' }, - 'exifimagewidth' => { 124 => 0xa002, 521 => 'PixelXDimension' }, + 'exifimageheight' => { 124 => 0xa003, 523 => 'PixelYDimension' }, + 'exifimagewidth' => { 124 => 0xa002, 523 => 'PixelXDimension' }, 'exifunicodebyteorder' => { 125 => 'ExifUnicodeByteOrder' }, - 'exifversion' => { 124 => 0x9000, 521 => 'ExifVersion' }, + 'exifversion' => { 124 => 0x9000, 523 => 'ExifVersion' }, 'exitpupilposition' => { 234 => 0x4, 235 => 0x4, 239 => 0x4 }, - 'expirationdate' => { 136 => 0x25, 537 => 'expirationDate' }, + 'expirationdate' => { 136 => 0x25, 539 => 'expirationDate' }, 'expirationtime' => { 136 => 0x26 }, - 'exposure' => { 124 => 0xfe51, 515 => 'Exposure', 517 => 'Exposure' }, - 'exposure2012' => { 515 => 'Exposure2012', 517 => 'Exposure2012' }, - 'exposureadj' => { 297 => 0x0 }, - 'exposureadj2' => { 297 => 0x12 }, - 'exposureadjust' => { 428 => 0xc }, + 'exposure' => { 124 => 0xfe51, 517 => 'Exposure', 519 => 'Exposure' }, + 'exposure2012' => { 517 => 'Exposure2012', 519 => 'Exposure2012' }, + 'exposureadj' => { 298 => 0x0 }, + 'exposureadj2' => { 298 => 0x12 }, + 'exposureadjust' => { 430 => 0xc }, 'exposurebracketingindicatorlast' => { 189 => 0x52 }, - 'exposurebracketshotnumber' => { 192 => 0x2d, 449 => 0x2f }, - 'exposurebracketstepsize' => { 366 => 0x8 }, + 'exposurebracketshotnumber' => { 192 => 0x2d, 451 => 0x2f }, + 'exposurebracketstepsize' => { 368 => 0x8 }, 'exposurebracketvalue' => { 241 => 0x19 }, 'exposurecompautocancel' => { 89 => 0x113 }, - 'exposurecompensation' => { 81 => 0x6, 98 => 0x0, 124 => 0x9204, 145 => 0x24, 161 => 'ExposureComp', 181 => 'ExposureCompensation', 186 => 0xd, 187 => 0x53, 188 => 0x1e, 192 => 0x49c0, 331 => 0x1006, 386 => 0x16, 395 => 0x402, 425 => 0xa013, 428 => [0xc,0x35,0x4d], 461 => 0x114c, 462 => 0x114c, 463 => 0x1128, 465 => 0x1180, 466 => 0x1038, 467 => 0x230, 468 => 0x230, 469 => 0x223, 521 => 'ExposureBiasValue' }, - 'exposurecompensation2' => { 457 => [0x24,0x26,0x2a] }, - 'exposurecompensationbutton' => { 250 => 0x794 }, + 'exposurecompensation' => { 81 => 0x6, 98 => 0x0, 124 => 0x9204, 145 => 0x24, 161 => 'ExposureComp', 181 => 'ExposureCompensation', 186 => 0xd, 187 => 0x53, 188 => 0x1e, 192 => 0x49c0, 333 => 0x1006, 388 => 0x16, 397 => 0x402, 427 => 0xa013, 430 => [0xc,0x35,0x4d], 463 => 0x114c, 464 => 0x114c, 465 => 0x1128, 467 => 0x1180, 468 => 0x1038, 469 => 0x230, 470 => 0x230, 471 => 0x223, 523 => 'ExposureBiasValue' }, + 'exposurecompensation2' => { 459 => [0x24,0x26,0x2a] }, + 'exposurecompensationbutton' => { 251 => 0x794 }, 'exposurecompensationmode' => { 189 => 0x47, 192 => 0x2a }, - 'exposurecompensationset' => { 438 => 0x3, 439 => 0x3, 440 => 0x3, 457 => 0x1e }, + 'exposurecompensationset' => { 440 => 0x3, 441 => 0x3, 442 => 0x3, 459 => 0x1e }, 'exposurecompensationsetting' => { 189 => 0x1 }, - 'exposurecompstepsize' => { 306 => '6.3', 307 => '7.3', 309 => '7.3', 310 => '7.3', 315 => '4.3', 319 => '7.3', 320 => '7.3' }, - 'exposurecontrolstep' => { 314 => '6.1', 316 => '6.1' }, - 'exposurecontrolstepsize' => { 306 => '6.2', 307 => '7.1', 309 => '7.1', 310 => '7.1', 315 => '4.2', 319 => '7.1', 320 => '7.1', 321 => '7.1', 322 => 0x1b, 323 => 0x1b, 324 => 0x1b }, + 'exposurecompstepsize' => { 307 => '6.3', 308 => '7.3', 310 => '7.3', 311 => '7.3', 316 => '4.3', 320 => '7.3', 321 => '7.3' }, + 'exposurecontrolstep' => { 315 => '6.1', 317 => '6.1' }, + 'exposurecontrolstepsize' => { 307 => '6.2', 308 => '7.1', 310 => '7.1', 311 => '7.1', 316 => '4.2', 320 => '7.1', 321 => '7.1', 322 => '7.1', 323 => 0x1d, 324 => 0x1b, 325 => 0x1b, 326 => 0x1b }, 'exposurecount' => { 132 => 0x1032 }, - 'exposuredelay' => { 250 => 0x800, 322 => 0x2f1 }, - 'exposuredelaymode' => { 306 => '10.1', 307 => '11.1', 309 => '11.1', 310 => '11.1', 311 => '9.1', 312 => '10.1', 313 => '10.1', 315 => '10.4', 316 => '10.1', 317 => '6.4', 319 => '11.1', 320 => '11.1', 321 => '11.2' }, + 'exposuredelay' => { 251 => 0x800, 324 => 0x2f1 }, + 'exposuredelaymode' => { 307 => '10.1', 308 => '11.1', 310 => '11.1', 311 => '11.1', 312 => '9.1', 313 => '10.1', 314 => '10.1', 316 => '10.4', 317 => '10.1', 318 => '6.4', 320 => '11.1', 321 => '11.1', 322 => '11.2' }, 'exposuredifference' => { 241 => 0xe }, 'exposuregaincustom' => { 143 => 0x89c }, 'exposuregaindaylight' => { 143 => 0x898 }, 'exposuregainflash' => { 143 => 0x89b }, 'exposuregainfluorescent' => { 143 => 0x89a }, 'exposuregaintungsten' => { 143 => 0x899 }, - 'exposureindex' => { 124 => 0xa215, 521 => 'ExposureIndex' }, + 'exposureindex' => { 124 => 0xa215, 523 => 'ExposureIndex' }, 'exposureindicator' => { 189 => 0x50 }, - 'exposurelevelincrements' => { 87 => 0x6, 88 => 0x6, 89 => 0x101, 90 => 0x5, 91 => 0x6, 92 => 0x5, 93 => 0x5, 94 => 0x6, 95 => 0x4, 438 => 0x58, 439 => 0x58 }, - 'exposurelockused' => { 503 => 'ExposureLockUsed' }, - 'exposuremode' => { 124 => 0xa402, 161 => 'ExposureMode', 186 => 0x1, 187 => 0xa, 188 => 0x0, 189 => 0x0, 192 => 0x34, 326 => 0x200, 347 => 0x40d, 428 => 0x8, 452 => 0xb041, 521 => 'ExposureMode' }, + 'exposurelevelincrements' => { 87 => 0x6, 88 => 0x6, 89 => 0x101, 90 => 0x5, 91 => 0x6, 92 => 0x5, 93 => 0x5, 94 => 0x6, 95 => 0x4, 440 => 0x58, 441 => 0x58 }, + 'exposurelockused' => { 505 => 'ExposureLockUsed' }, + 'exposuremode' => { 124 => 0xa402, 161 => 'ExposureMode', 186 => 0x1, 187 => 0xa, 188 => 0x0, 189 => 0x0, 192 => 0x34, 328 => 0x200, 349 => 0x40d, 430 => 0x8, 454 => 0xb041, 523 => 'ExposureMode' }, 'exposuremodeinmanual' => { 89 => 0x10b }, - 'exposureprogram' => { 124 => 0x8822, 418 => 0x1001, 431 => [0x17e,0x43], 438 => 0x3c, 439 => 0x3c, 440 => 0x5, 444 => 0x14, 449 => 0x3f, 457 => 0x2, 461 => 0x1175, 462 => 0x1179, 463 => 0x1155, 464 => 0x11d1, 465 => 0x11ad, 466 => 0x1065, 467 => 0x25d, 468 => 0x25d, 469 => 0x24c, 480 => 0xb, 481 => 0xc, 482 => 0xb, 484 => 0x48, 521 => 'ExposureProgram' }, - 'exposureshift' => { 326 => 0x203 }, - 'exposurestandardadjustment' => { 452 => 0x202d }, - 'exposuretime' => { 7 => 0x4, 8 => 0x4, 9 => 0x4, 10 => 0x4, 11 => 0x4, 12 => 0x4, 13 => 0x4, 14 => 0x4, 15 => 0x4, 16 => 0x4, 17 => 0x4, 18 => 0x4, 19 => 0x4, 20 => 0x4, 21 => 0x4, 22 => 0x4, 23 => 0x4, 24 => 0x4, 25 => 0x4, 26 => 0x4, 27 => 0x4, 28 => 0x4, 29 => 0x4, 31 => 0x6, 32 => 0x7, 81 => 0x16, 124 => 0x829a, 142 => 0xfd05, 145 => 0x20, 147 => 0xfa24, 149 => 0xf104, 152 => 0x12, 154 => 0x38, 156 => 0x14, 157 => 0x10, 159 => 0x10, 161 => 'ExposureTime', 186 => 0x9, 187 => 0x35, 188 => 0x48, 189 => 0x8, 192 => 0x49b8, 386 => 0x12, 425 => 0xa018, 428 => [0x32,0x4a], 438 => 0x0, 439 => 0x0, 457 => [0x21,0x23,0x27], 484 => 0x10, 521 => 'ExposureTime' }, - 'exposuretime2' => { 428 => [0x33,0x4b] }, + 'exposureprogram' => { 124 => 0x8822, 420 => 0x1001, 433 => [0x17e,0x43], 440 => 0x3c, 441 => 0x3c, 442 => 0x5, 446 => 0x14, 451 => 0x3f, 459 => 0x2, 463 => 0x1175, 464 => 0x1179, 465 => 0x1155, 466 => 0x11d1, 467 => 0x11ad, 468 => 0x1065, 469 => 0x25d, 470 => 0x25d, 471 => 0x24c, 482 => 0xb, 483 => 0xc, 484 => 0xb, 486 => 0x48, 523 => 'ExposureProgram' }, + 'exposureshift' => { 328 => 0x203 }, + 'exposurestandardadjustment' => { 454 => 0x202d }, + 'exposuretime' => { 7 => 0x4, 8 => 0x4, 9 => 0x4, 10 => 0x4, 11 => 0x4, 12 => 0x4, 13 => 0x4, 14 => 0x4, 15 => 0x4, 16 => 0x4, 17 => 0x4, 18 => 0x4, 19 => 0x4, 20 => 0x4, 21 => 0x4, 22 => 0x4, 23 => 0x4, 24 => 0x4, 25 => 0x4, 26 => 0x4, 27 => 0x4, 28 => 0x4, 29 => 0x4, 31 => 0x6, 32 => 0x7, 81 => 0x16, 124 => 0x829a, 142 => 0xfd05, 145 => 0x20, 147 => 0xfa24, 149 => 0xf104, 152 => 0x12, 154 => 0x38, 156 => 0x14, 157 => 0x10, 159 => 0x10, 161 => 'ExposureTime', 186 => 0x9, 187 => 0x35, 188 => 0x48, 189 => 0x8, 192 => 0x49b8, 388 => 0x12, 427 => 0xa018, 430 => [0x32,0x4a], 440 => 0x0, 441 => 0x0, 459 => [0x21,0x23,0x27], 486 => 0x10, 523 => 'ExposureTime' }, + 'exposuretime2' => { 430 => [0x33,0x4b] }, 'exposuretuning' => { 241 => 0x1c }, 'exposurevalue' => { 143 => 0x3 }, 'exposurewarning' => { 132 => 0x1302 }, 'exrauto' => { 132 => 0x1033 }, 'exrmode' => { 132 => 0x1034 }, - 'extdescraccessibility' => { 528 => 'ExtDescrAccessibility' }, - 'extendedmenubanks' => { 246 => 0x120, 247 => 0x120, 248 => 0x114, 249 => 0x124, 250 => 0x124 }, - 'extendedshutterspeeds' => { 322 => 0x102, 323 => 0x102, 324 => 0x118 }, - 'extendedwbdetect' => { 326 => 0x902 }, - 'extender' => { 327 => 0x301 }, - 'extenderfirmwareversion' => { 327 => 0x304 }, + 'extdescraccessibility' => { 530 => 'ExtDescrAccessibility' }, + 'extendedmenubanks' => { 247 => 0x120, 248 => 0x120, 249 => 0x114, 250 => 0x124, 251 => 0x124 }, + 'extendedshutterspeeds' => { 323 => 0xf2, 324 => 0x102, 325 => 0x102, 326 => 0x118 }, + 'extendedwbdetect' => { 328 => 0x902 }, + 'extender' => { 329 => 0x301 }, + 'extenderfirmwareversion' => { 329 => 0x304 }, 'extendermagnification' => { 163 => 'Magnification' }, 'extendermake' => { 163 => 'Make' }, - 'extendermodel' => { 163 => 'Model', 327 => 0x303 }, - 'extenderserialnumber' => { 163 => 'SerialNumber', 327 => 0x302 }, - 'extenderstatus' => { 383 => 0x3 }, - 'externalflash' => { 329 => 0x1201 }, - 'externalflashae1' => { 331 => 0x101f }, - 'externalflashae1_0' => { 331 => 0x101b }, - 'externalflashae2' => { 331 => 0x1020 }, - 'externalflashae2_0' => { 331 => 0x101c }, - 'externalflashbounce' => { 329 => 0x1204, 331 => 0x1026, 373 => 0x1a }, + 'extendermodel' => { 163 => 'Model', 329 => 0x303 }, + 'extenderserialnumber' => { 163 => 'SerialNumber', 329 => 0x302 }, + 'extenderstatus' => { 385 => 0x3 }, + 'externalflash' => { 331 => 0x1201 }, + 'externalflashae1' => { 333 => 0x101f }, + 'externalflashae1_0' => { 333 => 0x101b }, + 'externalflashae2' => { 333 => 0x1020 }, + 'externalflashae2_0' => { 333 => 0x101c }, + 'externalflashbounce' => { 331 => 0x1204, 333 => 0x1026, 375 => 0x1a }, 'externalflashcompensation' => { 221 => 0x1b }, - 'externalflashexposurecomp' => { 241 => 0x17, 373 => 0x19 }, + 'externalflashexposurecomp' => { 241 => 0x17, 375 => 0x19 }, 'externalflashfirmware' => { 219 => 0x6, 220 => 0x6, 221 => 0x6, 222 => 0x6, 223 => 0x6, 224 => 0x6 }, 'externalflashflags' => { 219 => 0x8, 220 => 0x8, 221 => 0x8, 222 => 0x8, 224 => 0x8 }, - 'externalflashguidenumber' => { 329 => 0x1203, 373 => '24.1' }, - 'externalflashgvalue' => { 331 => 0x1025 }, - 'externalflashmode' => { 331 => 0x1028, 373 => 0x2 }, + 'externalflashguidenumber' => { 331 => 0x1203, 375 => '24.1' }, + 'externalflashgvalue' => { 333 => 0x1025 }, + 'externalflashmode' => { 333 => 0x1028, 375 => 0x2 }, 'externalflashreadystate' => { 223 => '9.1' }, 'externalflashstatus' => { 223 => '8.2' }, - 'externalflashzoom' => { 329 => 0x1205, 331 => 0x1027 }, + 'externalflashzoom' => { 331 => 0x1205, 333 => 0x1027 }, 'externalflashzoomoverride' => { 223 => '8.1' }, - 'externalmetadatalink' => { 529 => 'ExternalMetadataLink' }, - 'externalsensorbrightnessvalue' => { 345 => 0x311, 348 => 0x311, 349 => 0x311, 352 => 0x3408 }, - 'extrainfoversion' => { 442 => 0x1a }, + 'externalmetadatalink' => { 531 => 'ExternalMetadataLink' }, + 'externalsensorbrightnessvalue' => { 347 => 0x311, 350 => 0x311, 351 => 0x311, 354 => 0x3408 }, + 'extrainfoversion' => { 444 => 0x1a }, 'eyedetection' => { 2 => 0x18 }, 'eyestartaf' => { 189 => 0x40 }, 'fac100per' => { 143 => 0xe94 }, 'fac170per' => { 143 => 0xe93 }, 'fac18per' => { 143 => 0xe92 }, - 'face10position' => { 115 => 0x3f4, 116 => 0x1ec, 217 => 0x28, 370 => 0x12 }, - 'face10size' => { 371 => 0x12 }, - 'face11position' => { 217 => 0x2c, 370 => 0x14 }, - 'face11size' => { 371 => 0x14 }, - 'face12position' => { 217 => 0x30, 370 => 0x16 }, - 'face12size' => { 371 => 0x16 }, - 'face13position' => { 370 => 0x18 }, - 'face13size' => { 371 => 0x18 }, - 'face14position' => { 370 => 0x1a }, - 'face14size' => { 371 => 0x1a }, - 'face15position' => { 370 => 0x1c }, - 'face15size' => { 371 => 0x1c }, - 'face16position' => { 370 => 0x1e }, - 'face16size' => { 371 => 0x1e }, - 'face17position' => { 370 => 0x20 }, - 'face17size' => { 371 => 0x20 }, - 'face18position' => { 370 => 0x22 }, - 'face18size' => { 371 => 0x22 }, - 'face19position' => { 370 => 0x24 }, - 'face19size' => { 371 => 0x24 }, - 'face1position' => { 57 => 0x8, 115 => 0xd, 116 => 0x18, 217 => 0x4, 342 => 0x1, 370 => 0x0, 415 => 0xbc, 445 => 0x1, 446 => 0x0, 447 => 0x0, 448 => 0x5b }, - 'face1size' => { 371 => 0x0 }, - 'face20position' => { 370 => 0x26 }, - 'face20size' => { 371 => 0x26 }, - 'face21position' => { 370 => 0x28 }, - 'face21size' => { 371 => 0x28 }, - 'face22position' => { 370 => 0x2a }, - 'face22size' => { 371 => 0x2a }, - 'face23position' => { 370 => 0x2c }, - 'face23size' => { 371 => 0x2c }, - 'face24position' => { 370 => 0x2e }, - 'face24size' => { 371 => 0x2e }, - 'face25position' => { 370 => 0x30 }, - 'face25size' => { 371 => 0x30 }, - 'face26position' => { 370 => 0x32 }, - 'face26size' => { 371 => 0x32 }, - 'face27position' => { 370 => 0x34 }, - 'face27size' => { 371 => 0x34 }, - 'face28position' => { 370 => 0x36 }, - 'face28size' => { 371 => 0x36 }, - 'face29position' => { 370 => 0x38 }, - 'face29size' => { 371 => 0x38 }, - 'face2position' => { 57 => 0xa, 115 => 0x7c, 116 => 0x4c, 217 => 0x8, 342 => 0x5, 370 => 0x2, 415 => 0xc8, 445 => 0x6, 446 => 0x20, 447 => 0x25, 448 => 0x65 }, - 'face2size' => { 371 => 0x2 }, - 'face30position' => { 370 => 0x3a }, - 'face30size' => { 371 => 0x3a }, - 'face31position' => { 370 => 0x3c }, - 'face31size' => { 371 => 0x3c }, - 'face32position' => { 370 => 0x3e }, - 'face32size' => { 371 => 0x3e }, - 'face3position' => { 57 => 0xc, 115 => 0xeb, 116 => 0x80, 217 => 0xc, 342 => 0x9, 370 => 0x4, 415 => 0xd4, 445 => 0xb, 446 => 0x40, 447 => 0x4a, 448 => 0x6f }, - 'face3size' => { 371 => 0x4 }, - 'face4position' => { 57 => 0xe, 115 => 0x15a, 116 => 0xb4, 217 => 0x10, 342 => 0xd, 370 => 0x6, 415 => 0xe0, 445 => 0x10, 446 => 0x60, 447 => 0x6f, 448 => 0x79 }, - 'face4size' => { 371 => 0x6 }, - 'face5position' => { 57 => 0x10, 115 => 0x1c9, 116 => 0xe8, 217 => 0x14, 342 => 0x11, 370 => 0x8, 415 => 0xec, 445 => 0x15, 446 => 0x80, 447 => 0x94 }, - 'face5size' => { 371 => 0x8 }, - 'face6position' => { 57 => 0x12, 115 => 0x238, 116 => 0x11c, 217 => 0x18, 370 => 0xa, 415 => 0xf8, 445 => 0x1a, 446 => 0xa0, 447 => 0xb9 }, - 'face6size' => { 371 => 0xa }, - 'face7position' => { 57 => 0x14, 115 => 0x2a7, 116 => 0x150, 217 => 0x1c, 370 => 0xc, 415 => 0x104, 445 => 0x1f, 446 => 0xc0, 447 => 0xde }, - 'face7size' => { 371 => 0xc }, - 'face8position' => { 57 => 0x16, 115 => 0x316, 116 => 0x184, 217 => 0x20, 370 => 0xe, 415 => 0x110, 445 => 0x24, 446 => 0xe0, 447 => 0x103 }, - 'face8size' => { 371 => 0xe }, - 'face9position' => { 57 => 0x18, 115 => 0x385, 116 => 0x1b8, 217 => 0x24, 370 => 0x10 }, - 'face9size' => { 371 => 0x10 }, - 'facebalanceorigi' => { 509 => 'FaceBalanceOrigI' }, - 'facebalanceorigq' => { 509 => 'FaceBalanceOrigQ' }, - 'facebalancestrength' => { 509 => 'FaceBalanceStrength' }, - 'facebalancewarmth' => { 509 => 'FaceBalanceWarmth' }, - 'facedetect' => { 386 => 0x76, 425 => 0x100 }, - 'facedetectarea' => { 330 => 0x1201 }, - 'facedetectframecrop' => { 330 => 0x1207 }, - 'facedetectframesize' => { 57 => 0x3, 115 => 0x1, 116 => 0x4, 217 => 0x1, 330 => 0x1203, 386 => 0x77, 415 => 0xb6 }, - 'facedetection' => { 440 => 0x30, 457 => 0x19 }, + 'face10position' => { 115 => 0x3f4, 116 => 0x1ec, 217 => 0x28, 372 => 0x12 }, + 'face10size' => { 373 => 0x12 }, + 'face11position' => { 217 => 0x2c, 372 => 0x14 }, + 'face11size' => { 373 => 0x14 }, + 'face12position' => { 217 => 0x30, 372 => 0x16 }, + 'face12size' => { 373 => 0x16 }, + 'face13position' => { 372 => 0x18 }, + 'face13size' => { 373 => 0x18 }, + 'face14position' => { 372 => 0x1a }, + 'face14size' => { 373 => 0x1a }, + 'face15position' => { 372 => 0x1c }, + 'face15size' => { 373 => 0x1c }, + 'face16position' => { 372 => 0x1e }, + 'face16size' => { 373 => 0x1e }, + 'face17position' => { 372 => 0x20 }, + 'face17size' => { 373 => 0x20 }, + 'face18position' => { 372 => 0x22 }, + 'face18size' => { 373 => 0x22 }, + 'face19position' => { 372 => 0x24 }, + 'face19size' => { 373 => 0x24 }, + 'face1position' => { 57 => 0x8, 115 => 0xd, 116 => 0x18, 217 => 0x4, 344 => 0x1, 372 => 0x0, 417 => 0xbc, 447 => 0x1, 448 => 0x0, 449 => 0x0, 450 => 0x5b }, + 'face1size' => { 373 => 0x0 }, + 'face20position' => { 372 => 0x26 }, + 'face20size' => { 373 => 0x26 }, + 'face21position' => { 372 => 0x28 }, + 'face21size' => { 373 => 0x28 }, + 'face22position' => { 372 => 0x2a }, + 'face22size' => { 373 => 0x2a }, + 'face23position' => { 372 => 0x2c }, + 'face23size' => { 373 => 0x2c }, + 'face24position' => { 372 => 0x2e }, + 'face24size' => { 373 => 0x2e }, + 'face25position' => { 372 => 0x30 }, + 'face25size' => { 373 => 0x30 }, + 'face26position' => { 372 => 0x32 }, + 'face26size' => { 373 => 0x32 }, + 'face27position' => { 372 => 0x34 }, + 'face27size' => { 373 => 0x34 }, + 'face28position' => { 372 => 0x36 }, + 'face28size' => { 373 => 0x36 }, + 'face29position' => { 372 => 0x38 }, + 'face29size' => { 373 => 0x38 }, + 'face2position' => { 57 => 0xa, 115 => 0x7c, 116 => 0x4c, 217 => 0x8, 344 => 0x5, 372 => 0x2, 417 => 0xc8, 447 => 0x6, 448 => 0x20, 449 => 0x25, 450 => 0x65 }, + 'face2size' => { 373 => 0x2 }, + 'face30position' => { 372 => 0x3a }, + 'face30size' => { 373 => 0x3a }, + 'face31position' => { 372 => 0x3c }, + 'face31size' => { 373 => 0x3c }, + 'face32position' => { 372 => 0x3e }, + 'face32size' => { 373 => 0x3e }, + 'face3position' => { 57 => 0xc, 115 => 0xeb, 116 => 0x80, 217 => 0xc, 344 => 0x9, 372 => 0x4, 417 => 0xd4, 447 => 0xb, 448 => 0x40, 449 => 0x4a, 450 => 0x6f }, + 'face3size' => { 373 => 0x4 }, + 'face4position' => { 57 => 0xe, 115 => 0x15a, 116 => 0xb4, 217 => 0x10, 344 => 0xd, 372 => 0x6, 417 => 0xe0, 447 => 0x10, 448 => 0x60, 449 => 0x6f, 450 => 0x79 }, + 'face4size' => { 373 => 0x6 }, + 'face5position' => { 57 => 0x10, 115 => 0x1c9, 116 => 0xe8, 217 => 0x14, 344 => 0x11, 372 => 0x8, 417 => 0xec, 447 => 0x15, 448 => 0x80, 449 => 0x94 }, + 'face5size' => { 373 => 0x8 }, + 'face6position' => { 57 => 0x12, 115 => 0x238, 116 => 0x11c, 217 => 0x18, 372 => 0xa, 417 => 0xf8, 447 => 0x1a, 448 => 0xa0, 449 => 0xb9 }, + 'face6size' => { 373 => 0xa }, + 'face7position' => { 57 => 0x14, 115 => 0x2a7, 116 => 0x150, 217 => 0x1c, 372 => 0xc, 417 => 0x104, 447 => 0x1f, 448 => 0xc0, 449 => 0xde }, + 'face7size' => { 373 => 0xc }, + 'face8position' => { 57 => 0x16, 115 => 0x316, 116 => 0x184, 217 => 0x20, 372 => 0xe, 417 => 0x110, 447 => 0x24, 448 => 0xe0, 449 => 0x103 }, + 'face8size' => { 373 => 0xe }, + 'face9position' => { 57 => 0x18, 115 => 0x385, 116 => 0x1b8, 217 => 0x24, 372 => 0x10 }, + 'face9size' => { 373 => 0x10 }, + 'facebalanceorigi' => { 511 => 'FaceBalanceOrigI' }, + 'facebalanceorigq' => { 511 => 'FaceBalanceOrigQ' }, + 'facebalancestrength' => { 511 => 'FaceBalanceStrength' }, + 'facebalancewarmth' => { 511 => 'FaceBalanceWarmth' }, + 'facedetect' => { 388 => 0x76, 427 => 0x100 }, + 'facedetectarea' => { 332 => 0x1201 }, + 'facedetectframecrop' => { 332 => 0x1207 }, + 'facedetectframesize' => { 57 => 0x3, 115 => 0x1, 116 => 0x4, 217 => 0x1, 332 => 0x1203, 388 => 0x77, 417 => 0xb6 }, + 'facedetection' => { 442 => 0x30, 459 => 0x19 }, 'faceelementpositions' => { 132 => 0x4203 }, 'faceelementselected' => { 132 => 0x4005 }, 'faceelementtypes' => { 132 => 0x4201 }, - 'faceid' => { 511 => 'FaceID' }, + 'faceid' => { 513 => 'FaceID' }, 'faceinfounknown' => { 118 => 0x2089 }, - 'facename' => { 425 => 0x123 }, + 'facename' => { 427 => 0x123 }, 'faceorientation' => { 116 => 0x8 }, - 'faceposition' => { 369 => 0x2, 426 => 0x4 }, + 'faceposition' => { 371 => 0x2, 428 => 0x4 }, 'facepositions' => { 132 => 0x4103 }, - 'facerecognition' => { 425 => 0x120 }, - 'facesdetected' => { 57 => 0x2, 58 => 0x2, 59 => 0x3, 115 => 0x0, 116 => 0x2, 118 => 0x211c, 132 => 0x4100, 217 => 0x3, 330 => 0x1200, 350 => 0x3f, 369 => 0x0, 415 => 0xb5, 426 => 0x0, 445 => 0x0, 448 => 0x3, 460 => 0x30 }, - 'facesrecognized' => { 343 => 0x0 }, + 'facerecognition' => { 427 => 0x120 }, + 'facesdetected' => { 57 => 0x2, 58 => 0x2, 59 => 0x3, 115 => 0x0, 116 => 0x2, 118 => 0x211c, 132 => 0x4100, 217 => 0x3, 332 => 0x1200, 352 => 0x3f, 371 => 0x0, 417 => 0xb5, 428 => 0x0, 447 => 0x0, 450 => 0x3, 462 => 0x30 }, + 'facesrecognized' => { 345 => 0x0 }, 'facewidth' => { 58 => 0x1 }, - 'fade' => { 452 => 0x2034 }, + 'fade' => { 454 => 0x2034 }, 'faithfuloutputhighlightpoint' => { 114 => 0x38 }, 'faithfuloutputshadowpoint' => { 114 => 0x39 }, 'faithfulrawcolortone' => { 114 => 0x31 }, @@ -2970,38 +2972,38 @@ my %tagLookup = ( 'faithfulunsharpmaskfineness' => { 114 => 0xac }, 'faithfulunsharpmaskstrength' => { 114 => 0xaa }, 'faithfulunsharpmaskthreshold' => { 114 => 0xae }, - 'far' => { 500 => 'Far' }, + 'far' => { 502 => 'Far' }, 'fastresetlinetime' => { 143 => 0x1860 }, - 'feedidentifier' => { 529 => 'FeedIdentifier' }, + 'feedidentifier' => { 531 => 'FeedIdentifier' }, 'femicroadjustment' => { 89 => 0x111 }, - 'ffid' => { 519 => 'ffid' }, - 'field' => { 533 => 'field' }, - 'fieldcount' => { 331 => 0x103f }, - 'fieldofview' => { 411 => "FOV\x00" }, + 'ffid' => { 521 => 'ffid' }, + 'field' => { 535 => 'field' }, + 'fieldcount' => { 333 => 0x103f }, + 'fieldofview' => { 413 => "FOV\x00" }, 'fifoenonepixeldelay' => { 143 => 0x1901 }, 'filecreatedate' => { 125 => 'FileCreateDate' }, - 'filedatarate' => { 544 => 'fileDataRate' }, - 'fileformat' => { 100 => 0x0, 137 => 0x14, 428 => [0x22,0x26], 452 => 0xb000 }, + 'filedatarate' => { 546 => 'fileDataRate' }, + 'fileformat' => { 100 => 0x0, 137 => 0x14, 430 => [0x22,0x26], 454 => 0xb000 }, 'filegroupid' => { 125 => 'FileGroupID' }, - 'fileindex' => { 7 => 0x143, 9 => 0x2d0, 11 => 0x172, 13 => 0x22c, 14 => 0x133, 15 => 0x13f, 16 => 0x1d3, 17 => 0x19b, 18 => 0x1e4, 19 => 0xd0, 20 => 0x1bb, 21 => 0x28c, 22 => 0x1db, 23 => 0x1d9, 24 => [0x270,0x274], 25 => 0x2aa, 26 => 0x2b3, 28 => 0x1eb, 29 => 0x4ae, 30 => 0xb2d, 351 => 0x0 }, + 'fileindex' => { 7 => 0x143, 9 => 0x2d0, 11 => 0x172, 13 => 0x22c, 14 => 0x133, 15 => 0x13f, 16 => 0x1d3, 17 => 0x19b, 18 => 0x1e4, 19 => 0xd0, 20 => 0x1bb, 21 => 0x28c, 22 => 0x1db, 23 => 0x1d9, 24 => [0x270,0x274], 25 => 0x2aa, 26 => 0x2b3, 28 => 0x1eb, 29 => 0x4ae, 30 => 0xb2d, 353 => 0x0 }, 'fileindex2' => { 21 => 0x290 }, 'filemodifydate' => { 125 => 'FileModifyDate' }, 'filename' => { 125 => 'FileName' }, - 'filenameasdelivered' => { 336 => 'FileNameAsDelivered' }, - 'filenumber' => { 60 => 0x1, 68 => 0x8, 102 => 0x1817, 119 => 'Canon-FileNumber', 218 => 0x4, 414 => 0x10 }, + 'filenameasdelivered' => { 338 => 'FileNameAsDelivered' }, + 'filenumber' => { 60 => 0x1, 68 => 0x8, 102 => 0x1817, 119 => 'Canon-FileNumber', 218 => 0x4, 416 => 0x10 }, 'filenumbermemory' => { 186 => 0x1a }, - 'filenumbersequence' => { 306 => '12.2', 311 => '3.1', 312 => '4.1', 313 => '4.1', 315 => '11.1', 316 => '4.3', 321 => '5.2', 322 => 0x48, 323 => 0x48, 324 => 0x48 }, + 'filenumbersequence' => { 307 => '12.2', 312 => '3.1', 313 => '4.1', 314 => '4.1', 316 => '11.1', 317 => '4.3', 322 => '5.2', 323 => 0x4e, 324 => 0x48, 325 => 0x48, 326 => 0x48 }, 'filepermissions' => { 125 => 'FilePermissions' }, - 'filesource' => { 124 => 0xa300, 132 => 0x8000, 521 => 'FileSource' }, + 'filesource' => { 124 => 0xa300, 132 => 0x8000, 523 => 'FileSource' }, 'fileuserid' => { 125 => 'FileUserID' }, 'fileversion' => { 137 => 0x16 }, 'fillflashautoreduction' => { 87 => 0xe, 88 => 0xe, 95 => 0xa }, - 'filllight' => { 515 => 'FillLight', 517 => 'FillLight' }, + 'filllight' => { 517 => 'FillLight', 519 => 'FillLight' }, 'fillorder' => { 124 => 0x10a }, - 'filmgraineffect' => { 326 => 0x538 }, - 'filmmode' => { 132 => 0x1401, 347 => 0x412, 350 => 0x42 }, - 'filmtype' => { 265 => 0x2 }, - 'filtereffect' => { 60 => 0xe, 257 => 0x37, 258 => 0x3f, 259 => 0x47, 350 => 0xa1 }, + 'filmgraineffect' => { 328 => 0x538 }, + 'filmmode' => { 132 => 0x1401, 349 => 0x412, 352 => 0x42 }, + 'filmtype' => { 266 => 0x2 }, + 'filtereffect' => { 60 => 0xe, 258 => 0x37, 259 => 0x3f, 260 => 0x47, 352 => 0xa1 }, 'filtereffectauto' => { 75 => 0xa0 }, 'filtereffectfaithful' => { 74 => 0x70, 75 => 0x70 }, 'filtereffectlandscape' => { 74 => 0x40, 75 => 0x40 }, @@ -3013,69 +3015,69 @@ my %tagLookup = ( 'filtereffectuserdef2' => { 74 => 0xb8, 75 => 0xd0 }, 'filtereffectuserdef3' => { 74 => 0xd0, 75 => 0xe8 }, 'finderdisplayduringexposure' => { 88 => 0x1 }, - 'finesharpness' => { 386 => 0x70 }, - 'finetuneoptcenterweighted' => { 306 => '7.2', 307 => '9.1', 309 => '9.1', 310 => '9.1', 314 => '8.1', 319 => '9.1', 320 => '9.1', 321 => '9.1', 322 => 0x23, 323 => 0x23, 324 => 0x23 }, - 'finetuneopthighlightweighted' => { 309 => '46.1', 310 => '46.1', 319 => '46.1', 320 => '46.1', 322 => 0x27, 323 => 0x27, 324 => 0x27 }, - 'finetuneoptmatrixmetering' => { 306 => '8.1', 307 => '8.2', 309 => '8.2', 310 => '8.2', 314 => '7.2', 315 => '6.1', 319 => '8.2', 320 => '8.2', 321 => '8.2', 322 => 0x21, 323 => 0x21, 324 => 0x21 }, - 'finetuneoptspotmetering' => { 306 => '8.2', 307 => '9.2', 309 => '9.2', 310 => '9.2', 314 => '8.2', 315 => '6.2', 319 => '9.2', 320 => '9.2', 321 => '9.2', 322 => 0x25, 323 => 0x25, 324 => 0x25 }, + 'finesharpness' => { 388 => 0x70 }, + 'finetuneoptcenterweighted' => { 307 => '7.2', 308 => '9.1', 310 => '9.1', 311 => '9.1', 315 => '8.1', 320 => '9.1', 321 => '9.1', 322 => '9.1', 323 => 0x25, 324 => 0x23, 325 => 0x23, 326 => 0x23 }, + 'finetuneopthighlightweighted' => { 310 => '46.1', 311 => '46.1', 320 => '46.1', 321 => '46.1', 323 => 0x29, 324 => 0x27, 325 => 0x27, 326 => 0x27 }, + 'finetuneoptmatrixmetering' => { 307 => '8.1', 308 => '8.2', 310 => '8.2', 311 => '8.2', 315 => '7.2', 316 => '6.1', 320 => '8.2', 321 => '8.2', 322 => '8.2', 323 => 0x23, 324 => 0x21, 325 => 0x21, 326 => 0x21 }, + 'finetuneoptspotmetering' => { 307 => '8.2', 308 => '9.2', 310 => '9.2', 311 => '9.2', 315 => '8.2', 316 => '6.2', 320 => '9.2', 321 => '9.2', 322 => '9.2', 323 => 0x27, 324 => 0x25, 325 => 0x25, 326 => 0x25 }, 'finishexposure' => { 143 => 0xdbd }, 'finishfiletype' => { 143 => 0xdb8 }, 'finishlook' => { 143 => 0xdbc }, 'finishnoise' => { 143 => 0xdba }, 'finishresolution' => { 143 => 0xdb9 }, 'finishsharpening' => { 143 => 0xdbb }, - 'firmware' => { 331 => 0x405, 428 => [0x8c,0x17,0x3b], 512 => 'Firmware' }, - 'firmware2' => { 428 => 0x57 }, - 'firmwaredate' => { 117 => 0x15, 118 => 0x2001, 412 => 0x4, 414 => 0x30 }, + 'firmware' => { 333 => 0x405, 430 => [0x8c,0x17,0x3b], 514 => 'Firmware' }, + 'firmware2' => { 430 => 0x57 }, + 'firmwaredate' => { 117 => 0x15, 118 => 0x2001, 414 => 0x4, 416 => 0x30 }, 'firmwareid' => { 193 => 0x0 }, - 'firmwarename' => { 425 => 0xa001 }, - 'firmwarerevision' => { 19 => 0xa4, 68 => 0x1e, 416 => 0x0 }, - 'firmwarerevision2' => { 416 => 0xc }, - 'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107, 143 => [0x415,0xce5], 159 => 0x57, 161 => 'FirmwareVersion', 348 => 0x320, 350 => 0x2, 352 => 0x3109, 386 => 0x230, 411 => ['CNFV','FIRM','info'], 413 => 0x18, 414 => 0x2a, 418 => 0x2 }, - 'firmwareversions' => { 395 => 0x301 }, - 'firstphotodate' => { 503 => 'FirstPhotoDate' }, - 'firstpublicationdate' => { 336 => 'FirstPublicationDate' }, - 'fixtureidentifier' => { 136 => 0x16, 510 => 'FixtureIdentifier' }, - 'flash' => { 119 => 'XMP-Flash', 124 => 0x9209, 157 => 0x22, 187 => 0x1f, 188 => 0x15, 414 => 0x5a, 521 => 'Flash' }, - 'flashaction' => { 438 => 0x3e, 439 => 0x3e, 452 => 0x2017, 457 => [0x2a,0x2c,0x30] }, - 'flashaction2' => { 438 => 0x4c, 439 => 0x4c, 457 => 0x77 }, - 'flashactionexternal' => { 457 => [0x78,0x7c] }, + 'firmwarename' => { 427 => 0xa001 }, + 'firmwarerevision' => { 19 => 0xa4, 68 => 0x1e, 418 => 0x0 }, + 'firmwarerevision2' => { 418 => 0xc }, + 'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107, 143 => [0x415,0xce5], 159 => 0x57, 161 => 'FirmwareVersion', 350 => 0x320, 352 => 0x2, 354 => 0x3109, 388 => 0x230, 413 => ['CNFV','FIRM','info'], 415 => 0x18, 416 => 0x2a, 420 => 0x2 }, + 'firmwareversions' => { 397 => 0x301 }, + 'firstphotodate' => { 505 => 'FirstPhotoDate' }, + 'firstpublicationdate' => { 338 => 'FirstPublicationDate' }, + 'fixtureidentifier' => { 136 => 0x16, 512 => 'FixtureIdentifier' }, + 'flash' => { 119 => 'XMP-Flash', 124 => 0x9209, 157 => 0x22, 187 => 0x1f, 188 => 0x15, 416 => 0x5a, 523 => 'Flash' }, + 'flashaction' => { 440 => 0x3e, 441 => 0x3e, 454 => 0x2017, 459 => [0x2a,0x2c,0x30] }, + 'flashaction2' => { 440 => 0x4c, 441 => 0x4c, 459 => 0x77 }, + 'flashactionexternal' => { 459 => [0x78,0x7c] }, 'flashactivity' => { 36 => 0x1c }, 'flashbatterylevel' => { 47 => 0x249 }, - 'flashbias' => { 350 => 0x24 }, + 'flashbias' => { 352 => 0x24 }, 'flashbits' => { 36 => 0x1d }, - 'flashburstpriority' => { 322 => 0x111, 323 => 0x111, 324 => 0x129 }, + 'flashburstpriority' => { 323 => 0x101, 324 => 0x111, 325 => 0x111, 326 => 0x129 }, 'flashbuttonfunction' => { 89 => 0x70e }, - 'flashchargelevel' => { 331 => 0x1010 }, + 'flashchargelevel' => { 333 => 0x1010 }, 'flashcolorfilter' => { 221 => 0x10, 222 => 0x10, 224 => 0x10 }, 'flashcommandermode' => { 219 => '9.1', 220 => '9.1', 221 => '9.1', 222 => '9.1', 224 => '9.1' }, - 'flashcompensation' => { 143 => 0x3f3, 219 => 0xa, 220 => 0xa, 221 => 0xa, 222 => 0x27, 223 => 0xa, 224 => 0xa, 512 => 'FlashCompensation' }, - 'flashcontrol' => { 438 => 0x23, 439 => 0x1f, 440 => 0x21 }, - 'flashcontrolbuilt-in' => { 315 => '16.1', 316 => '23.1', 318 => '23.1', 319 => '24.1' }, - 'flashcontrolmode' => { 219 => '9.2', 220 => '9.2', 221 => '9.2', 222 => '9.2', 224 => '9.2', 230 => 0x214, 245 => 0x148, 246 => 0x1b8, 247 => 0x1b8, 248 => 0x1a8, 249 => 0x1bc, 250 => 0x1bc, 326 => 0x404 }, - 'flashcurtain' => { 350 => 0x48 }, + 'flashcompensation' => { 143 => 0x3f3, 219 => 0xa, 220 => 0xa, 221 => 0xa, 222 => 0x27, 223 => 0xa, 224 => 0xa, 514 => 'FlashCompensation' }, + 'flashcontrol' => { 440 => 0x23, 441 => 0x1f, 442 => 0x21 }, + 'flashcontrolbuilt-in' => { 316 => '16.1', 317 => '23.1', 319 => '23.1', 320 => '24.1' }, + 'flashcontrolmode' => { 219 => '9.2', 220 => '9.2', 221 => '9.2', 222 => '9.2', 224 => '9.2', 230 => 0x214, 245 => 0x2d4, 246 => 0x148, 247 => 0x1b8, 248 => 0x1b8, 249 => 0x1a8, 250 => 0x1bc, 251 => 0x1bc, 328 => 0x404 }, + 'flashcurtain' => { 352 => 0x48 }, 'flashdefault' => { 189 => 0x42 }, - 'flashdevice' => { 331 => 0x1005 }, + 'flashdevice' => { 333 => 0x1005 }, 'flashdistance' => { 118 => 0x2034 }, - 'flashenergy' => { 124 => 0xa20b, 521 => 'FlashEnergy' }, + 'flashenergy' => { 124 => 0xa20b, 523 => 'FlashEnergy' }, 'flashexposurebracketvalue' => { 241 => 0x18 }, - 'flashexposurecomp' => { 81 => 0xf, 132 => 0x1011, 164 => 'ExposureComp', 186 => 0x23, 191 => 0x104, 192 => 0x49c1, 241 => 0x12, 326 => 0x401, 331 => 0x1023, 386 => 0x4d, 418 => 0x100b, 428 => [0x3a,0x56], 452 => 0x104 }, - 'flashexposurecomp2' => { 286 => 0x4d2 }, + 'flashexposurecomp' => { 81 => 0xf, 132 => 0x1011, 164 => 'ExposureComp', 186 => 0x23, 191 => 0x104, 192 => 0x49c1, 241 => 0x12, 328 => 0x401, 333 => 0x1023, 388 => 0x4d, 420 => 0x100b, 430 => [0x3a,0x56], 454 => 0x104 }, + 'flashexposurecomp2' => { 287 => 0x4d2 }, 'flashexposurecomp3' => { 221 => 0x1d }, 'flashexposurecomp4' => { 221 => 0x27 }, - 'flashexposurecomparea' => { 307 => '38.4', 309 => '38.4', 310 => '38.4', 319 => '38.4', 320 => '38.4', 322 => 0x59, 323 => 0x59, 324 => 0x59 }, - 'flashexposurecompset' => { 189 => 0x10, 358 => 0xe, 438 => 0x14, 439 => 0x12, 440 => 0x23, 457 => 0x1f }, - 'flashexposurecompset2' => { 457 => [0x26,0x2c] }, + 'flashexposurecomparea' => { 308 => '38.4', 310 => '38.4', 311 => '38.4', 320 => '38.4', 321 => '38.4', 323 => 0x5d, 324 => 0x59, 325 => 0x59, 326 => 0x59 }, + 'flashexposurecompset' => { 189 => 0x10, 360 => 0xe, 440 => 0x14, 441 => 0x12, 442 => 0x23, 459 => 0x1f }, + 'flashexposurecompset2' => { 459 => [0x26,0x2c] }, 'flashexposureindicator' => { 189 => 0x54 }, 'flashexposureindicatorlast' => { 189 => 0x56 }, 'flashexposureindicatornext' => { 189 => 0x55 }, 'flashexposurelock' => { 60 => 0x19 }, - 'flashfired' => { 145 => 0x5d, 164 => 'Fired', 186 => 0x14, 285 => '590.3', 521 => [\'Flash','FlashFired'] }, + 'flashfired' => { 145 => 0x5d, 164 => 'Fired', 186 => 0x14, 286 => '590.3', 523 => [\'Flash','FlashFired'] }, 'flashfiring' => { 89 => 0x306, 90 => 0x6, 91 => 0x7, 94 => 0x7 }, - 'flashfirmwareversion' => { 327 => 0x1002 }, + 'flashfirmwareversion' => { 329 => 0x1002 }, 'flashfocallength' => { 219 => 0xb, 220 => 0xc, 221 => 0xc, 222 => 0xc, 223 => 0xc, 224 => 0x26 }, - 'flashfunction' => { 192 => 0x31, 521 => [\'Flash','FlashFunction'] }, - 'flashgndistance' => { 219 => 0xe, 220 => 0xf, 221 => 0xf, 222 => 0xf, 223 => 0xf, 224 => 0xf, 230 => 0x21a, 245 => 0x14e, 248 => 0x1ae, 249 => 0x1c2, 250 => 0x1c2 }, + 'flashfunction' => { 192 => 0x31, 523 => [\'Flash','FlashFunction'] }, + 'flashgndistance' => { 219 => 0xe, 220 => 0xf, 221 => 0xf, 222 => 0xf, 223 => 0xf, 224 => 0xf, 230 => 0x21a, 245 => 0x2da, 246 => 0x14e, 249 => 0x1ae, 250 => 0x1c2, 251 => 0x1c2 }, 'flashgroupacompensation' => { 219 => 0x11, 220 => 0x12, 221 => 0x13, 222 => 0x28, 223 => 0x28, 224 => 0x28 }, 'flashgroupacontrolmode' => { 219 => 0xf, 220 => '16.1', 221 => '17.1', 222 => '17.1', 223 => '17.1', 224 => '17.1' }, 'flashgroupaoutput' => { 219 => 0x11, 220 => 0x12, 221 => 0x13, 222 => 0x28, 223 => 0x28, 224 => 0x28 }, @@ -3087,155 +3089,155 @@ my %tagLookup = ( 'flashgroupcoutput' => { 220 => 0x14, 221 => 0x15, 222 => 0x2a, 223 => 0x2a, 224 => 0x2a }, 'flashguidenumber' => { 81 => 0xd, 99 => 0x0, 164 => 'GuideNumber' }, 'flashilluminationpattern' => { 224 => 0x25 }, - 'flashintensity' => { 117 => [0x19,0x5], 326 => 0x405 }, - 'flashlevel' => { 308 => 0x9, 452 => 0xb048 }, + 'flashintensity' => { 117 => [0x19,0x5], 328 => 0x405 }, + 'flashlevel' => { 309 => 0x9, 454 => 0xb048 }, 'flashmake' => { 164 => 'Make' }, 'flashmanufacturer' => { 183 => 'FlashManufacturer' }, - 'flashmastercompensation' => { 230 => 0x22e, 245 => 0x162, 248 => 0x1aa, 249 => 0x1be, 250 => 0x1be }, - 'flashmastercontrolmode' => { 230 => 0x22c, 245 => 0x160 }, - 'flashmasteroutput' => { 230 => 0x232, 245 => 0x166 }, + 'flashmastercompensation' => { 230 => 0x22e, 245 => 0x2ee, 246 => 0x162, 249 => 0x1aa, 250 => 0x1be, 251 => 0x1be }, + 'flashmastercontrolmode' => { 230 => 0x22c, 245 => 0x2ec, 246 => 0x160 }, + 'flashmasteroutput' => { 230 => 0x232, 245 => 0x2f2, 246 => 0x166 }, 'flashmetering' => { 186 => 0x3f, 189 => 0x1c }, 'flashmeteringmode' => { 7 => 0x15, 13 => 0x15, 14 => 0x15, 15 => 0x15, 16 => 0x15, 17 => 0x15, 18 => 0x15, 20 => 0x15, 22 => 0x15, 28 => 0x15 }, - 'flashmeteringsegments' => { 386 => 0x20a }, - 'flashmode' => { 117 => 0x4, 143 => 0x3f2, 145 => 0x5c, 156 => 0x27, 164 => 'Mode', 186 => 0x2, 187 => 0x20, 188 => 0x16, 189 => 0xf, 241 => 0x87, 326 => 0x400, 331 => 0x1004, 386 => 0xc, 393 => 0x4, 417 => 0x20, 418 => 0x100a, 427 => 0x225, 438 => 0x13, 439 => 0x7f, 440 => 0x20, 457 => 0x10, 461 => 0x1138, 462 => 0x1138, 463 => 0x1114, 464 => 0x1190, 465 => 0x116c, 466 => 0x1024, 467 => 0x21c, 468 => 0x21c, 469 => 0x211, 521 => [\'Flash','FlashMode'] }, - 'flashmodebutton' => { 250 => 0x80e }, - 'flashmodebuttonplaybackmode' => { 250 => 0x818 }, - 'flashmodel' => { 164 => 'Model', 183 => 'FlashModel', 327 => 0x1001 }, - 'flashoptions' => { 366 => 0x2 }, - 'flashoptions2' => { 366 => 0x10 }, - 'flashoutput' => { 47 => 0x248, 81 => 0x21, 219 => 0xa, 220 => 0xa, 221 => 0xa, 222 => 0x27, 224 => 0x21, 230 => 0x21e, 245 => 0x152, 248 => 0x1b2, 249 => 0x1c6, 250 => 0x1c6 }, - 'flashpixversion' => { 124 => 0xa000, 521 => 'FlashpixVersion' }, - 'flashredeyemode' => { 521 => [\'Flash','FlashRedEyeMode'] }, - 'flashremotecontrol' => { 230 => 0x228, 245 => 0x15c, 248 => 0x1bc, 326 => 0x403 }, - 'flashreturn' => { 521 => [\'Flash','FlashReturn'] }, - 'flashserialnumber' => { 164 => 'SerialNumber', 327 => 0x1003 }, + 'flashmeteringsegments' => { 388 => 0x20a }, + 'flashmode' => { 117 => 0x4, 143 => 0x3f2, 145 => 0x5c, 156 => 0x27, 164 => 'Mode', 186 => 0x2, 187 => 0x20, 188 => 0x16, 189 => 0xf, 241 => 0x87, 328 => 0x400, 333 => 0x1004, 388 => 0xc, 395 => 0x4, 419 => 0x20, 420 => 0x100a, 429 => 0x225, 440 => 0x13, 441 => 0x7f, 442 => 0x20, 459 => 0x10, 463 => 0x1138, 464 => 0x1138, 465 => 0x1114, 466 => 0x1190, 467 => 0x116c, 468 => 0x1024, 469 => 0x21c, 470 => 0x21c, 471 => 0x211, 523 => [\'Flash','FlashMode'] }, + 'flashmodebutton' => { 251 => 0x80e }, + 'flashmodebuttonplaybackmode' => { 251 => 0x818 }, + 'flashmodel' => { 164 => 'Model', 183 => 'FlashModel', 329 => 0x1001 }, + 'flashoptions' => { 368 => 0x2 }, + 'flashoptions2' => { 368 => 0x10 }, + 'flashoutput' => { 47 => 0x248, 81 => 0x21, 219 => 0xa, 220 => 0xa, 221 => 0xa, 222 => 0x27, 224 => 0x21, 230 => 0x21e, 245 => 0x2de, 246 => 0x152, 249 => 0x1b2, 250 => 0x1c6, 251 => 0x1c6 }, + 'flashpixversion' => { 124 => 0xa000, 523 => 'FlashpixVersion' }, + 'flashredeyemode' => { 523 => [\'Flash','FlashRedEyeMode'] }, + 'flashremotecontrol' => { 230 => 0x228, 245 => 0x2e8, 246 => 0x15c, 249 => 0x1bc, 328 => 0x403 }, + 'flashreturn' => { 523 => [\'Flash','FlashReturn'] }, + 'flashserialnumber' => { 164 => 'SerialNumber', 329 => 0x1003 }, 'flashsetting' => { 241 => 0x8 }, - 'flashshutterspeed' => { 306 => '20.2', 307 => '23.2', 309 => '23.2', 310 => '23.2', 315 => '15.2', 316 => '22.2', 317 => '7.2', 318 => '22.2', 319 => '23.2', 320 => '23.2', 321 => '23.1', 322 => 0x57, 323 => 0x57, 324 => 0x57 }, + 'flashshutterspeed' => { 307 => '20.2', 308 => '23.2', 310 => '23.2', 311 => '23.2', 316 => '15.2', 317 => '22.2', 318 => '7.2', 319 => '22.2', 320 => '23.2', 321 => '23.2', 322 => '23.1', 323 => 0x5b, 324 => 0x57, 325 => 0x57, 326 => 0x57 }, 'flashsource' => { 219 => 0x4, 220 => 0x4, 221 => 0x4, 222 => 0x4, 223 => 0x4, 224 => 0x4 }, - 'flashstatus' => { 373 => 0x0, 457 => [0x82,0x86], 471 => 0x31, 472 => 0x39, 473 => 0x39 }, - 'flashstatusbuilt-in' => { 440 => [0x87,0x287] }, - 'flashstatusexternal' => { 440 => [0x88,0x288] }, - 'flashsyncspeed' => { 306 => '20.1', 307 => '23.1', 309 => '23.1', 310 => '23.1', 315 => '15.1', 316 => '22.1', 318 => '22.1', 319 => '23.1', 320 => '23.1', 322 => 0x53, 323 => 0x53, 324 => 0x53 }, + 'flashstatus' => { 375 => 0x0, 459 => [0x82,0x86], 473 => 0x31, 474 => 0x39, 475 => 0x39 }, + 'flashstatusbuilt-in' => { 442 => [0x87,0x287] }, + 'flashstatusexternal' => { 442 => [0x88,0x288] }, + 'flashsyncspeed' => { 307 => '20.1', 308 => '23.1', 310 => '23.1', 311 => '23.1', 316 => '15.1', 317 => '22.1', 319 => '22.1', 320 => '23.1', 321 => '23.1', 323 => 0x57, 324 => 0x53, 325 => 0x53, 326 => 0x53 }, 'flashsyncspeedav' => { 87 => 0x3, 89 => 0x10f, 90 => 0x2, 91 => 0x3, 92 => 0x2, 93 => 0x2, 94 => 0x3, 95 => 0x6 }, 'flashthreshold' => { 99 => 0x1 }, - 'flashtype' => { 164 => 'Type', 189 => 0x59, 241 => 0x9, 327 => 0x1000 }, - 'flashwarning' => { 316 => '30.1', 317 => '7.1', 321 => '31.1', 350 => 0x62 }, - 'flashwirelessoption' => { 230 => 0x234, 245 => 0x15a, 248 => 0x1c8 }, - 'flexiblespotposition' => { 452 => 0x201d }, - 'flickadvancedirection' => { 322 => 0x25f, 323 => 0x25f, 324 => 0x277 }, - 'flickerreduce' => { 427 => 0x218 }, - 'flickerreduction' => { 132 => 0x1446, 269 => 0x7 }, - 'flickerreductionindicator' => { 264 => 0x532 }, - 'flickerreductionshooting' => { 246 => 0x1b4, 247 => 0x1b4, 248 => 0x1a4, 249 => 0x1b8, 250 => 0x1b8 }, + 'flashtype' => { 164 => 'Type', 189 => 0x59, 241 => 0x9, 329 => 0x1000 }, + 'flashwarning' => { 317 => '30.1', 318 => '7.1', 322 => '31.1', 352 => 0x62 }, + 'flashwirelessoption' => { 230 => 0x234, 245 => 0x2e6, 246 => 0x15a, 249 => 0x1c8 }, + 'flexiblespotposition' => { 454 => 0x201d }, + 'flickadvancedirection' => { 324 => 0x25f, 325 => 0x25f, 326 => 0x277 }, + 'flickerreduce' => { 429 => 0x218 }, + 'flickerreduction' => { 132 => 0x1446, 270 => 0x7 }, + 'flickerreductionindicator' => { 265 => 0x532 }, + 'flickerreductionshooting' => { 245 => 0x2d0, 247 => 0x1b4, 248 => 0x1b4, 249 => 0x1a4, 250 => 0x1b8, 251 => 0x1b8 }, 'flightpitchdegree' => { 121 => 'FlightPitchDegree' }, 'flightrolldegree' => { 121 => 'FlightRollDegree' }, 'flightxspeed' => { 121 => 'FlightXSpeed' }, 'flightyawdegree' => { 121 => 'FlightYawDegree' }, 'flightyspeed' => { 121 => 'FlightYSpeed' }, 'flightzspeed' => { 121 => 'FlightZSpeed' }, - 'fliphorizontal' => { 299 => 0x76a43206 }, - 'fnumber' => { 7 => 0x3, 9 => 0x3, 11 => 0x3, 13 => 0x3, 14 => 0x3, 15 => 0x3, 16 => 0x3, 17 => 0x3, 18 => 0x3, 19 => 0x3, 20 => 0x3, 21 => 0x3, 22 => 0x3, 23 => 0x3, 24 => 0x3, 25 => 0x3, 26 => 0x3, 27 => 0x3, 28 => 0x3, 29 => 0x3, 31 => 0x5, 32 => 0x6, 81 => 0x15, 124 => 0x829d, 142 => 0xfd04, 145 => 0x1e, 147 => 0xfa23, 149 => 0xf103, 152 => 0x13, 154 => 0x3c, 156 => 0x1c, 157 => 0x18, 159 => 0xc, 168 => 'FNumber', 186 => 0xa, 187 => 0x36, 188 => 0x47, 189 => 0x9, 192 => 0x49c7, 239 => 0x38, 349 => 0x35a, 386 => 0x13, 425 => 0xa019, 428 => [0x31,0x49], 438 => 0x1, 439 => 0x1, 457 => [0x20,0x22,0x26], 521 => 'FNumber' }, - 'focaldistance' => { 501 => 'FocalDistance' }, - 'focallength' => { 7 => 0x1d, 8 => 0xa, 9 => 0x23, 10 => 0x9, 11 => 0x1d, 12 => 0x9, 13 => 0x1e, 14 => 0x1d, 15 => 0x1d, 16 => 0x1e, 17 => 0x1e, 18 => 0x1e, 19 => 0x28, 20 => 0x1e, 21 => 0x23, 22 => 0x1e, 23 => 0x1e, 24 => 0x23, 25 => 0x23, 26 => 0x23, 27 => 0x23, 28 => 0x1e, 29 => 0x23, 62 => 0x1, 65 => 0x7, 118 => 0x1d, 124 => 0x920a, 152 => 0x1d, 168 => 'FocalLength', 186 => 0x12, 234 => 0xa, 235 => 0xb, 239 => [0xc,0x3c], 344 => 0x1, 386 => 0x1d, 395 => 0x403, 418 => 0x1500, 437 => 0xe, 465 => 0x1278, 466 => 0x1134, 467 => 0x32c, 468 => 0x32c, 469 => 0x30a, 521 => 'FocalLength' }, - 'focallength2' => { 457 => [0x23,0x25,0x29] }, - 'focallength35mm' => { 340 => 'FocalLength35mm' }, - 'focallengthin35mmformat' => { 124 => 0xa405, 425 => 0xa01a, 521 => 'FocalLengthIn35mmFilm' }, - 'focallengthtelezoom' => { 437 => 0x10 }, - 'focalplaneafpointarea' => { 470 => 0x2 }, - 'focalplaneafpointlocation1' => { 470 => 0x6 }, - 'focalplaneafpointlocation10' => { 470 => 0x2a }, - 'focalplaneafpointlocation11' => { 470 => 0x2e }, - 'focalplaneafpointlocation12' => { 470 => 0x32 }, - 'focalplaneafpointlocation13' => { 470 => 0x36 }, - 'focalplaneafpointlocation14' => { 470 => 0x3a }, - 'focalplaneafpointlocation15' => { 470 => 0x3e }, - 'focalplaneafpointlocation2' => { 470 => 0xa }, - 'focalplaneafpointlocation3' => { 470 => 0xe }, - 'focalplaneafpointlocation4' => { 470 => 0x12 }, - 'focalplaneafpointlocation5' => { 470 => 0x16 }, - 'focalplaneafpointlocation6' => { 470 => 0x1a }, - 'focalplaneafpointlocation7' => { 470 => 0x1e }, - 'focalplaneafpointlocation8' => { 470 => 0x22 }, - 'focalplaneafpointlocation9' => { 470 => 0x26 }, - 'focalplaneafpointsused' => { 470 => 0x1 }, - 'focalplanediagonal' => { 327 => 0x103, 331 => 0x205 }, - 'focalplaneresolutionunit' => { 124 => 0xa210, 521 => 'FocalPlaneResolutionUnit' }, - 'focalplanexresolution' => { 124 => 0xa20e, 521 => 'FocalPlaneXResolution' }, + 'fliphorizontal' => { 300 => 0x76a43206 }, + 'fnumber' => { 7 => 0x3, 9 => 0x3, 11 => 0x3, 13 => 0x3, 14 => 0x3, 15 => 0x3, 16 => 0x3, 17 => 0x3, 18 => 0x3, 19 => 0x3, 20 => 0x3, 21 => 0x3, 22 => 0x3, 23 => 0x3, 24 => 0x3, 25 => 0x3, 26 => 0x3, 27 => 0x3, 28 => 0x3, 29 => 0x3, 31 => 0x5, 32 => 0x6, 81 => 0x15, 124 => 0x829d, 142 => 0xfd04, 145 => 0x1e, 147 => 0xfa23, 149 => 0xf103, 152 => 0x13, 154 => 0x3c, 156 => 0x1c, 157 => 0x18, 159 => 0xc, 168 => 'FNumber', 186 => 0xa, 187 => 0x36, 188 => 0x47, 189 => 0x9, 192 => 0x49c7, 239 => 0x38, 351 => 0x35a, 388 => 0x13, 427 => 0xa019, 430 => [0x31,0x49], 440 => 0x1, 441 => 0x1, 459 => [0x20,0x22,0x26], 523 => 'FNumber' }, + 'focaldistance' => { 503 => 'FocalDistance' }, + 'focallength' => { 7 => 0x1d, 8 => 0xa, 9 => 0x23, 10 => 0x9, 11 => 0x1d, 12 => 0x9, 13 => 0x1e, 14 => 0x1d, 15 => 0x1d, 16 => 0x1e, 17 => 0x1e, 18 => 0x1e, 19 => 0x28, 20 => 0x1e, 21 => 0x23, 22 => 0x1e, 23 => 0x1e, 24 => 0x23, 25 => 0x23, 26 => 0x23, 27 => 0x23, 28 => 0x1e, 29 => 0x23, 62 => 0x1, 65 => 0x7, 118 => 0x1d, 124 => 0x920a, 152 => 0x1d, 168 => 'FocalLength', 186 => 0x12, 234 => 0xa, 235 => 0xb, 239 => [0xc,0x3c], 346 => 0x1, 388 => 0x1d, 397 => 0x403, 420 => 0x1500, 439 => 0xe, 467 => 0x1278, 468 => 0x1134, 469 => 0x32c, 470 => 0x32c, 471 => 0x30a, 523 => 'FocalLength' }, + 'focallength2' => { 459 => [0x23,0x25,0x29] }, + 'focallength35mm' => { 342 => 'FocalLength35mm' }, + 'focallengthin35mmformat' => { 124 => 0xa405, 427 => 0xa01a, 523 => 'FocalLengthIn35mmFilm' }, + 'focallengthtelezoom' => { 439 => 0x10 }, + 'focalplaneafpointarea' => { 472 => 0x2 }, + 'focalplaneafpointlocation1' => { 472 => 0x6 }, + 'focalplaneafpointlocation10' => { 472 => 0x2a }, + 'focalplaneafpointlocation11' => { 472 => 0x2e }, + 'focalplaneafpointlocation12' => { 472 => 0x32 }, + 'focalplaneafpointlocation13' => { 472 => 0x36 }, + 'focalplaneafpointlocation14' => { 472 => 0x3a }, + 'focalplaneafpointlocation15' => { 472 => 0x3e }, + 'focalplaneafpointlocation2' => { 472 => 0xa }, + 'focalplaneafpointlocation3' => { 472 => 0xe }, + 'focalplaneafpointlocation4' => { 472 => 0x12 }, + 'focalplaneafpointlocation5' => { 472 => 0x16 }, + 'focalplaneafpointlocation6' => { 472 => 0x1a }, + 'focalplaneafpointlocation7' => { 472 => 0x1e }, + 'focalplaneafpointlocation8' => { 472 => 0x22 }, + 'focalplaneafpointlocation9' => { 472 => 0x26 }, + 'focalplaneafpointsused' => { 472 => 0x1 }, + 'focalplanediagonal' => { 329 => 0x103, 333 => 0x205 }, + 'focalplaneresolutionunit' => { 124 => 0xa210, 523 => 'FocalPlaneResolutionUnit' }, + 'focalplanexresolution' => { 124 => 0xa20e, 523 => 'FocalPlaneXResolution' }, 'focalplanexsize' => { 62 => 0x2 }, 'focalplanexunknown' => { 62 => 0x2 }, - 'focalplaneyresolution' => { 124 => 0xa20f, 521 => 'FocalPlaneYResolution' }, + 'focalplaneyresolution' => { 124 => 0xa20f, 523 => 'FocalPlaneYResolution' }, 'focalplaneysize' => { 62 => 0x3 }, 'focalplaneyunknown' => { 62 => 0x3 }, - 'focalpointx' => { 501 => 'FocalPointX' }, - 'focalpointy' => { 501 => 'FocalPointY' }, + 'focalpointx' => { 503 => 'FocalPointX' }, + 'focalpointy' => { 503 => 'FocalPointY' }, 'focaltype' => { 10 => 0x2d, 62 => 0x0 }, 'focalunits' => { 36 => 0x19 }, - 'focus' => { 288 => 0x8 }, + 'focus' => { 289 => 0x8 }, 'focusarea' => { 186 => 0x31 }, - 'focusareaselection' => { 317 => '15.2' }, - 'focusbracket' => { 350 => 0xbd }, - 'focusbracketstepsize' => { 326 => 0x308 }, + 'focusareaselection' => { 318 => '15.2' }, + 'focusbracket' => { 352 => 0xbd }, + 'focusbracketstepsize' => { 328 => 0x308 }, 'focuscontinuous' => { 36 => 0x20 }, 'focusdisplayaiservoandmf' => { 89 => 0x515 }, - 'focusdistance' => { 168 => 'FocusDistance', 186 => 0x13, 192 => 0x49bb, 234 => 0x9, 235 => 0xa, 239 => [0xb,0x4e], 329 => 0x305, 344 => 0x0, 348 => 0x304, 349 => 0x304 }, + 'focusdistance' => { 168 => 'FocusDistance', 186 => 0x13, 192 => 0x49bb, 234 => 0x9, 235 => 0xa, 239 => [0xb,0x4e], 331 => 0x305, 346 => 0x0, 350 => 0x304, 351 => 0x304 }, 'focusdistancelower' => { 7 => 0x45, 9 => 0x8e, 11 => 0x45, 13 => 0x56, 14 => 0x45, 15 => 0x45, 16 => 0x52, 17 => 0x52, 18 => 0x56, 20 => 0x52, 21 => 0x8e, 22 => 0x59, 23 => 0x57, 24 => 0x8e, 25 => 0x94, 26 => 0x95, 27 => 0xa7, 28 => 0x56, 29 => 0xa7, 60 => 0x15, 81 => 0x14 }, 'focusdistancerange' => { 1 => 0xc }, 'focusdistancerangewidth' => { 239 => 0x4c }, 'focusdistanceupper' => { 7 => 0x43, 9 => 0x8c, 11 => 0x43, 13 => 0x54, 14 => 0x43, 15 => 0x43, 16 => 0x50, 17 => 0x50, 18 => 0x54, 20 => 0x50, 21 => 0x8c, 22 => 0x57, 23 => 0x55, 24 => 0x8c, 25 => 0x92, 26 => 0x93, 27 => 0xa5, 28 => 0x54, 29 => 0xa5, 60 => 0x14, 81 => 0x13 }, 'focusholdbutton' => { 189 => 0x44 }, - 'focusinfoversion' => { 329 => 0x0 }, + 'focusinfoversion' => { 331 => 0x0 }, 'focusingscreen' => { 88 => 0x0, 89 => 0x80b, 94 => 0x0 }, - 'focuslocation' => { 452 => 0x2027 }, - 'focuslocation2' => { 452 => 0x204a }, + 'focuslocation' => { 454 => 0x2027 }, + 'focuslocation2' => { 454 => 0x204a }, 'focuslocked' => { 185 => 0x14 }, - 'focusmode' => { 36 => 0x7, 117 => 0x3, 118 => [0x3003,0xd], 132 => 0x1021, 143 => 0x3f5, 145 => 0x38, 161 => 'FocusMode', 186 => 0x30, 188 => 0xe, 189 => 0xc, 241 => 0x7, 326 => 0x301, 331 => 0x100b, 350 => 0x7, 386 => 0xd, 393 => 0x3, 418 => 0x1006, 431 => [0xb,0x5], 437 => [0x15,0x1d], 438 => 0x4d, 439 => 0x4d, 452 => [0xb042,0xb04e,0x201b], 457 => 0x13, 478 => 0x16 }, - 'focusmode2' => { 131 => '0.1', 366 => '3.1', 457 => [0x2c,0x2e,0x32] }, - 'focusmodesetting' => { 308 => '10.1', 435 => 0x14, 436 => 0x15, 438 => 0x10, 439 => 0xf, 440 => 0x6 }, - 'focusmodeswitch' => { 189 => 0x58, 438 => 0x2e }, - 'focuspeakingdisplay' => { 322 => 0x235, 323 => 0x235, 324 => 0x24d }, - 'focuspeakinghighlightcolor' => { 322 => 0x4b, 323 => 0x4b, 324 => 0x4b }, - 'focuspeakinglevel' => { 322 => 0x49, 323 => 0x49, 324 => 0x49 }, + 'focusmode' => { 36 => 0x7, 117 => 0x3, 118 => [0x3003,0xd], 132 => 0x1021, 143 => 0x3f5, 145 => 0x38, 161 => 'FocusMode', 186 => 0x30, 188 => 0xe, 189 => 0xc, 241 => 0x7, 328 => 0x301, 333 => 0x100b, 352 => 0x7, 388 => 0xd, 395 => 0x3, 420 => 0x1006, 433 => [0xb,0x5], 439 => [0x15,0x1d], 440 => 0x4d, 441 => 0x4d, 454 => [0xb042,0xb04e,0x201b], 459 => 0x13, 480 => 0x16 }, + 'focusmode2' => { 131 => '0.1', 368 => '3.1', 459 => [0x2c,0x2e,0x32] }, + 'focusmodesetting' => { 309 => '10.1', 437 => 0x14, 438 => 0x15, 440 => 0x10, 441 => 0xf, 442 => 0x6 }, + 'focusmodeswitch' => { 189 => 0x58, 440 => 0x2e }, + 'focuspeakingdisplay' => { 323 => 0x22f, 324 => 0x235, 325 => 0x235, 326 => 0x24d }, + 'focuspeakinghighlightcolor' => { 323 => 0x53, 324 => 0x4b, 325 => 0x4b, 326 => 0x4b }, + 'focuspeakinglevel' => { 323 => 0x51, 324 => 0x49, 325 => 0x49, 326 => 0x49 }, 'focuspixel' => { 132 => 0x1023 }, - 'focuspointlock' => { 322 => 0x1d3, 323 => 0x1d3, 324 => 0x1eb }, - 'focuspointpersistence' => { 322 => 0x105, 323 => 0x105, 324 => 0x11b }, - 'focuspointwrap' => { 306 => '2.2', 307 => '2.2', 309 => '2.1', 310 => '2.1', 314 => '1.1', 315 => '2.2', 316 => '1.1', 319 => '2.2', 320 => '2.1', 321 => '2.5', 322 => 0x16, 323 => 0x16, 324 => 0x16 }, - 'focusposition' => { 1 => 0x2f, 234 => 0x8, 235 => 0x8, 386 => 0x10, 449 => 0x9bb }, - 'focusposition2' => { 457 => [0x29,0x2b,0x2f], 478 => 0x2d, 481 => 0x20 }, + 'focuspointlock' => { 324 => 0x1d3, 325 => 0x1d3, 326 => 0x1eb }, + 'focuspointpersistence' => { 323 => 0xf5, 324 => 0x105, 325 => 0x105, 326 => 0x11b }, + 'focuspointwrap' => { 307 => '2.2', 308 => '2.2', 310 => '2.1', 311 => '2.1', 315 => '1.1', 316 => '2.2', 317 => '1.1', 320 => '2.2', 321 => '2.1', 322 => '2.5', 323 => 0x16, 324 => 0x16, 325 => 0x16, 326 => 0x16 }, + 'focusposition' => { 1 => 0x2f, 234 => 0x8, 235 => 0x8, 388 => 0x10, 451 => 0x9bb }, + 'focusposition2' => { 459 => [0x29,0x2b,0x2f], 480 => 0x2d, 483 => 0x20 }, 'focuspositionhorizontal' => { 198 => 0x2f, 199 => 0x43 }, 'focuspositionvertical' => { 198 => 0x31, 199 => 0x45 }, - 'focusprocess' => { 326 => 0x302 }, - 'focusrange' => { 36 => 0x12, 331 => 0x100a }, - 'focusrangeindex' => { 376 => '3.1' }, + 'focusprocess' => { 328 => 0x302 }, + 'focusrange' => { 36 => 0x12, 333 => 0x100a }, + 'focusrangeindex' => { 378 => '3.1' }, 'focusresult' => { 199 => 0x4a }, 'focusringrotation' => { 89 => 0x713 }, - 'focussetting' => { 428 => 0x6 }, - 'focusshiftautoreset' => { 249 => 0x6da, 250 => 0x748 }, - 'focusshiftexposurelock' => { 230 => 0x1b4, 245 => 0xe8, 246 => 0x100, 247 => 0x100, 248 => 0xf4, 249 => 0x104, 250 => 0x104 }, - 'focusshiftinterval' => { 230 => 0x1b0, 245 => 0xe4, 246 => 0xfc, 247 => 0xfc, 248 => 0xf0, 249 => 0x100, 250 => 0x100 }, - 'focusshiftnumbershots' => { 230 => 0x1a8, 245 => 0xdc, 246 => 0xf4, 247 => 0xf4, 248 => 0xe8, 249 => 0xf8, 250 => 0xf8 }, - 'focusshiftshooting' => { 267 => 0x20 }, - 'focusshiftstepwidth' => { 230 => 0x1ac, 245 => 0xe0, 246 => 0xf8, 247 => 0xf8, 248 => 0xec, 249 => 0xfc, 250 => 0xfc }, - 'focusstatus' => { 437 => 0x19, 438 => 0x53, 439 => 0x53 }, - 'focusstepcount' => { 329 => 0x301, 331 => 0x100e }, - 'focusstepinfinity' => { 329 => 0x303, 331 => 0x103b }, - 'focusstepnear' => { 329 => 0x304, 331 => 0x103c }, + 'focussetting' => { 430 => 0x6 }, + 'focusshiftautoreset' => { 250 => 0x6da, 251 => 0x748 }, + 'focusshiftexposurelock' => { 230 => 0x1b4, 245 => 0x224, 246 => 0xe8, 247 => 0x100, 248 => 0x100, 249 => 0xf4, 250 => 0x104, 251 => 0x104 }, + 'focusshiftinterval' => { 230 => 0x1b0, 245 => 0x220, 246 => 0xe4, 247 => 0xfc, 248 => 0xfc, 249 => 0xf0, 250 => 0x100, 251 => 0x100 }, + 'focusshiftnumbershots' => { 230 => 0x1a8, 245 => 0x218, 246 => 0xdc, 247 => 0xf4, 248 => 0xf4, 249 => 0xe8, 250 => 0xf8, 251 => 0xf8 }, + 'focusshiftshooting' => { 268 => 0x20 }, + 'focusshiftstepwidth' => { 230 => 0x1ac, 245 => 0x21c, 246 => 0xe0, 247 => 0xf8, 248 => 0xf8, 249 => 0xec, 250 => 0xfc, 251 => 0xfc }, + 'focusstatus' => { 439 => 0x19, 440 => 0x53, 441 => 0x53 }, + 'focusstepcount' => { 331 => 0x301, 333 => 0x100e }, + 'focusstepinfinity' => { 331 => 0x303, 333 => 0x103b }, + 'focusstepnear' => { 331 => 0x304, 333 => 0x103c }, 'focusstepsfrominfinity' => { 239 => 0x58 }, - 'focustrackinglockon' => { 306 => ['1.5','4.1'], 307 => '1.4', 314 => '0.4', 315 => '3.1', 316 => '0.4', 319 => '1.4' }, + 'focustrackinglockon' => { 307 => ['1.5','4.1'], 308 => '1.4', 315 => '0.4', 316 => '3.1', 317 => '0.4', 320 => '1.4' }, 'focuswarning' => { 132 => 0x1301 }, 'foldername' => { 186 => 0x27 }, - 'foldernumber' => { 438 => 0x9a, 440 => [0x402,0x114,0x316] }, - 'fontcomposite' => { 549 => [\'Fonts','FontsComposite'] }, - 'fontface' => { 549 => [\'Fonts','FontsFontFace'] }, - 'fontfamily' => { 549 => [\'Fonts','FontsFontFamily'] }, - 'fontfilename' => { 549 => [\'Fonts','FontsFontFileName'] }, - 'fontname' => { 549 => [\'Fonts','FontsFontName'] }, - 'fonts' => { 549 => 'Fonts' }, - 'fonttype' => { 549 => [\'Fonts','FontsFontType'] }, - 'fontversion' => { 549 => [\'Fonts','FontsVersionString'] }, - 'for' => { 402 => 'For' }, + 'foldernumber' => { 440 => 0x9a, 442 => [0x402,0x114,0x316] }, + 'fontcomposite' => { 551 => [\'Fonts','FontsComposite'] }, + 'fontface' => { 551 => [\'Fonts','FontsFontFace'] }, + 'fontfamily' => { 551 => [\'Fonts','FontsFontFamily'] }, + 'fontfilename' => { 551 => [\'Fonts','FontsFontFileName'] }, + 'fontname' => { 551 => [\'Fonts','FontsFontName'] }, + 'fonts' => { 551 => 'Fonts' }, + 'fonttype' => { 551 => [\'Fonts','FontsFontType'] }, + 'fontversion' => { 551 => [\'Fonts','FontsVersionString'] }, + 'for' => { 404 => 'For' }, 'forcewrite' => { 125 => 'ForceWrite' }, - 'format' => { 411 => "\xa9fmt", 500 => 'Format', 518 => 'format', 542 => 'Format' }, - 'forwardlock' => { 539 => 'forwardlock' }, + 'format' => { 413 => "\xa9fmt", 502 => 'Format', 520 => 'format', 544 => 'Format' }, + 'forwardlock' => { 541 => 'forwardlock' }, 'forwardmatrix1' => { 124 => 0xc714 }, 'forwardmatrix2' => { 124 => 0xc715 }, 'forwardmatrix3' => { 124 => 0xcd34 }, @@ -3243,43 +3245,43 @@ my %tagLookup = ( 'fossilspecimenmaterialsampleid' => { 123 => [\'FossilSpecimen','FossilSpecimenMaterialSampleID'] }, 'framecount' => { 71 => [0x2,0x4] }, 'frameheight' => { 132 => 0x3822 }, - 'framenum' => { 397 => 0xd7 }, - 'framenumber' => { 132 => 0x8003, 192 => 0x3c, 386 => 0x29 }, + 'framenum' => { 399 => 0xd7 }, + 'framenumber' => { 132 => 0x8003, 192 => 0x3c, 388 => 0x29 }, 'framerate' => { 71 => [0x1,0x6], 124 => 0xc764, 132 => 0x3820 }, - 'framereadouttime' => { 405 => 'camera.framereadouttimeinmicroseconds' }, + 'framereadouttime' => { 407 => 'camera.framereadouttimeinmicroseconds' }, 'framewidth' => { 132 => 0x3821 }, - 'framing' => { 533 => 'framing' }, + 'framing' => { 535 => 'framing' }, 'freebytes' => { 102 => 0x1 }, 'freememorycardimages' => { 187 => [0x37,0x54], 188 => [0x2d,0x4a], 189 => 0x32 }, 'fujiflashmode' => { 132 => 0x1010 }, 'fujimodel' => { 132 => 0x1447 }, 'fujimodel2' => { 132 => 0x1448 }, 'fullhdhighspeedrec' => { 132 => 0x3824 }, - 'fullimagesize' => { 452 => 0xb02b }, - 'fullpanoheightpixels' => { 503 => 'FullPanoHeightPixels', 504 => 'FullPanoHeightPixels' }, - 'fullpanowidthpixels' => { 503 => 'FullPanoWidthPixels', 504 => 'FullPanoWidthPixels' }, - 'fullpresssnap' => { 418 => 0x100d }, + 'fullimagesize' => { 454 => 0xb02b }, + 'fullpanoheightpixels' => { 505 => 'FullPanoHeightPixels', 506 => 'FullPanoHeightPixels' }, + 'fullpanowidthpixels' => { 505 => 'FullPanoWidthPixels', 506 => 'FullPanoWidthPixels' }, + 'fullpresssnap' => { 420 => 0x100d }, 'fullsizeimage' => { 167 => 'data' }, 'fullsizeimagename' => { 167 => '1Name' }, 'fullsizeimagetype' => { 167 => '0Type' }, - 'func1button' => { 309 => '14.1', 310 => '14.1', 320 => '14.1', 322 => 0x63, 323 => 0x63, 324 => 0x63 }, - 'func1buttonplaybackmode' => { 322 => 0x1a5, 323 => 0x1a5, 324 => 0x1bd }, - 'func1buttonplusdials' => { 309 => '42.1', 310 => '42.1', 320 => '42.1' }, - 'func2button' => { 309 => '80.1', 310 => '80.1', 320 => '80.1', 322 => 0x73, 323 => 0x73, 324 => 0x73 }, - 'func2buttonplaybackmode' => { 322 => 0x1a7, 323 => 0x1a7, 324 => 0x1bf }, - 'func2buttonplusdials' => { 309 => '81.1' }, - 'func3button' => { 309 => '83.1', 323 => 0x119, 324 => 0x131 }, - 'func3buttonplaybackmode' => { 323 => 0x1a9, 324 => 0x1c1 }, - 'func4button' => { 323 => 0x175, 324 => 0x18d }, - 'func4buttonplaybackmode' => { 323 => 0x1af, 324 => 0x1c7 }, - 'funcbutton' => { 306 => ['14.1','15.1'], 307 => '14.1', 315 => '28.1', 316 => '13.1', 319 => '14.1', 321 => '14.1' }, - 'funcbuttonplusdials' => { 306 => ['14.2','15.2'], 307 => '14.2', 315 => '31.1', 319 => '42.1' }, - 'functionbutton' => { 313 => '13.1', 317 => '5.2' }, - 'gainbase' => { 330 => 0x610 }, - 'gaincontrol' => { 124 => 0xa407, 521 => 'GainControl' }, - 'gainmapmax' => { 526 => 'GainMapMax' }, - 'gainmapmin' => { 526 => 'GainMapMin' }, - 'gamma' => { 124 => 0xa500, 143 => 0x8fe, 337 => 'gAMA', 355 => 0x11c, 522 => 'Gamma', 526 => 'Gamma' }, + 'func1button' => { 310 => '14.1', 311 => '14.1', 321 => '14.1', 323 => 0x67, 324 => 0x63, 325 => 0x63, 326 => 0x63 }, + 'func1buttonplaybackmode' => { 323 => 0x19f, 324 => 0x1a5, 325 => 0x1a5, 326 => 0x1bd }, + 'func1buttonplusdials' => { 310 => '42.1', 311 => '42.1', 321 => '42.1' }, + 'func2button' => { 310 => '80.1', 311 => '80.1', 321 => '80.1', 323 => 0x77, 324 => 0x73, 325 => 0x73, 326 => 0x73 }, + 'func2buttonplaybackmode' => { 323 => 0x1a1, 324 => 0x1a7, 325 => 0x1a7, 326 => 0x1bf }, + 'func2buttonplusdials' => { 310 => '81.1' }, + 'func3button' => { 310 => '83.1', 325 => 0x119, 326 => 0x131 }, + 'func3buttonplaybackmode' => { 325 => 0x1a9, 326 => 0x1c1 }, + 'func4button' => { 325 => 0x175, 326 => 0x18d }, + 'func4buttonplaybackmode' => { 325 => 0x1af, 326 => 0x1c7 }, + 'funcbutton' => { 307 => ['14.1','15.1'], 308 => '14.1', 316 => '28.1', 317 => '13.1', 320 => '14.1', 322 => '14.1' }, + 'funcbuttonplusdials' => { 307 => ['14.2','15.2'], 308 => '14.2', 316 => '31.1', 320 => '42.1' }, + 'functionbutton' => { 314 => '13.1', 318 => '5.2' }, + 'gainbase' => { 332 => 0x610 }, + 'gaincontrol' => { 124 => 0xa407, 523 => 'GainControl' }, + 'gainmapmax' => { 528 => 'GainMapMax' }, + 'gainmapmin' => { 528 => 'GainMapMin' }, + 'gamma' => { 124 => 0xa500, 143 => 0x8fe, 339 => 'gAMA', 357 => 0x11c, 524 => 'Gamma', 528 => 'Gamma' }, 'gammablackpoint' => { 110 => 0xc }, 'gammacolortone' => { 110 => 0x3 }, 'gammacompensatedvalue' => { 138 => 0x91 }, @@ -3295,20 +3297,20 @@ my %tagLookup = ( 'gammaunsharpmaskstrength' => { 110 => 0x5 }, 'gammaunsharpmaskthreshold' => { 110 => 0x7 }, 'gammawhitepoint' => { 110 => 0xd }, - 'garminsettings' => { 411 => 'pmcc' }, - 'garminsoftware' => { 411 => 'uuid' }, + 'garminsettings' => { 413 => 'pmcc' }, + 'garminsoftware' => { 413 => 'uuid' }, 'gdalmetadata' => { 124 => 0xa480 }, 'gdalnodata' => { 124 => 0xa481 }, 'geimagesize' => { 132 => 0x1304 }, 'gemake' => { 134 => 0x300 }, 'gemodel' => { 134 => 0x207 }, - 'genre' => { 403 => ['gnre',"\xa9gen"], 405 => 'genre', 411 => ['gnre',"\xa9gen"], 529 => 'Genre', 534 => 'genre', 544 => 'genre' }, - 'genrecvid' => { 529 => [\'Genre','GenreCvId'] }, - 'genrecvtermid' => { 529 => [\'Genre','GenreCvTermId'] }, - 'genrecvtermname' => { 529 => [\'Genre','GenreCvTermName'] }, - 'genrecvtermrefinedabout' => { 529 => [\'Genre','GenreCvTermRefinedAbout'] }, - 'genreid' => { 403 => 'geID' }, - 'geography' => { 535 => 'geography' }, + 'genre' => { 405 => ['gnre',"\xa9gen"], 407 => 'genre', 413 => ['gnre',"\xa9gen"], 531 => 'Genre', 536 => 'genre', 546 => 'genre' }, + 'genrecvid' => { 531 => [\'Genre','GenreCvId'] }, + 'genrecvtermid' => { 531 => [\'Genre','GenreCvTermId'] }, + 'genrecvtermname' => { 531 => [\'Genre','GenreCvTermName'] }, + 'genrecvtermrefinedabout' => { 531 => [\'Genre','GenreCvTermRefinedAbout'] }, + 'genreid' => { 405 => 'geID' }, + 'geography' => { 537 => 'geography' }, 'geolocate' => { 125 => 'Geolocate' }, 'geologicalcontext' => { 123 => 'GeologicalContext' }, 'geologicalcontextbed' => { 123 => [\'GeologicalContext','GeologicalContextBed'] }, @@ -3322,272 +3324,272 @@ my %tagLookup = ( 'geotiffdirectory' => { 124 => 0x87af }, 'geotiffdoubleparams' => { 124 => 0x87b0 }, 'geotime' => { 125 => 'Geotime' }, - 'giftftppriority' => { 505 => 'GIFTFtpPriority' }, + 'giftftppriority' => { 507 => 'GIFTFtpPriority' }, 'gimbalpitchdegree' => { 121 => 'GimbalPitchDegree' }, 'gimbalreverse' => { 121 => 'GimbalReverse' }, 'gimbalrolldegree' => { 121 => 'GimbalRollDegree' }, 'gimbalyawdegree' => { 121 => 'GimbalYawDegree' }, - 'globalaltitude' => { 400 => 0x419 }, - 'globalangle' => { 400 => 0x40d }, - 'good' => { 544 => 'good' }, - 'googlehostheader' => { 403 => 'gshh' }, - 'googlepingmessage' => { 403 => 'gspm' }, - 'googlepingurl' => { 403 => 'gspu' }, + 'globalaltitude' => { 402 => 0x419 }, + 'globalangle' => { 402 => 0x40d }, + 'good' => { 546 => 'good' }, + 'googlehostheader' => { 405 => 'gshh' }, + 'googlepingmessage' => { 405 => 'gspm' }, + 'googlepingurl' => { 405 => 'gspu' }, 'googleplusuploadcode' => { 124 => 0x9009 }, - 'googlesourcedata' => { 403 => 'gssd' }, - 'googlestarttime' => { 403 => 'gsst' }, - 'googletrackduration' => { 403 => 'gstd' }, - 'goprotype' => { 411 => 'GoPr' }, - 'gpsaltitude' => { 135 => 0x6, 165 => 'Altitude', 521 => 'GPSAltitude' }, - 'gpsaltituderef' => { 135 => 0x5, 521 => 'GPSAltitudeRef' }, - 'gpsareainformation' => { 135 => 0x1c, 521 => 'GPSAreaInformation' }, - 'gpscoordinates' => { 403 => "\xa9xyz", 405 => 'location.ISO6709', 411 => ['@xyz',"\xa9xyz"] }, + 'googlesourcedata' => { 405 => 'gssd' }, + 'googlestarttime' => { 405 => 'gsst' }, + 'googletrackduration' => { 405 => 'gstd' }, + 'goprotype' => { 413 => 'GoPr' }, + 'gpsaltitude' => { 135 => 0x6, 165 => 'Altitude', 523 => 'GPSAltitude' }, + 'gpsaltituderef' => { 135 => 0x5, 523 => 'GPSAltitudeRef' }, + 'gpsareainformation' => { 135 => 0x1c, 523 => 'GPSAreaInformation' }, + 'gpscoordinates' => { 405 => "\xa9xyz", 407 => 'location.ISO6709', 413 => ['@xyz',"\xa9xyz"] }, 'gpsdatestamp' => { 135 => 0x1d }, - 'gpsdatetime' => { 165 => 'DateTime', 521 => 'GPSTimeStamp' }, - 'gpsdestbearing' => { 135 => 0x18, 165 => 'Bearing', 521 => 'GPSDestBearing' }, - 'gpsdestbearingref' => { 135 => 0x17, 521 => 'GPSDestBearingRef' }, - 'gpsdestdistance' => { 135 => 0x1a, 165 => 'Distance', 521 => 'GPSDestDistance' }, - 'gpsdestdistanceref' => { 135 => 0x19, 521 => 'GPSDestDistanceRef' }, - 'gpsdestlatitude' => { 135 => 0x14, 521 => 'GPSDestLatitude' }, + 'gpsdatetime' => { 165 => 'DateTime', 523 => 'GPSTimeStamp' }, + 'gpsdestbearing' => { 135 => 0x18, 165 => 'Bearing', 523 => 'GPSDestBearing' }, + 'gpsdestbearingref' => { 135 => 0x17, 523 => 'GPSDestBearingRef' }, + 'gpsdestdistance' => { 135 => 0x1a, 165 => 'Distance', 523 => 'GPSDestDistance' }, + 'gpsdestdistanceref' => { 135 => 0x19, 523 => 'GPSDestDistanceRef' }, + 'gpsdestlatitude' => { 135 => 0x14, 523 => 'GPSDestLatitude' }, 'gpsdestlatituderef' => { 135 => 0x13 }, - 'gpsdestlongitude' => { 135 => 0x16, 521 => 'GPSDestLongitude' }, + 'gpsdestlongitude' => { 135 => 0x16, 523 => 'GPSDestLongitude' }, 'gpsdestlongituderef' => { 135 => 0x15 }, - 'gpsdifferential' => { 135 => 0x1e, 165 => 'Differential', 521 => 'GPSDifferential' }, - 'gpsdop' => { 135 => 0xb, 521 => 'GPSDOP' }, - 'gpshpositioningerror' => { 135 => 0x1f, 521 => 'GPSHPositioningError' }, - 'gpsimgdirection' => { 135 => 0x11, 521 => 'GPSImgDirection' }, - 'gpsimgdirectionref' => { 135 => 0x10, 521 => 'GPSImgDirectionRef' }, - 'gpslatitude' => { 119 => 'GPS-GPSLatitude', 121 => 'GpsLatitude', 135 => 0x2, 165 => 'Latitude', 521 => 'GPSLatitude' }, + 'gpsdifferential' => { 135 => 0x1e, 165 => 'Differential', 523 => 'GPSDifferential' }, + 'gpsdop' => { 135 => 0xb, 523 => 'GPSDOP' }, + 'gpshpositioningerror' => { 135 => 0x1f, 523 => 'GPSHPositioningError' }, + 'gpsimgdirection' => { 135 => 0x11, 523 => 'GPSImgDirection' }, + 'gpsimgdirectionref' => { 135 => 0x10, 523 => 'GPSImgDirectionRef' }, + 'gpslatitude' => { 119 => 'GPS-GPSLatitude', 121 => 'GpsLatitude', 135 => 0x2, 165 => 'Latitude', 523 => 'GPSLatitude' }, 'gpslatituderef' => { 135 => 0x1 }, - 'gpslongitude' => { 119 => 'GPS-GPSLongitude', 121 => 'GpsLongitude', 135 => 0x4, 165 => 'Longitude', 521 => 'GPSLongitude' }, + 'gpslongitude' => { 119 => 'GPS-GPSLongitude', 121 => 'GpsLongitude', 135 => 0x4, 165 => 'Longitude', 523 => 'GPSLongitude' }, 'gpslongituderef' => { 135 => 0x3 }, 'gpslongtitude' => { 121 => 'GpsLongtitude' }, - 'gpsmapdatum' => { 135 => 0x12, 165 => 'Datum', 521 => 'GPSMapDatum' }, - 'gpsmeasuremode' => { 135 => 0xa, 165 => 'MeasureMode', 521 => 'GPSMeasureMode' }, + 'gpsmapdatum' => { 135 => 0x12, 165 => 'Datum', 523 => 'GPSMapDatum' }, + 'gpsmeasuremode' => { 135 => 0xa, 165 => 'MeasureMode', 523 => 'GPSMeasureMode' }, 'gpsposition' => { 119 => 'Exif-GPSPosition' }, - 'gpsprocessingmethod' => { 135 => 0x1b, 521 => 'GPSProcessingMethod' }, - 'gpssatellites' => { 135 => 0x8, 165 => 'Satellites', 521 => 'GPSSatellites' }, - 'gpsspeed' => { 135 => 0xd, 165 => 'Speed', 521 => 'GPSSpeed' }, - 'gpsspeedref' => { 135 => 0xc, 521 => 'GPSSpeedRef' }, - 'gpsstatus' => { 135 => 0x9, 521 => 'GPSStatus' }, + 'gpsprocessingmethod' => { 135 => 0x1b, 523 => 'GPSProcessingMethod' }, + 'gpssatellites' => { 135 => 0x8, 165 => 'Satellites', 523 => 'GPSSatellites' }, + 'gpsspeed' => { 135 => 0xd, 165 => 'Speed', 523 => 'GPSSpeed' }, + 'gpsspeedref' => { 135 => 0xc, 523 => 'GPSSpeedRef' }, + 'gpsstatus' => { 135 => 0x9, 523 => 'GPSStatus' }, 'gpsstring' => { 143 => 0x402 }, 'gpstimestamp' => { 135 => 0x7 }, - 'gpstrack' => { 135 => 0xf, 165 => 'Heading', 521 => 'GPSTrack' }, - 'gpstrackref' => { 135 => 0xe, 521 => 'GPSTrackRef' }, - 'gpsversionid' => { 135 => 0x0, 521 => 'GPSVersionID' }, - 'gradation' => { 326 => 0x50f }, - 'gradientbasedcorractive' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] }, - 'gradientbasedcorramount' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] }, - 'gradientbasedcorrblacks2012' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'] }, - 'gradientbasedcorrbrightness' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] }, - 'gradientbasedcorrclarity' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] }, - 'gradientbasedcorrclarity2012' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] }, - 'gradientbasedcorrcontrast' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] }, - 'gradientbasedcorrcontrast2012' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] }, - 'gradientbasedcorrcorrectionname' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'] }, - 'gradientbasedcorrcorrectionsyncid' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'] }, - 'gradientbasedcorrdefringe' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] }, - 'gradientbasedcorrdehaze' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'] }, - 'gradientbasedcorrections' => { 515 => 'GradientBasedCorrections', 517 => 'GradientBasedCorrections' }, - 'gradientbasedcorrexposure' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] }, - 'gradientbasedcorrexposure2012' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] }, - 'gradientbasedcorrhighlights2012' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] }, - 'gradientbasedcorrhue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'] }, - 'gradientbasedcorrluminancenoise' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] }, - 'gradientbasedcorrmaskalpha' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] }, - 'gradientbasedcorrmaskangle' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] }, - 'gradientbasedcorrmaskbottom' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] }, - 'gradientbasedcorrmaskcentervalue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] }, - 'gradientbasedcorrmaskcenterweight' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'gradientbasedcorrmaskdabs' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] }, - 'gradientbasedcorrmaskfeather' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] }, - 'gradientbasedcorrmaskflipped' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] }, - 'gradientbasedcorrmaskflow' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] }, - 'gradientbasedcorrmaskfullx' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] }, - 'gradientbasedcorrmaskfully' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] }, - 'gradientbasedcorrmaskinputdigest' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'] }, - 'gradientbasedcorrmaskleft' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] }, - 'gradientbasedcorrmaskmaskactive' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'] }, - 'gradientbasedcorrmaskmaskblendmode' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'gradientbasedcorrmaskmaskdigest' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'gradientbasedcorrmaskmaskinverted' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'gradientbasedcorrmaskmaskname' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'] }, - 'gradientbasedcorrmaskmasks' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'] }, - 'gradientbasedcorrmaskmasksalpha' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'gradientbasedcorrmaskmasksangle' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'gradientbasedcorrmaskmasksbottom' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'gradientbasedcorrmaskmaskscentervalue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'gradientbasedcorrmaskmaskscenterweight' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'gradientbasedcorrmaskmasksdabs' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'gradientbasedcorrmaskmasksfeather' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'gradientbasedcorrmaskmasksflipped' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'gradientbasedcorrmaskmasksflow' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'gradientbasedcorrmaskmasksfullx' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'gradientbasedcorrmaskmasksfully' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'gradientbasedcorrmaskmasksinputdigest' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'gradientbasedcorrmaskmasksleft' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'gradientbasedcorrmaskmasksmaskactive' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'gradientbasedcorrmaskmasksmaskblendmode' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'gradientbasedcorrmaskmasksmaskdigest' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'gradientbasedcorrmaskmasksmaskinverted' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'gradientbasedcorrmaskmasksmaskname' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'gradientbasedcorrmaskmasksmasksubtype' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'gradientbasedcorrmaskmasksmasksyncid' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'gradientbasedcorrmaskmasksmaskversion' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'gradientbasedcorrmaskmasksmidpoint' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'gradientbasedcorrmaskmasksorigin' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'gradientbasedcorrmaskmasksperimetervalue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'gradientbasedcorrmaskmasksradius' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'gradientbasedcorrmaskmasksreferencepoint' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'gradientbasedcorrmaskmasksright' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'] }, - 'gradientbasedcorrmaskmasksroundness' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'gradientbasedcorrmaskmaskssizex' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'gradientbasedcorrmaskmaskssizey' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'gradientbasedcorrmaskmaskstop' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'] }, - 'gradientbasedcorrmaskmasksubtype' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'gradientbasedcorrmaskmasksvalue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'gradientbasedcorrmaskmasksversion' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'gradientbasedcorrmaskmaskswhat' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'gradientbasedcorrmaskmaskswholeimagearea' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'gradientbasedcorrmaskmasksx' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'] }, - 'gradientbasedcorrmaskmasksy' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'] }, - 'gradientbasedcorrmaskmasksyncid' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'gradientbasedcorrmaskmaskszerox' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'gradientbasedcorrmaskmaskszeroy' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'gradientbasedcorrmaskmaskversion' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'gradientbasedcorrmaskmidpoint' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] }, - 'gradientbasedcorrmaskorigin' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'] }, - 'gradientbasedcorrmaskperimetervalue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'gradientbasedcorrmaskradius' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] }, - 'gradientbasedcorrmaskrange' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'gradientbasedcorrmaskrangeareamodels' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'gradientbasedcorrmaskrangeareamodelscolorsampleinfo' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'gradientbasedcorrmaskrangeareamodelscomponents' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'gradientbasedcorrmaskrangecoloramount' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'gradientbasedcorrmaskrangedepthfeather' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'gradientbasedcorrmaskrangedepthmax' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'gradientbasedcorrmaskrangedepthmin' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'gradientbasedcorrmaskrangeinvert' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'gradientbasedcorrmaskrangelumfeather' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'gradientbasedcorrmaskrangeluminancedepthsampleinfo' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'gradientbasedcorrmaskrangelummax' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'gradientbasedcorrmaskrangelummin' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'gradientbasedcorrmaskrangelumrange' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'gradientbasedcorrmaskrangesampletype' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'gradientbasedcorrmaskrangetype' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'gradientbasedcorrmaskrangeversion' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'gradientbasedcorrmaskreferencepoint' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'gradientbasedcorrmaskright' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] }, - 'gradientbasedcorrmaskroundness' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] }, - 'gradientbasedcorrmasks' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] }, - 'gradientbasedcorrmasksizex' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] }, - 'gradientbasedcorrmasksizey' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] }, - 'gradientbasedcorrmasktop' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] }, - 'gradientbasedcorrmaskvalue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] }, - 'gradientbasedcorrmaskversion' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] }, - 'gradientbasedcorrmaskwhat' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] }, - 'gradientbasedcorrmaskwholeimagearea' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'gradientbasedcorrmaskx' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] }, - 'gradientbasedcorrmasky' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] }, - 'gradientbasedcorrmaskzerox' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] }, - 'gradientbasedcorrmaskzeroy' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] }, - 'gradientbasedcorrmoire' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] }, - 'gradientbasedcorrrangemask' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'] }, - 'gradientbasedcorrrangemaskareamodels' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'gradientbasedcorrrangemaskareamodelscolorsampleinfo' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'gradientbasedcorrrangemaskareamodelscomponents' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'gradientbasedcorrrangemaskcoloramount' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'gradientbasedcorrrangemaskdepthfeather' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'gradientbasedcorrrangemaskdepthmax' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'gradientbasedcorrrangemaskdepthmin' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'gradientbasedcorrrangemaskinvert' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'gradientbasedcorrrangemasklumfeather' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'gradientbasedcorrrangemaskluminancedepthsampleinfo' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'gradientbasedcorrrangemasklummax' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'gradientbasedcorrrangemasklummin' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'gradientbasedcorrrangemasklumrange' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'gradientbasedcorrrangemasksampletype' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'gradientbasedcorrrangemasktype' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'] }, - 'gradientbasedcorrrangemaskversion' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'gradientbasedcorrsaturation' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'] }, - 'gradientbasedcorrshadows2012' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] }, - 'gradientbasedcorrsharpness' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] }, - 'gradientbasedcorrtemperature' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] }, - 'gradientbasedcorrtexture' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'] }, - 'gradientbasedcorrtint' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] }, - 'gradientbasedcorrtoninghue' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] }, - 'gradientbasedcorrtoningsaturation' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'] }, - 'gradientbasedcorrwhat' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] }, - 'gradientbasedcorrwhites2012' => { 515 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'], 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'] }, - 'grainamount' => { 515 => 'GrainAmount', 517 => 'GrainAmount' }, + 'gpstrack' => { 135 => 0xf, 165 => 'Heading', 523 => 'GPSTrack' }, + 'gpstrackref' => { 135 => 0xe, 523 => 'GPSTrackRef' }, + 'gpsversionid' => { 135 => 0x0, 523 => 'GPSVersionID' }, + 'gradation' => { 328 => 0x50f }, + 'gradientbasedcorractive' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] }, + 'gradientbasedcorramount' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] }, + 'gradientbasedcorrblacks2012' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBlacks2012'] }, + 'gradientbasedcorrbrightness' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] }, + 'gradientbasedcorrclarity' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] }, + 'gradientbasedcorrclarity2012' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] }, + 'gradientbasedcorrcontrast' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] }, + 'gradientbasedcorrcontrast2012' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] }, + 'gradientbasedcorrcorrectionname' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionName'] }, + 'gradientbasedcorrcorrectionsyncid' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionSyncID'] }, + 'gradientbasedcorrdefringe' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] }, + 'gradientbasedcorrdehaze' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDehaze'] }, + 'gradientbasedcorrections' => { 517 => 'GradientBasedCorrections', 519 => 'GradientBasedCorrections' }, + 'gradientbasedcorrexposure' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] }, + 'gradientbasedcorrexposure2012' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] }, + 'gradientbasedcorrhighlights2012' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] }, + 'gradientbasedcorrhue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHue'] }, + 'gradientbasedcorrluminancenoise' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] }, + 'gradientbasedcorrmaskalpha' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] }, + 'gradientbasedcorrmaskangle' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] }, + 'gradientbasedcorrmaskbottom' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] }, + 'gradientbasedcorrmaskcentervalue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] }, + 'gradientbasedcorrmaskcenterweight' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'gradientbasedcorrmaskdabs' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] }, + 'gradientbasedcorrmaskfeather' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] }, + 'gradientbasedcorrmaskflipped' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] }, + 'gradientbasedcorrmaskflow' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] }, + 'gradientbasedcorrmaskfullx' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] }, + 'gradientbasedcorrmaskfully' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] }, + 'gradientbasedcorrmaskinputdigest' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksInputDigest'] }, + 'gradientbasedcorrmaskleft' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] }, + 'gradientbasedcorrmaskmaskactive' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskActive'] }, + 'gradientbasedcorrmaskmaskblendmode' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'gradientbasedcorrmaskmaskdigest' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'gradientbasedcorrmaskmaskinverted' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'gradientbasedcorrmaskmaskname' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskName'] }, + 'gradientbasedcorrmaskmasks' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasks'] }, + 'gradientbasedcorrmaskmasksalpha' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'gradientbasedcorrmaskmasksangle' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'gradientbasedcorrmaskmasksbottom' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'gradientbasedcorrmaskmaskscentervalue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'gradientbasedcorrmaskmaskscenterweight' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'gradientbasedcorrmaskmasksdabs' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'gradientbasedcorrmaskmasksfeather' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'gradientbasedcorrmaskmasksflipped' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'gradientbasedcorrmaskmasksflow' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'gradientbasedcorrmaskmasksfullx' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'gradientbasedcorrmaskmasksfully' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'gradientbasedcorrmaskmasksinputdigest' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'gradientbasedcorrmaskmasksleft' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'gradientbasedcorrmaskmasksmaskactive' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'gradientbasedcorrmaskmasksmaskblendmode' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'gradientbasedcorrmaskmasksmaskdigest' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'gradientbasedcorrmaskmasksmaskinverted' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'gradientbasedcorrmaskmasksmaskname' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'gradientbasedcorrmaskmasksmasksubtype' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'gradientbasedcorrmaskmasksmasksyncid' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'gradientbasedcorrmaskmasksmaskversion' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'gradientbasedcorrmaskmasksmidpoint' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'gradientbasedcorrmaskmasksorigin' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'gradientbasedcorrmaskmasksperimetervalue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'gradientbasedcorrmaskmasksradius' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'gradientbasedcorrmaskmasksreferencepoint' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'gradientbasedcorrmaskmasksright' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRight'] }, + 'gradientbasedcorrmaskmasksroundness' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'gradientbasedcorrmaskmaskssizex' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'gradientbasedcorrmaskmaskssizey' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'gradientbasedcorrmaskmaskstop' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksTop'] }, + 'gradientbasedcorrmaskmasksubtype' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'gradientbasedcorrmaskmasksvalue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'gradientbasedcorrmaskmasksversion' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'gradientbasedcorrmaskmaskswhat' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'gradientbasedcorrmaskmaskswholeimagearea' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'gradientbasedcorrmaskmasksx' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksX'] }, + 'gradientbasedcorrmaskmasksy' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksY'] }, + 'gradientbasedcorrmaskmasksyncid' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'gradientbasedcorrmaskmaskszerox' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'gradientbasedcorrmaskmaskszeroy' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'gradientbasedcorrmaskmaskversion' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'gradientbasedcorrmaskmidpoint' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] }, + 'gradientbasedcorrmaskorigin' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksOrigin'] }, + 'gradientbasedcorrmaskperimetervalue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'gradientbasedcorrmaskradius' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] }, + 'gradientbasedcorrmaskrange' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'gradientbasedcorrmaskrangeareamodels' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'gradientbasedcorrmaskrangeareamodelscolorsampleinfo' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'gradientbasedcorrmaskrangeareamodelscomponents' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'gradientbasedcorrmaskrangecoloramount' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'gradientbasedcorrmaskrangedepthfeather' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'gradientbasedcorrmaskrangedepthmax' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'gradientbasedcorrmaskrangedepthmin' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'gradientbasedcorrmaskrangeinvert' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'gradientbasedcorrmaskrangelumfeather' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'gradientbasedcorrmaskrangeluminancedepthsampleinfo' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'gradientbasedcorrmaskrangelummax' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'gradientbasedcorrmaskrangelummin' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'gradientbasedcorrmaskrangelumrange' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'gradientbasedcorrmaskrangesampletype' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'gradientbasedcorrmaskrangetype' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'gradientbasedcorrmaskrangeversion' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'gradientbasedcorrmaskreferencepoint' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'gradientbasedcorrmaskright' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] }, + 'gradientbasedcorrmaskroundness' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] }, + 'gradientbasedcorrmasks' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] }, + 'gradientbasedcorrmasksizex' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] }, + 'gradientbasedcorrmasksizey' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] }, + 'gradientbasedcorrmasktop' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] }, + 'gradientbasedcorrmaskvalue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] }, + 'gradientbasedcorrmaskversion' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] }, + 'gradientbasedcorrmaskwhat' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] }, + 'gradientbasedcorrmaskwholeimagearea' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'gradientbasedcorrmaskx' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] }, + 'gradientbasedcorrmasky' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] }, + 'gradientbasedcorrmaskzerox' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] }, + 'gradientbasedcorrmaskzeroy' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] }, + 'gradientbasedcorrmoire' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] }, + 'gradientbasedcorrrangemask' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMask'] }, + 'gradientbasedcorrrangemaskareamodels' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'gradientbasedcorrrangemaskareamodelscolorsampleinfo' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'gradientbasedcorrrangemaskareamodelscomponents' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'gradientbasedcorrrangemaskcoloramount' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'gradientbasedcorrrangemaskdepthfeather' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'gradientbasedcorrrangemaskdepthmax' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'gradientbasedcorrrangemaskdepthmin' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'gradientbasedcorrrangemaskinvert' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'gradientbasedcorrrangemasklumfeather' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'gradientbasedcorrrangemaskluminancedepthsampleinfo' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'gradientbasedcorrrangemasklummax' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'gradientbasedcorrrangemasklummin' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'gradientbasedcorrrangemasklumrange' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'gradientbasedcorrrangemasksampletype' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'gradientbasedcorrrangemasktype' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskType'] }, + 'gradientbasedcorrrangemaskversion' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'gradientbasedcorrsaturation' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation'] }, + 'gradientbasedcorrshadows2012' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] }, + 'gradientbasedcorrsharpness' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] }, + 'gradientbasedcorrtemperature' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] }, + 'gradientbasedcorrtexture' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTexture'] }, + 'gradientbasedcorrtint' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] }, + 'gradientbasedcorrtoninghue' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] }, + 'gradientbasedcorrtoningsaturation' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningSaturation'] }, + 'gradientbasedcorrwhat' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] }, + 'gradientbasedcorrwhites2012' => { 517 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'], 519 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'] }, + 'grainamount' => { 517 => 'GrainAmount', 519 => 'GrainAmount' }, 'graineffectroughness' => { 132 => 0x1047 }, 'graineffectsize' => { 132 => 0x104c }, - 'grainfrequency' => { 515 => 'GrainFrequency', 517 => 'GrainFrequency' }, - 'grainseed' => { 515 => 'GrainSeed', 517 => 'GrainSeed' }, - 'grainsize' => { 515 => 'GrainSize', 517 => 'GrainSize' }, - 'graymixeraqua' => { 515 => 'GrayMixerAqua', 517 => 'GrayMixerAqua' }, - 'graymixerblue' => { 515 => 'GrayMixerBlue', 517 => 'GrayMixerBlue' }, - 'graymixergreen' => { 515 => 'GrayMixerGreen', 517 => 'GrayMixerGreen' }, - 'graymixermagenta' => { 515 => 'GrayMixerMagenta', 517 => 'GrayMixerMagenta' }, - 'graymixerorange' => { 515 => 'GrayMixerOrange', 517 => 'GrayMixerOrange' }, - 'graymixerpurple' => { 515 => 'GrayMixerPurple', 517 => 'GrayMixerPurple' }, - 'graymixerred' => { 515 => 'GrayMixerRed', 517 => 'GrayMixerRed' }, - 'graymixeryellow' => { 515 => 'GrayMixerYellow', 517 => 'GrayMixerYellow' }, - 'graypoint' => { 489 => 0x8021 }, + 'grainfrequency' => { 517 => 'GrainFrequency', 519 => 'GrainFrequency' }, + 'grainseed' => { 517 => 'GrainSeed', 519 => 'GrainSeed' }, + 'grainsize' => { 517 => 'GrainSize', 519 => 'GrainSize' }, + 'graymixeraqua' => { 517 => 'GrayMixerAqua', 519 => 'GrayMixerAqua' }, + 'graymixerblue' => { 517 => 'GrayMixerBlue', 519 => 'GrayMixerBlue' }, + 'graymixergreen' => { 517 => 'GrayMixerGreen', 519 => 'GrayMixerGreen' }, + 'graymixermagenta' => { 517 => 'GrayMixerMagenta', 519 => 'GrayMixerMagenta' }, + 'graymixerorange' => { 517 => 'GrayMixerOrange', 519 => 'GrayMixerOrange' }, + 'graymixerpurple' => { 517 => 'GrayMixerPurple', 519 => 'GrayMixerPurple' }, + 'graymixerred' => { 517 => 'GrayMixerRed', 519 => 'GrayMixerRed' }, + 'graymixeryellow' => { 517 => 'GrayMixerYellow', 519 => 'GrayMixerYellow' }, + 'graypoint' => { 491 => 0x8021 }, 'grayresponseunit' => { 124 => 0x122 }, 'greencurvelimits' => { 113 => 0x1c4 }, 'greencurvepoints' => { 112 => 0x53, 113 => 0x19a }, 'greenghostmitigationstatus' => { 1 => 0x3f }, 'greenhsl' => { 108 => 0x20913 }, - 'greenhue' => { 515 => 'GreenHue', 517 => 'GreenHue' }, - 'greensaturation' => { 515 => 'GreenSaturation', 517 => 'GreenSaturation' }, - 'griddisplay' => { 306 => '13.3', 307 => '4.3', 309 => '4.2', 310 => '4.2', 311 => '2.2', 315 => '10.5', 316 => '3.4', 317 => '6.1', 319 => '4.4', 320 => '4.2', 321 => '4.2' }, - 'gripbatteryadload' => { 364 => 0x5 }, - 'gripbatteryadnoload' => { 364 => 0x4 }, - 'gripbatterypercent' => { 364 => 0x11 }, - 'gripbatterystate' => { 364 => ['1.2',0x10] }, - 'gripbatteryvoltage' => { 364 => 0x12 }, - 'group' => { 515 => 'Group', 517 => 'Group' }, - 'groupareaafillumination' => { 307 => '46.4', 310 => '47.4', 319 => '47.4' }, - 'grouping' => { 403 => ['grup',"\xa9grp"], 411 => "\xa9grp" }, - 'guid' => { 403 => 'GUID' }, + 'greenhue' => { 517 => 'GreenHue', 519 => 'GreenHue' }, + 'greensaturation' => { 517 => 'GreenSaturation', 519 => 'GreenSaturation' }, + 'griddisplay' => { 307 => '13.3', 308 => '4.3', 310 => '4.2', 311 => '4.2', 312 => '2.2', 316 => '10.5', 317 => '3.4', 318 => '6.1', 320 => '4.4', 321 => '4.2', 322 => '4.2' }, + 'gripbatteryadload' => { 366 => 0x5 }, + 'gripbatteryadnoload' => { 366 => 0x4 }, + 'gripbatterypercent' => { 366 => 0x11 }, + 'gripbatterystate' => { 366 => ['1.2',0x10] }, + 'gripbatteryvoltage' => { 366 => 0x12 }, + 'group' => { 517 => 'Group', 519 => 'Group' }, + 'groupareaafillumination' => { 308 => '46.4', 311 => '47.4', 320 => '47.4' }, + 'grouping' => { 405 => ['grup',"\xa9grp"], 413 => "\xa9grp" }, + 'guid' => { 405 => 'GUID' }, 'h2resetblackpixels' => { 143 => 0x18a6 }, 'h3resetblackcolumns' => { 143 => 0x18ce }, 'h3resetblackpixels' => { 143 => 0x18b0 }, 'halftonehints' => { 124 => 0x141 }, 'hardlink' => { 125 => 'HardLink' }, - 'hasalternative' => { 534 => 'hasAlternative' }, - 'hascorrection' => { 534 => 'hasCorrection' }, - 'hascorrectiona-lang' => { 534 => [\'hasCorrection','hasCorrectionA-lang'] }, - 'hascorrectiona-platform' => { 534 => [\'hasCorrection','hasCorrectionA-platform'] }, - 'hascorrectiontext' => { 534 => [\'hasCorrection','hasCorrectionText'] }, - 'hascrop' => { 515 => 'HasCrop', 517 => 'HasCrop' }, - 'hasextendedxmp' => { 546 => 'HasExtendedXMP' }, - 'hassettings' => { 515 => 'HasSettings', 517 => 'HasSettings' }, - 'hastranslation' => { 534 => 'hasTranslation' }, - 'hasvisibleoverprint' => { 549 => 'HasVisibleOverprint' }, - 'hasvisibletransparency' => { 549 => 'HasVisibleTransparency' }, - 'hdmioutputn-log' => { 245 => 0x35a }, - 'hdmioutputresolution' => { 246 => 0x710, 247 => 0x720, 248 => 0x610, 249 => 0x640, 250 => 0x6a8 }, - 'hdmiviewassist' => { 323 => 0x20f, 324 => 0x227 }, - 'hdr' => { 63 => 0x1, 226 => 0x4, 227 => 0x4, 246 => 0x23a, 247 => 0x23a, 250 => 0x23a, 350 => 0x9e, 386 => 0x85, 452 => 0x200a }, - 'hdrcapacitymax' => { 526 => 'HDRCapacityMax' }, - 'hdrcapacitymin' => { 526 => 'HDRCapacityMin' }, - 'hdreditmode' => { 515 => 'HDREditMode', 517 => 'HDREditMode' }, + 'hasalternative' => { 536 => 'hasAlternative' }, + 'hascorrection' => { 536 => 'hasCorrection' }, + 'hascorrectiona-lang' => { 536 => [\'hasCorrection','hasCorrectionA-lang'] }, + 'hascorrectiona-platform' => { 536 => [\'hasCorrection','hasCorrectionA-platform'] }, + 'hascorrectiontext' => { 536 => [\'hasCorrection','hasCorrectionText'] }, + 'hascrop' => { 517 => 'HasCrop', 519 => 'HasCrop' }, + 'hasextendedxmp' => { 548 => 'HasExtendedXMP' }, + 'hassettings' => { 517 => 'HasSettings', 519 => 'HasSettings' }, + 'hastranslation' => { 536 => 'hasTranslation' }, + 'hasvisibleoverprint' => { 551 => 'HasVisibleOverprint' }, + 'hasvisibletransparency' => { 551 => 'HasVisibleTransparency' }, + 'hdmioutputn-log' => { 246 => 0x35a }, + 'hdmioutputresolution' => { 247 => 0x710, 248 => 0x720, 249 => 0x610, 250 => 0x640, 251 => 0x6a8 }, + 'hdmiviewassist' => { 325 => 0x20f, 326 => 0x227 }, + 'hdr' => { 63 => 0x1, 226 => 0x4, 227 => 0x4, 245 => 0x354, 247 => 0x23a, 248 => 0x23a, 251 => 0x23a, 352 => 0x9e, 388 => 0x85, 454 => 0x200a }, + 'hdrcapacitymax' => { 528 => 'HDRCapacityMax' }, + 'hdrcapacitymin' => { 528 => 'HDRCapacityMin' }, + 'hdreditmode' => { 517 => 'HDREditMode', 519 => 'HDREditMode' }, 'hdreffect' => { 63 => 0x2 }, 'hdrgain' => { 1 => 0x30 }, 'hdrheadroom' => { 1 => 0x21 }, 'hdrimagetype' => { 1 => 0xa }, - 'hdrlevel' => { 226 => 0x5, 227 => 0x5, 246 => 0x246, 247 => 0x246, 250 => 0x246, 440 => 0x2e, 457 => 0x17 }, + 'hdrlevel' => { 226 => 0x5, 227 => 0x5, 245 => 0x360, 247 => 0x246, 248 => 0x246, 251 => 0x246, 442 => 0x2e, 459 => 0x17 }, 'hdrlevel2' => { 226 => 0x7 }, - 'hdrplusmakernote' => { 497 => 'HdrPlusMakernote' }, - 'hdrpmakernote' => { 497 => 'hdrp_makernote' }, - 'hdrsetting' => { 440 => 0x2d, 457 => 0x16, 461 => 0x1148, 462 => 0x1148, 463 => 0x1124, 464 => 0x11a0, 465 => 0x117c, 466 => 0x1034, 467 => 0x22c, 468 => 0x22c, 469 => 0x21f }, + 'hdrplusmakernote' => { 499 => 'HdrPlusMakernote' }, + 'hdrpmakernote' => { 499 => 'hdrp_makernote' }, + 'hdrsetting' => { 442 => 0x2d, 459 => 0x16, 463 => 0x1148, 464 => 0x1148, 465 => 0x1124, 466 => 0x11a0, 467 => 0x117c, 468 => 0x1034, 469 => 0x22c, 470 => 0x22c, 471 => 0x21f }, 'hdrsmoothing' => { 226 => 0x6 }, - 'hdvideo' => { 403 => 'hdvd' }, - 'headline' => { 136 => 0x69, 529 => 'Headline', 532 => 'Headline' }, - 'hiddendatalength' => { 450 => 0x1 }, - 'hiddendataoffset' => { 450 => 0x0 }, + 'hdvideo' => { 405 => 'hdvd' }, + 'headline' => { 136 => 0x69, 531 => 'Headline', 534 => 'Headline' }, + 'hiddendatalength' => { 452 => 0x1 }, + 'hiddendataoffset' => { 452 => 0x0 }, 'hierarchicalkeywords' => { 176 => [\'Keywords','KeywordsHierarchy'] }, 'hierarchicalkeywords1' => { 176 => [\'Keywords','KeywordsHierarchyKeyword'] }, 'hierarchicalkeywords1applied' => { 176 => [\'Keywords','KeywordsHierarchyApplied'] }, @@ -3606,60 +3608,60 @@ my %tagLookup = ( 'hierarchicalkeywords5children' => { 176 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildren'] }, 'hierarchicalkeywords6' => { 176 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenKeyword'] }, 'hierarchicalkeywords6applied' => { 176 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenApplied'] }, - 'hierarchicalsubject' => { 507 => 'hierarchicalSubject' }, + 'hierarchicalsubject' => { 509 => 'hierarchicalSubject' }, 'highestbiostratigraphiczone' => { 123 => [\'GeologicalContext','GeologicalContextHighestBiostratigraphicZone'] }, - 'highframerate' => { 246 => 0x48, 247 => 0x48, 249 => 0x48, 250 => 0x48 }, - 'highfrequencyflickerreduction' => { 246 => 0x27c, 247 => 0x27c, 249 => 0x27c, 250 => 0x27c }, - 'highisomultiplierblue' => { 355 => 0x1a }, - 'highisomultipliergreen' => { 355 => 0x19 }, - 'highisomultiplierred' => { 355 => 0x18 }, - 'highisonoisereduction' => { 16 => 0xbc, 17 => 0xbd, 20 => 0xbd, 28 => 0xc9, 66 => 0x5, 89 => 0x202, 241 => 0xb1, 386 => 0x71, 438 => 0x2c, 439 => 0x26, 440 => 0x26, 452 => 0x2009, 457 => 0x12, 484 => 0x42 }, - 'highisonoisereduction2' => { 452 => 0xb050 }, - 'highlight' => { 428 => 0xf }, - 'highlight2012' => { 515 => 'Highlight2012', 517 => 'Highlight2012' }, + 'highframerate' => { 245 => 0x16c, 247 => 0x48, 248 => 0x48, 250 => 0x48, 251 => 0x48 }, + 'highfrequencyflickerreduction' => { 245 => 0x386, 247 => 0x27c, 248 => 0x27c, 250 => 0x27c, 251 => 0x27c }, + 'highisomultiplierblue' => { 357 => 0x1a }, + 'highisomultipliergreen' => { 357 => 0x19 }, + 'highisomultiplierred' => { 357 => 0x18 }, + 'highisonoisereduction' => { 16 => 0xbc, 17 => 0xbd, 20 => 0xbd, 28 => 0xc9, 66 => 0x5, 89 => 0x202, 241 => 0xb1, 388 => 0x71, 440 => 0x2c, 441 => 0x26, 442 => 0x26, 454 => 0x2009, 459 => 0x12, 486 => 0x42 }, + 'highisonoisereduction2' => { 454 => 0xb050 }, + 'highlight' => { 430 => 0xf }, + 'highlight2012' => { 517 => 'Highlight2012', 519 => 'Highlight2012' }, 'highlightadj' => { 108 => 0x2030c }, - 'highlightcolordistortreduct' => { 489 => 0x8026 }, - 'highlightlinearitylimit' => { 425 => 0xa025 }, - 'highlightprotection' => { 298 => 0x6 }, - 'highlightrecovery' => { 515 => 'HighlightRecovery', 517 => 'HighlightRecovery' }, - 'highlights' => { 452 => 0x2033, 509 => 'Highlights' }, - 'highlights2012' => { 515 => 'Highlights2012', 517 => 'Highlights2012' }, - 'highlightsadj' => { 489 => 0x9019 }, - 'highlightshadow' => { 350 => 0xad }, + 'highlightcolordistortreduct' => { 491 => 0x8026 }, + 'highlightlinearitylimit' => { 427 => 0xa025 }, + 'highlightprotection' => { 299 => 0x6 }, + 'highlightrecovery' => { 517 => 'HighlightRecovery', 519 => 'HighlightRecovery' }, + 'highlights' => { 454 => 0x2033, 511 => 'Highlights' }, + 'highlights2012' => { 517 => 'Highlights2012', 519 => 'Highlights2012' }, + 'highlightsadj' => { 491 => 0x9019 }, + 'highlightshadow' => { 352 => 0xad }, 'highlighttone' => { 132 => 0x1041 }, 'highlighttonepriority' => { 13 => 0x7, 16 => 0x7, 17 => 0x7, 18 => 0x7, 20 => 0x7, 22 => 0x7, 28 => 0x7, 66 => 0x3, 89 => 0x203 }, - 'highlightwarning' => { 350 => 0x8002 }, - 'highlowkeyadj' => { 386 => 0x6c }, - 'highspeedsync' => { 189 => 0x5, 322 => 0x55, 323 => 0x55, 324 => 0x55, 438 => 0x2, 439 => 0x2 }, - 'hintversion' => { 411 => 'hinv' }, - 'histogramxml' => { 299 => 0x83a1a25 }, - 'history' => { 532 => 'History', 545 => 'History' }, - 'historyaction' => { 545 => [\'History','HistoryAction'] }, - 'historychanged' => { 545 => [\'History','HistoryChanged'] }, - 'historyinstanceid' => { 545 => [\'History','HistoryInstanceID'] }, - 'historyparameters' => { 545 => [\'History','HistoryParameters'] }, - 'historysoftwareagent' => { 545 => [\'History','HistorySoftwareAgent'] }, - 'historywhen' => { 545 => [\'History','HistoryWhen'] }, + 'highlightwarning' => { 352 => 0x8002 }, + 'highlowkeyadj' => { 388 => 0x6c }, + 'highspeedsync' => { 189 => 0x5, 323 => 0x59, 324 => 0x55, 325 => 0x55, 326 => 0x55, 440 => 0x2, 441 => 0x2 }, + 'hintversion' => { 413 => 'hinv' }, + 'histogramxml' => { 300 => 0x83a1a25 }, + 'history' => { 534 => 'History', 547 => 'History' }, + 'historyaction' => { 547 => [\'History','HistoryAction'] }, + 'historychanged' => { 547 => [\'History','HistoryChanged'] }, + 'historyinstanceid' => { 547 => [\'History','HistoryInstanceID'] }, + 'historyparameters' => { 547 => [\'History','HistoryParameters'] }, + 'historysoftwareagent' => { 547 => [\'History','HistorySoftwareAgent'] }, + 'historywhen' => { 547 => [\'History','HistoryWhen'] }, 'holefilldarkdeltathreshold' => { 143 => 0xc88 }, 'holefilldeltathreshold' => { 143 => 0xc7e }, - 'hometowncity' => { 118 => 0x3006, 386 => 0x23, 392 => 0x2 }, - 'hometowncitycode' => { 393 => 0x1000 }, - 'hometowndst' => { 386 => 0x25, 392 => '0.2' }, + 'hometowncity' => { 118 => 0x3006, 388 => 0x23, 394 => 0x2 }, + 'hometowncitycode' => { 395 => 0x1000 }, + 'hometowndst' => { 388 => 0x25, 394 => '0.2' }, 'hostcomputer' => { 124 => 0x13c }, 'hostsoftwarerendering' => { 143 => 0xce7 }, - 'hue' => { 194 => 0x3b, 258 => 0x3d, 259 => 0x45, 386 => 0x67 }, - 'hueadj' => { 302 => 0x2f, 489 => 0x8019 }, - 'hueadjust' => { 418 => 0x1016 }, - 'hueadjustment' => { 187 => 0x4a, 188 => 0x40, 241 => 0x92, 257 => 0x36 }, - 'hueadjustmentaqua' => { 515 => 'HueAdjustmentAqua', 517 => 'HueAdjustmentAqua' }, - 'hueadjustmentblue' => { 515 => 'HueAdjustmentBlue', 517 => 'HueAdjustmentBlue' }, - 'hueadjustmentgreen' => { 515 => 'HueAdjustmentGreen', 517 => 'HueAdjustmentGreen' }, - 'hueadjustmentmagenta' => { 515 => 'HueAdjustmentMagenta', 517 => 'HueAdjustmentMagenta' }, - 'hueadjustmentorange' => { 515 => 'HueAdjustmentOrange', 517 => 'HueAdjustmentOrange' }, - 'hueadjustmentpurple' => { 515 => 'HueAdjustmentPurple', 517 => 'HueAdjustmentPurple' }, - 'hueadjustmentred' => { 515 => 'HueAdjustmentRed', 517 => 'HueAdjustmentRed' }, - 'hueadjustmentyellow' => { 515 => 'HueAdjustmentYellow', 517 => 'HueAdjustmentYellow' }, - 'huesetting' => { 334 => 0x1011 }, + 'hue' => { 194 => 0x3b, 259 => 0x3d, 260 => 0x45, 388 => 0x67 }, + 'hueadj' => { 303 => 0x2f, 491 => 0x8019 }, + 'hueadjust' => { 420 => 0x1016 }, + 'hueadjustment' => { 187 => 0x4a, 188 => 0x40, 241 => 0x92, 258 => 0x36 }, + 'hueadjustmentaqua' => { 517 => 'HueAdjustmentAqua', 519 => 'HueAdjustmentAqua' }, + 'hueadjustmentblue' => { 517 => 'HueAdjustmentBlue', 519 => 'HueAdjustmentBlue' }, + 'hueadjustmentgreen' => { 517 => 'HueAdjustmentGreen', 519 => 'HueAdjustmentGreen' }, + 'hueadjustmentmagenta' => { 517 => 'HueAdjustmentMagenta', 519 => 'HueAdjustmentMagenta' }, + 'hueadjustmentorange' => { 517 => 'HueAdjustmentOrange', 519 => 'HueAdjustmentOrange' }, + 'hueadjustmentpurple' => { 517 => 'HueAdjustmentPurple', 519 => 'HueAdjustmentPurple' }, + 'hueadjustmentred' => { 517 => 'HueAdjustmentRed', 519 => 'HueAdjustmentRed' }, + 'hueadjustmentyellow' => { 517 => 'HueAdjustmentYellow', 519 => 'HueAdjustmentYellow' }, + 'huesetting' => { 336 => 0x1011 }, 'humanobservation' => { 123 => 'HumanObservation' }, 'humanobservationday' => { 123 => [\'HumanObservation','HumanObservationDay'] }, 'humanobservationearliestdate' => { 123 => [\'HumanObservation','HumanObservationEarliestDate'] }, @@ -3681,13 +3683,13 @@ my %tagLookup = ( 'humanobservationstartdayofyear' => { 123 => [\'HumanObservation','HumanObservationStartDayOfYear'] }, 'humanobservationverbatimeventdate' => { 123 => [\'HumanObservation','HumanObservationVerbatimEventDate'] }, 'humanobservationyear' => { 123 => [\'HumanObservation','HumanObservationYear'] }, - 'humidity' => { 124 => 0x9401, 522 => 'Humidity' }, + 'humidity' => { 124 => 0x9401, 524 => 'Humidity' }, 'icc_profile' => { 125 => 'ICC_Profile' }, - 'iccprofilename' => { 532 => 'ICCProfile' }, - 'iconuri' => { 411 => 'icnu' }, - 'idccreativestyle' => { 489 => 0x8000 }, - 'idcpreviewlength' => { 489 => 0x202 }, - 'idcpreviewstart' => { 489 => 0x201 }, + 'iccprofilename' => { 534 => 'ICCProfile' }, + 'iconuri' => { 413 => 'icnu' }, + 'idccreativestyle' => { 491 => 0x8000 }, + 'idcpreviewlength' => { 491 => 0x202 }, + 'idcpreviewstart' => { 491 => 0x201 }, 'identification' => { 123 => 'Identification' }, 'identificationid' => { 123 => [\'Identification','IdentificationIdentificationID'] }, 'identificationqualifier' => { 123 => [\'Identification','IdentificationIdentificationQualifier'] }, @@ -3696,48 +3698,48 @@ my %tagLookup = ( 'identificationverificationstatus' => { 123 => [\'Identification','IdentificationIdentificationVerificationStatus'] }, 'identifiedby' => { 123 => [\'Identification','IdentificationIdentifiedBy'] }, 'identifiedbyid' => { 123 => [\'Identification','IdentificationIdentifiedByID'] }, - 'identifier' => { 518 => 'identifier', 542 => 'Identifier' }, + 'identifier' => { 520 => 'identifier', 544 => 'Identifier' }, 'ifcameramodel' => { 143 => 0x9c8 }, 'illuminantdata1' => { 124 => 0xcd35 }, 'illuminantdata2' => { 124 => 0xcd36 }, 'illuminantdata3' => { 124 => 0xcd37 }, - 'illumination' => { 317 => '0.5', 413 => 0x48 }, + 'illumination' => { 318 => '0.5', 415 => 0x48 }, 'imageabsolutex' => { 143 => 0x3fe }, 'imageabsolutey' => { 143 => 0x3ff }, - 'imageadjustment' => { 241 => 0x80, 288 => 0x5 }, - 'imagealterationconstraints' => { 336 => 'ImageAlterationConstraints' }, - 'imagearea' => { 231 => 0x2b, 266 => 0x2b, 274 => 0x10, 277 => 0x10 }, - 'imageareaoffset' => { 386 => 0x38 }, + 'imageadjustment' => { 241 => 0x80, 289 => 0x5 }, + 'imagealterationconstraints' => { 338 => 'ImageAlterationConstraints' }, + 'imagearea' => { 231 => 0x2b, 267 => 0x2b, 275 => 0x10, 278 => 0x10 }, + 'imageareaoffset' => { 388 => 0x38 }, 'imageauthentication' => { 241 => 0x20 }, 'imageboundary' => { 241 => 0x16 }, 'imagecapturerequestid' => { 1 => 0x20 }, 'imagecapturetype' => { 1 => 0x14 }, - 'imagecount' => { 132 => 0x1438, 241 => 0xa5, 455 => 0x11b }, - 'imagecreator' => { 336 => 'ImageCreator' }, - 'imagecreatorid' => { 336 => [\'ImageCreator','ImageCreatorImageCreatorID'] }, - 'imagecreatorimageid' => { 336 => 'ImageCreatorImageID' }, - 'imagecreatorname' => { 336 => [\'ImageCreator','ImageCreatorImageCreatorName'] }, + 'imagecount' => { 132 => 0x1438, 241 => 0xa5, 457 => 0x11b }, + 'imagecreator' => { 338 => 'ImageCreator' }, + 'imagecreatorid' => { 338 => [\'ImageCreator','ImageCreatorImageCreatorID'] }, + 'imagecreatorimageid' => { 338 => 'ImageCreatorImageID' }, + 'imagecreatorname' => { 338 => [\'ImageCreator','ImageCreatorImageCreatorName'] }, 'imagecropx' => { 143 => 0x41f }, 'imagecropy' => { 143 => 0x420 }, - 'imagedata' => { 502 => 'Data' }, + 'imagedata' => { 504 => 'Data' }, 'imagedatasize' => { 241 => 0xa2 }, - 'imagedescription' => { 124 => 0x10e, 540 => 'ImageDescription' }, - 'imageduplicationconstraints' => { 336 => 'ImageDuplicationConstraints' }, - 'imagedustoff' => { 299 => 0xfe443a45 }, - 'imageeditcount' => { 386 => 0x41 }, - 'imageediting' => { 386 => 0x32 }, + 'imagedescription' => { 124 => 0x10e, 542 => 'ImageDescription' }, + 'imageduplicationconstraints' => { 338 => 'ImageDuplicationConstraints' }, + 'imagedustoff' => { 300 => 0xfe443a45 }, + 'imageeditcount' => { 388 => 0x41 }, + 'imageediting' => { 388 => 0x32 }, 'imageeditingsoftware' => { 124 => 0xa43b }, 'imageeditor' => { 124 => 0xa438 }, - 'imageeffects' => { 418 => 0x1010 }, - 'imagefileconstraints' => { 336 => 'ImageFileConstraints' }, - 'imagefileformatasdelivered' => { 336 => 'ImageFileFormatAsDelivered' }, - 'imagefilesizeasdelivered' => { 336 => 'ImageFileSizeAsDelivered' }, + 'imageeffects' => { 420 => 0x1010 }, + 'imagefileconstraints' => { 338 => 'ImageFileConstraints' }, + 'imagefileformatasdelivered' => { 338 => 'ImageFileFormatAsDelivered' }, + 'imagefilesizeasdelivered' => { 338 => 'ImageFileSizeAsDelivered' }, 'imagegeneration' => { 132 => 0x1436 }, - 'imageheight' => { 124 => 0x101, 193 => 0xc, 395 => 0x10d, 500 => 'ImageHeight', 540 => 'ImageLength' }, - 'imagehistory' => { 124 => 0x9213, 520 => 'ImageHistory' }, - 'imageidnumber' => { 345 => 0x340 }, - 'imagemimetype' => { 502 => 'Mime' }, - 'imagenumber' => { 124 => 0x9211, 161 => 'ImageNumber', 187 => 0xae, 188 => 0x5e, 395 => 0x113, 438 => 0x9b, 440 => [0x400,'276.1',0x314], 512 => 'ImageNumber' }, + 'imageheight' => { 124 => 0x101, 193 => 0xc, 397 => 0x10d, 502 => 'ImageHeight', 542 => 'ImageLength' }, + 'imagehistory' => { 124 => 0x9213, 522 => 'ImageHistory' }, + 'imageidnumber' => { 347 => 0x340 }, + 'imagemimetype' => { 504 => 'Mime' }, + 'imagenumber' => { 124 => 0x9211, 161 => 'ImageNumber', 187 => 0xae, 188 => 0x5e, 397 => 0x113, 440 => 0x9b, 442 => [0x400,'276.1',0x314], 514 => 'ImageNumber' }, 'imagenumber2' => { 188 => 0x62 }, 'imageoptimization' => { 241 => 0xa9 }, 'imageorientation' => { 136 => 0x83 }, @@ -3745,39 +3747,39 @@ my %tagLookup = ( 'imageprocessingfiledatecreated' => { 143 => 0xc81 }, 'imageprocessingfiletagsversionnumber' => { 143 => 0xc80 }, 'imageprocessingflags' => { 1 => 0x19 }, - 'imageprocessingversion' => { 330 => 0x0 }, - 'imagequality' => { 161 => 'ImageQuality', 276 => '723.2', 277 => '732.2', 285 => '708.1', 350 => 0x1 }, - 'imagequality2' => { 326 => 0x603 }, - 'imagerank' => { 505 => 'ImageRank' }, + 'imageprocessingversion' => { 332 => 0x0 }, + 'imagequality' => { 161 => 'ImageQuality', 277 => '723.2', 278 => '732.2', 286 => '708.1', 352 => 0x1 }, + 'imagequality2' => { 328 => 0x603 }, + 'imagerank' => { 507 => 'ImageRank' }, 'imagerbiassettlingdelaymsec' => { 143 => 0x600 }, 'imagerboardversion' => { 143 => 0x439 }, 'imagercols' => { 143 => 0x17d4 }, - 'imageref' => { 527 => 'ImageRef' }, - 'imageregion' => { 529 => 'ImageRegion' }, - 'imageregionboundary' => { 529 => [\'ImageRegion','ImageRegionRegionBoundary'] }, - 'imageregionboundaryh' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbH'] }, - 'imageregionboundaryrx' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbRx'] }, - 'imageregionboundaryshape' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbShape'] }, - 'imageregionboundaryunit' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbUnit'] }, - 'imageregionboundaryvertices' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbVertices'] }, - 'imageregionboundaryverticesx' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbX'] }, - 'imageregionboundaryverticesy' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbY'] }, - 'imageregionboundaryw' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbW'] }, - 'imageregionboundaryx' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbX'] }, - 'imageregionboundaryy' => { 529 => [\'ImageRegion','ImageRegionRegionBoundaryRbY'] }, - 'imageregionctype' => { 529 => [\'ImageRegion','ImageRegionRCtype'] }, - 'imageregionctypeidentifier' => { 529 => [\'ImageRegion','ImageRegionRCtypeIdentifier'] }, - 'imageregionctypename' => { 529 => [\'ImageRegion','ImageRegionRCtypeName'] }, - 'imageregionid' => { 529 => [\'ImageRegion','ImageRegionRId'] }, - 'imageregionname' => { 529 => [\'ImageRegion','ImageRegionName'] }, - 'imageregionrole' => { 529 => [\'ImageRegion','ImageRegionRRole'] }, - 'imageregionroleidentifier' => { 529 => [\'ImageRegion','ImageRegionRRoleIdentifier'] }, - 'imageregionrolename' => { 529 => [\'ImageRegion','ImageRegionRRoleName'] }, + 'imageref' => { 529 => 'ImageRef' }, + 'imageregion' => { 531 => 'ImageRegion' }, + 'imageregionboundary' => { 531 => [\'ImageRegion','ImageRegionRegionBoundary'] }, + 'imageregionboundaryh' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbH'] }, + 'imageregionboundaryrx' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbRx'] }, + 'imageregionboundaryshape' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbShape'] }, + 'imageregionboundaryunit' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbUnit'] }, + 'imageregionboundaryvertices' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbVertices'] }, + 'imageregionboundaryverticesx' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbX'] }, + 'imageregionboundaryverticesy' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbVerticesRbY'] }, + 'imageregionboundaryw' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbW'] }, + 'imageregionboundaryx' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbX'] }, + 'imageregionboundaryy' => { 531 => [\'ImageRegion','ImageRegionRegionBoundaryRbY'] }, + 'imageregionctype' => { 531 => [\'ImageRegion','ImageRegionRCtype'] }, + 'imageregionctypeidentifier' => { 531 => [\'ImageRegion','ImageRegionRCtypeIdentifier'] }, + 'imageregionctypename' => { 531 => [\'ImageRegion','ImageRegionRCtypeName'] }, + 'imageregionid' => { 531 => [\'ImageRegion','ImageRegionRId'] }, + 'imageregionname' => { 531 => [\'ImageRegion','ImageRegionName'] }, + 'imageregionrole' => { 531 => [\'ImageRegion','ImageRegionRRole'] }, + 'imageregionroleidentifier' => { 531 => [\'ImageRegion','ImageRegionRRoleIdentifier'] }, + 'imageregionrolename' => { 531 => [\'ImageRegion','ImageRegionRRoleName'] }, 'imageresolution' => { 143 => 0x944 }, 'imageresolutionjpg' => { 143 => 0x945 }, - 'imagereview' => { 308 => '0.4', 317 => '0.4' }, - 'imagereviewmonitorofftime' => { 307 => '21.1', 309 => '21.1', 310 => '21.1', 314 => '20.1', 319 => '21.1', 320 => '21.1', 322 => 0x39, 323 => 0x39, 324 => 0x39 }, - 'imagereviewtime' => { 306 => '25.1', 308 => '2.1', 311 => '19.1', 312 => '20.1', 313 => '20.1', 315 => '9.2', 316 => '20.1', 321 => '21.2' }, + 'imagereview' => { 309 => '0.4', 318 => '0.4' }, + 'imagereviewmonitorofftime' => { 308 => '21.1', 310 => '21.1', 311 => '21.1', 315 => '20.1', 320 => '21.1', 321 => '21.1', 323 => 0x3b, 324 => 0x39, 325 => 0x39, 326 => 0x39 }, + 'imagereviewtime' => { 307 => '25.1', 309 => '2.1', 312 => '19.1', 313 => '20.1', 314 => '20.1', 316 => '9.2', 317 => '20.1', 322 => '21.2' }, 'imagerfiledatecreated' => { 143 => 0x9c5 }, 'imagerfileproductionlevel' => { 143 => 0x9c4 }, 'imagerfiletagsversionstandard' => { 143 => 0x9c7 }, @@ -3789,218 +3791,218 @@ my %tagLookup = ( 'imagesequenceinfo' => { 124 => 0xcd44 }, 'imagesize' => { 167 => 'ImageSize' }, 'imagesizeraw' => { 241 => 0x3e }, - 'imagesizerestriction' => { 537 => 'imageSizeRestriction' }, + 'imagesizerestriction' => { 539 => 'imageSizeRestriction' }, 'imagesourcedata' => { 124 => 0x935c }, 'imagespace' => { 143 => 0x909 }, - 'imagestabilization' => { 36 => 0x22, 118 => 0x3020, 132 => 0x1422, 161 => 'ImageStabilization', 187 => 0xbd, 188 => 0x71, 189 => 0x57, 190 => 0x0, 191 => [0x18,0x107,0x113], 192 => 0x49c2, 241 => 0xac, 326 => 0x604, 329 => 0x1600, 350 => 0x1a, 443 => 0x12, 444 => 0x11, 452 => 0xb026 }, - 'imagestabilization2' => { 442 => 0xa }, - 'imagestabilizationsetting' => { 192 => 0x14, 438 => 0x3d, 439 => 0x3d, 449 => 0x14 }, + 'imagestabilization' => { 36 => 0x22, 118 => 0x3020, 132 => 0x1422, 161 => 'ImageStabilization', 187 => 0xbd, 188 => 0x71, 189 => 0x57, 190 => 0x0, 191 => [0x18,0x107,0x113], 192 => 0x49c2, 241 => 0xac, 328 => 0x604, 331 => 0x1600, 352 => 0x1a, 445 => 0x12, 446 => 0x11, 454 => 0xb026 }, + 'imagestabilization2' => { 444 => 0xa }, + 'imagestabilizationsetting' => { 192 => 0x14, 440 => 0x3d, 441 => 0x3d, 451 => 0x14 }, 'imagestats' => { 124 => 0xcd46 }, - 'imagestyle' => { 438 => 0x2d, 439 => 0x27 }, - 'imagesupplier' => { 336 => 'ImageSupplier' }, - 'imagesupplierid' => { 336 => [\'ImageSupplier','ImageSupplierImageSupplierID'] }, - 'imagesupplierimageid' => { 336 => 'ImageSupplierImageID' }, - 'imagesuppliername' => { 336 => [\'ImageSupplier','ImageSupplierImageSupplierName'] }, + 'imagestyle' => { 440 => 0x2d, 441 => 0x27 }, + 'imagesupplier' => { 338 => 'ImageSupplier' }, + 'imagesupplierid' => { 338 => [\'ImageSupplier','ImageSupplierImageSupplierID'] }, + 'imagesupplierimageid' => { 338 => 'ImageSupplierImageID' }, + 'imagesuppliername' => { 338 => [\'ImageSupplier','ImageSupplierImageSupplierName'] }, 'imagetemperaturemax' => { 126 => 0x1 }, 'imagetemperaturemin' => { 126 => 0x2 }, - 'imagetone' => { 386 => 0x4f }, - 'imagetype' => { 136 => 0x82, 336 => 'ImageType' }, - 'imageuniqueid' => { 1 => 0x15, 68 => 0x28, 124 => 0xa420, 520 => 'ImageUniqueID', 521 => 'ImageUniqueID' }, - 'imagewidth' => { 124 => 0x100, 193 => 0xe, 395 => 0x10c, 500 => 'ImageWidth', 540 => 'ImageWidth' }, - 'inclinationangle' => { 489 => 0x900f }, - 'inclinationcorrection' => { 489 => 0x900e }, - 'incrementaltemperature' => { 515 => 'IncrementalTemperature', 517 => 'IncrementalTemperature' }, - 'incrementaltint' => { 515 => 'IncrementalTint', 517 => 'IncrementalTint' }, - 'industry' => { 534 => 'industry', 535 => 'industry' }, + 'imagetone' => { 388 => 0x4f }, + 'imagetype' => { 136 => 0x82, 338 => 'ImageType' }, + 'imageuniqueid' => { 1 => 0x15, 68 => 0x28, 124 => 0xa420, 522 => 'ImageUniqueID', 523 => 'ImageUniqueID' }, + 'imagewidth' => { 124 => 0x100, 193 => 0xe, 397 => 0x10c, 502 => 'ImageWidth', 542 => 'ImageWidth' }, + 'inclinationangle' => { 491 => 0x900f }, + 'inclinationcorrection' => { 491 => 0x900e }, + 'incrementaltemperature' => { 517 => 'IncrementalTemperature', 519 => 'IncrementalTemperature' }, + 'incrementaltint' => { 517 => 'IncrementalTint', 519 => 'IncrementalTint' }, + 'industry' => { 536 => 'industry', 537 => 'industry' }, 'infobuttonwhenshooting' => { 89 => 0x409 }, - 'information' => { 405 => 'information', 411 => "\xa9inf" }, - 'infourl' => { 411 => 'infu' }, - 'infraredilluminator' => { 412 => 0x28 }, - 'ingredientexclusion' => { 536 => 'ingredientExclusion' }, - 'ingredients' => { 545 => 'Ingredients' }, - 'ingredientsalternatepaths' => { 545 => [\'Ingredients','IngredientsAlternatePaths'] }, - 'ingredientsdocumentid' => { 545 => [\'Ingredients','IngredientsDocumentID'] }, - 'ingredientsfilepath' => { 545 => [\'Ingredients','IngredientsFilePath'] }, - 'ingredientsfrompart' => { 545 => [\'Ingredients','IngredientsFromPart'] }, - 'ingredientsinstanceid' => { 545 => [\'Ingredients','IngredientsInstanceID'] }, - 'ingredientslastmodifydate' => { 545 => [\'Ingredients','IngredientsLastModifyDate'] }, - 'ingredientslasturl' => { 545 => [\'Ingredients','IngredientsLastURL'] }, - 'ingredientslinkcategory' => { 545 => [\'Ingredients','IngredientsLinkCategory'] }, - 'ingredientslinkform' => { 545 => [\'Ingredients','IngredientsLinkForm'] }, - 'ingredientsmanager' => { 545 => [\'Ingredients','IngredientsManager'] }, - 'ingredientsmanagervariant' => { 545 => [\'Ingredients','IngredientsManagerVariant'] }, - 'ingredientsmanageto' => { 545 => [\'Ingredients','IngredientsManageTo'] }, - 'ingredientsmanageui' => { 545 => [\'Ingredients','IngredientsManageUI'] }, - 'ingredientsmaskmarkers' => { 545 => [\'Ingredients','IngredientsMaskMarkers'] }, - 'ingredientsoriginaldocumentid' => { 545 => [\'Ingredients','IngredientsOriginalDocumentID'] }, - 'ingredientspartmapping' => { 545 => [\'Ingredients','IngredientsPartMapping'] }, - 'ingredientsplacedresolutionunit' => { 545 => [\'Ingredients','IngredientsPlacedResolutionUnit'] }, - 'ingredientsplacedxresolution' => { 545 => [\'Ingredients','IngredientsPlacedXResolution'] }, - 'ingredientsplacedyresolution' => { 545 => [\'Ingredients','IngredientsPlacedYResolution'] }, - 'ingredientsrenditionclass' => { 545 => [\'Ingredients','IngredientsRenditionClass'] }, - 'ingredientsrenditionparams' => { 545 => [\'Ingredients','IngredientsRenditionParams'] }, - 'ingredientstopart' => { 545 => [\'Ingredients','IngredientsToPart'] }, - 'ingredientsversionid' => { 545 => [\'Ingredients','IngredientsVersionID'] }, + 'information' => { 407 => 'information', 413 => "\xa9inf" }, + 'infourl' => { 413 => 'infu' }, + 'infraredilluminator' => { 414 => 0x28 }, + 'ingredientexclusion' => { 538 => 'ingredientExclusion' }, + 'ingredients' => { 547 => 'Ingredients' }, + 'ingredientsalternatepaths' => { 547 => [\'Ingredients','IngredientsAlternatePaths'] }, + 'ingredientsdocumentid' => { 547 => [\'Ingredients','IngredientsDocumentID'] }, + 'ingredientsfilepath' => { 547 => [\'Ingredients','IngredientsFilePath'] }, + 'ingredientsfrompart' => { 547 => [\'Ingredients','IngredientsFromPart'] }, + 'ingredientsinstanceid' => { 547 => [\'Ingredients','IngredientsInstanceID'] }, + 'ingredientslastmodifydate' => { 547 => [\'Ingredients','IngredientsLastModifyDate'] }, + 'ingredientslasturl' => { 547 => [\'Ingredients','IngredientsLastURL'] }, + 'ingredientslinkcategory' => { 547 => [\'Ingredients','IngredientsLinkCategory'] }, + 'ingredientslinkform' => { 547 => [\'Ingredients','IngredientsLinkForm'] }, + 'ingredientsmanager' => { 547 => [\'Ingredients','IngredientsManager'] }, + 'ingredientsmanagervariant' => { 547 => [\'Ingredients','IngredientsManagerVariant'] }, + 'ingredientsmanageto' => { 547 => [\'Ingredients','IngredientsManageTo'] }, + 'ingredientsmanageui' => { 547 => [\'Ingredients','IngredientsManageUI'] }, + 'ingredientsmaskmarkers' => { 547 => [\'Ingredients','IngredientsMaskMarkers'] }, + 'ingredientsoriginaldocumentid' => { 547 => [\'Ingredients','IngredientsOriginalDocumentID'] }, + 'ingredientspartmapping' => { 547 => [\'Ingredients','IngredientsPartMapping'] }, + 'ingredientsplacedresolutionunit' => { 547 => [\'Ingredients','IngredientsPlacedResolutionUnit'] }, + 'ingredientsplacedxresolution' => { 547 => [\'Ingredients','IngredientsPlacedXResolution'] }, + 'ingredientsplacedyresolution' => { 547 => [\'Ingredients','IngredientsPlacedYResolution'] }, + 'ingredientsrenditionclass' => { 547 => [\'Ingredients','IngredientsRenditionClass'] }, + 'ingredientsrenditionparams' => { 547 => [\'Ingredients','IngredientsRenditionParams'] }, + 'ingredientstopart' => { 547 => [\'Ingredients','IngredientsToPart'] }, + 'ingredientsversionid' => { 547 => [\'Ingredients','IngredientsVersionID'] }, 'initialafpointaiservoaf' => { 89 => 0x51e }, 'initialafpointinservo' => { 2 => 0x13 }, - 'initialcameradolly' => { 503 => 'InitialCameraDolly' }, - 'initialhorizontalfovdegrees' => { 503 => 'InitialHorizontalFOVDegrees' }, + 'initialcameradolly' => { 505 => 'InitialCameraDolly' }, + 'initialhorizontalfovdegrees' => { 505 => 'InitialHorizontalFOVDegrees' }, 'initialkey' => { 184 => 'WM/InitialKey' }, - 'initialverticalfovdegrees' => { 503 => 'InitialVerticalFOVDegrees' }, - 'initialviewheadingdegrees' => { 503 => 'InitialViewHeadingDegrees', 504 => 'InitialViewHeadingDegrees' }, - 'initialviewpitchdegrees' => { 503 => 'InitialViewPitchDegrees', 504 => 'InitialViewPitchDegrees' }, - 'initialviewrolldegrees' => { 503 => 'InitialViewRollDegrees', 504 => 'InitialViewRollDegrees' }, - 'initialzoomliveview' => { 306 => '4.4' }, - 'initialzoomsetting' => { 306 => '9.3', 315 => '27.3' }, + 'initialverticalfovdegrees' => { 505 => 'InitialVerticalFOVDegrees' }, + 'initialviewheadingdegrees' => { 505 => 'InitialViewHeadingDegrees', 506 => 'InitialViewHeadingDegrees' }, + 'initialviewpitchdegrees' => { 505 => 'InitialViewPitchDegrees', 506 => 'InitialViewPitchDegrees' }, + 'initialviewrolldegrees' => { 505 => 'InitialViewRollDegrees', 506 => 'InitialViewRollDegrees' }, + 'initialzoomliveview' => { 307 => '4.4' }, + 'initialzoomsetting' => { 307 => '9.3', 316 => '27.3' }, 'inkset' => { 124 => 0x14c }, 'inputprofile' => { 143 => 0x1389 }, - 'instanceid' => { 545 => 'InstanceID' }, + 'instanceid' => { 547 => 'InstanceID' }, 'instantplaybacksetup' => { 189 => 0x3e }, 'instantplaybacktime' => { 189 => 0x3d }, - 'instructions' => { 532 => 'Instructions' }, - 'instrument' => { 544 => 'instrument' }, + 'instructions' => { 534 => 'Instructions' }, + 'instrument' => { 546 => 'instrument' }, 'integrationtime' => { 143 => 0x423 }, - 'intellectualgenre' => { 528 => 'IntellectualGenre' }, - 'intelligentauto' => { 452 => 0xb052, 480 => 0xd, 481 => 0xe, 482 => 0xd }, + 'intellectualgenre' => { 530 => 'IntellectualGenre' }, + 'intelligentauto' => { 454 => 0xb052, 482 => 0xd, 483 => 0xe, 484 => 0xd }, 'intelligentcontrast' => { 55 => 0x4 }, - 'intelligentd-range' => { 350 => 0x79 }, - 'intelligentexposure' => { 350 => 0x5d }, - 'intelligentresolution' => { 350 => 0x70 }, + 'intelligentd-range' => { 352 => 0x79 }, + 'intelligentexposure' => { 352 => 0x5d }, + 'intelligentresolution' => { 352 => 0x70 }, 'interchangecolorspace' => { 138 => 0x40 }, 'intergraphmatrix' => { 124 => 0x8480 }, - 'internalflash' => { 186 => 0x2b, 306 => '23.1', 308 => '8.1', 311 => '22.1', 313 => '23.1', 317 => '8.1', 321 => '24.1', 329 => 0x1208 }, - 'internalflashae1' => { 331 => 0x1021 }, - 'internalflashae1_0' => { 331 => 0x101d }, - 'internalflashae2' => { 331 => 0x1022 }, - 'internalflashae2_0' => { 331 => 0x101e }, - 'internalflashmode' => { 373 => 0x1 }, - 'internalflashstrength' => { 373 => 0x3 }, - 'internalflashtable' => { 331 => 0x1024 }, - 'internallensserialnumber' => { 425 => 0xa005 }, - 'internalndfilter' => { 350 => 0x9d }, - 'internalserialnumber' => { 68 => 0x96, 80 => 0x9, 132 => 0x10, 192 => 0x49dc, 325 => 0x18, 327 => 0x102, 347 => 0x500, 350 => 0x25, 365 => 0x4, 418 => 0x5, 471 => [0x7c,0xf0], 472 => 0x88, 473 => [0x88,0x8a], 474 => 0x38 }, - 'interopindex' => { 124 => 0x1, 522 => 'InteroperabilityIndex' }, + 'internalflash' => { 186 => 0x2b, 307 => '23.1', 309 => '8.1', 312 => '22.1', 314 => '23.1', 318 => '8.1', 322 => '24.1', 331 => 0x1208 }, + 'internalflashae1' => { 333 => 0x1021 }, + 'internalflashae1_0' => { 333 => 0x101d }, + 'internalflashae2' => { 333 => 0x1022 }, + 'internalflashae2_0' => { 333 => 0x101e }, + 'internalflashmode' => { 375 => 0x1 }, + 'internalflashstrength' => { 375 => 0x3 }, + 'internalflashtable' => { 333 => 0x1024 }, + 'internallensserialnumber' => { 427 => 0xa005 }, + 'internalndfilter' => { 352 => 0x9d }, + 'internalserialnumber' => { 68 => 0x96, 80 => 0x9, 132 => 0x10, 192 => 0x49dc, 327 => 0x18, 329 => 0x102, 349 => 0x500, 352 => 0x25, 367 => 0x4, 420 => 0x5, 473 => [0x7c,0xf0], 474 => 0x88, 475 => [0x88,0x8a], 476 => 0x38 }, + 'interopindex' => { 124 => 0x1, 524 => 'InteroperabilityIndex' }, 'interopversion' => { 124 => 0x2 }, - 'interval' => { 264 => 0x20 }, - 'intervaldurationhours' => { 245 => 0xa0, 246 => 0xb8, 247 => 0xb8 }, - 'intervaldurationminutes' => { 245 => 0xa4, 246 => 0xbc, 247 => 0xbc }, - 'intervaldurationseconds' => { 245 => 0xa8, 246 => 0xc0, 247 => 0xc0 }, - 'intervalexposuresmoothing' => { 230 => 0x184, 245 => 0xb8, 246 => 0xd0, 247 => 0xd0 }, - 'intervalframe' => { 264 => 0x24 }, + 'interval' => { 265 => 0x20 }, + 'intervaldurationhours' => { 245 => 0x1dc, 246 => 0xa0, 247 => 0xb8, 248 => 0xb8 }, + 'intervaldurationminutes' => { 245 => 0x1e0, 246 => 0xa4, 247 => 0xbc, 248 => 0xbc }, + 'intervaldurationseconds' => { 245 => 0x1e4, 246 => 0xa8, 247 => 0xc0, 248 => 0xc0 }, + 'intervalexposuresmoothing' => { 230 => 0x184, 245 => 0x1f4, 246 => 0xb8, 247 => 0xd0, 248 => 0xd0 }, + 'intervalframe' => { 265 => 0x24 }, 'intervallength' => { 186 => 0x10 }, 'intervalmode' => { 186 => 0x26 }, 'intervalnumber' => { 186 => 0x11 }, - 'intervalpriority' => { 230 => 0x186, 245 => 0xba, 246 => 0xd2, 247 => 0xd2 }, - 'intervals' => { 230 => 0x17c, 245 => 0xb0, 246 => 0xc8, 247 => 0xc8, 248 => 0xbc, 249 => 0xcc, 250 => 0xcc }, - 'intervalshooting' => { 231 => 0x24, 266 => 0x24, 267 => 0x28, 386 => 0x92 }, - 'introtime' => { 544 => 'introTime' }, - 'introtimescale' => { 544 => [\'introTime','introTimeScale'] }, - 'introtimevalue' => { 544 => [\'introTime','introTimeValue'] }, + 'intervalpriority' => { 230 => 0x186, 245 => 0x1f6, 246 => 0xba, 247 => 0xd2, 248 => 0xd2 }, + 'intervals' => { 230 => 0x17c, 245 => 0x1ec, 246 => 0xb0, 247 => 0xc8, 248 => 0xc8, 249 => 0xbc, 250 => 0xcc, 251 => 0xcc }, + 'intervalshooting' => { 231 => 0x24, 267 => 0x24, 268 => 0x28, 388 => 0x92 }, + 'introtime' => { 546 => 'introTime' }, + 'introtimescale' => { 546 => [\'introTime','introTimeScale'] }, + 'introtimevalue' => { 546 => [\'introTime','introTimeValue'] }, 'ipaversion' => { 143 => 0xdae }, 'ipfcameramodel' => { 143 => 0xe4d }, 'iptc' => { 125 => 'IPTC' }, - 'iptc-naa' => { 124 => 0x83bb, 355 => 0x83bb }, + 'iptc-naa' => { 124 => 0x83bb, 357 => 0x83bb }, 'iptcbitspersample' => { 138 => 0x56 }, - 'iptcdigest' => { 400 => 0x425 }, + 'iptcdigest' => { 402 => 0x425 }, 'iptcimageheight' => { 138 => 0x1e }, 'iptcimagerotation' => { 138 => 0x66 }, 'iptcimagewidth' => { 138 => 0x14 }, - 'iptclastedited' => { 529 => 'IptcLastEdited' }, + 'iptclastedited' => { 531 => 'IptcLastEdited' }, 'iptcpicturenumber' => { 138 => 0xa }, 'iptcpixelheight' => { 138 => 0x32 }, 'iptcpixelwidth' => { 138 => 0x28 }, - 'isalternativeof' => { 534 => 'isAlternativeOf' }, - 'isbn' => { 534 => 'isbn' }, - 'iscorrectionof' => { 534 => 'isCorrectionOf' }, + 'isalternativeof' => { 536 => 'isAlternativeOf' }, + 'isbn' => { 536 => 'isbn' }, + 'iscorrectionof' => { 536 => 'isCorrectionOf' }, 'iscustompicturestyle' => { 114 => 0x3 }, - 'ismergedhdr' => { 512 => 'IsMergedHDR' }, - 'ismergedpanorama' => { 512 => 'IsMergedPanorama' }, - 'iso' => { 7 => 0x6, 9 => 0x6, 10 => 0x75, 11 => 0x6, 12 => 0x79, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x6, 28 => 0x6, 29 => 0x6, 31 => 0x0, 32 => 0x1, 117 => 0x14, 118 => [0x3014,0x14], 124 => 0x8827, 142 => 0xfd06, 143 => 0x1784, 145 => 0x60, 147 => [0xfa2e,0xfa46], 148 => [0x27,0x28], 149 => 0xf105, 152 => 0x14, 154 => 0x4e, 156 => 0x1e, 157 => 0x1a, 159 => 0x34, 161 => 'ISO', 186 => 0x8, 192 => 0x49ba, 229 => 0x0, 241 => 0x2, 350 => 0xd1, 355 => [0x17,0x37], 386 => [0x8b,0x14], 393 => 0x14, 395 => 0x105, 425 => 0xa014, 428 => 0x86, 449 => 0x6f, 457 => [0x1f,0x21,0x25], 521 => 'ISOSpeedRatings' }, - 'iso2' => { 229 => 0x6, 271 => 0x265, 272 => 0x25c, 273 => 0x265, 274 => 0x221, 275 => 0x25d, 276 => 0x256, 277 => 0x25d, 280 => 0x2b5, 283 => 0x265, 287 => 0x2b5 }, - 'isoauto' => { 366 => '14.4' }, - 'isoautoflashlimit' => { 246 => 0x156, 247 => 0x156, 248 => 0x146, 249 => 0x15a, 250 => 0x15a }, - 'isoautohilimit' => { 228 => 0x5, 246 => 0x154, 247 => 0x154, 248 => 0x144, 249 => 0x158, 250 => 0x158, 269 => 0x5, 279 => 0x18eb }, - 'isoautomax' => { 451 => 0x4 }, - 'isoautomin' => { 451 => 0x2 }, - 'isoautominspeed' => { 386 => 0x7a }, - 'isoautoshuttertime' => { 228 => 0x4, 246 => 0x15e, 247 => 0x15e, 248 => 0x14e, 249 => 0x162, 250 => 0x162, 269 => 0x4, 279 => 0x18ea }, - 'isobutton' => { 250 => 0x796 }, + 'ismergedhdr' => { 514 => 'IsMergedHDR' }, + 'ismergedpanorama' => { 514 => 'IsMergedPanorama' }, + 'iso' => { 7 => 0x6, 9 => 0x6, 10 => 0x75, 11 => 0x6, 12 => 0x79, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x6, 28 => 0x6, 29 => 0x6, 31 => 0x0, 32 => 0x1, 117 => 0x14, 118 => [0x3014,0x14], 124 => 0x8827, 142 => 0xfd06, 143 => 0x1784, 145 => 0x60, 147 => [0xfa2e,0xfa46], 148 => [0x27,0x28], 149 => 0xf105, 152 => 0x14, 154 => 0x4e, 156 => 0x1e, 157 => 0x1a, 159 => 0x34, 161 => 'ISO', 186 => 0x8, 192 => 0x49ba, 229 => 0x0, 241 => 0x2, 352 => 0xd1, 357 => [0x17,0x37], 388 => [0x8b,0x14], 395 => 0x14, 397 => 0x105, 427 => 0xa014, 430 => 0x86, 451 => 0x6f, 459 => [0x1f,0x21,0x25], 523 => 'ISOSpeedRatings' }, + 'iso2' => { 229 => 0x6, 272 => 0x265, 273 => 0x25c, 274 => 0x265, 275 => 0x221, 276 => 0x25d, 277 => 0x256, 278 => 0x25d, 281 => 0x2b5, 284 => 0x265, 288 => 0x2b5 }, + 'isoauto' => { 368 => '14.4' }, + 'isoautoflashlimit' => { 247 => 0x156, 248 => 0x156, 249 => 0x146, 250 => 0x15a, 251 => 0x15a }, + 'isoautohilimit' => { 228 => 0x5, 245 => 0x28a, 247 => 0x154, 248 => 0x154, 249 => 0x144, 250 => 0x158, 251 => 0x158, 270 => 0x5, 280 => 0x18eb }, + 'isoautomax' => { 453 => 0x4 }, + 'isoautomin' => { 453 => 0x2 }, + 'isoautominspeed' => { 388 => 0x7a }, + 'isoautoshuttertime' => { 228 => 0x4, 247 => 0x15e, 248 => 0x15e, 249 => 0x14e, 250 => 0x162, 251 => 0x162, 270 => 0x4, 280 => 0x18ea }, + 'isobutton' => { 251 => 0x796 }, 'isocalibrationgain' => { 143 => 0x89f }, - 'isodisplay' => { 309 => '4.1', 310 => '4.1', 311 => '2.3', 312 => '3.3', 313 => '3.3', 316 => '3.3', 319 => '4.3', 320 => '4.1', 321 => '4.3' }, + 'isodisplay' => { 310 => '4.1', 311 => '4.1', 312 => '2.3', 313 => '3.3', 314 => '3.3', 317 => '3.3', 320 => '4.3', 321 => '4.1', 322 => '4.3' }, 'isoexpansion' => { 89 => 0x103, 90 => 0x7, 91 => 0x8, 94 => 0x8, 229 => 0x4 }, 'isoexpansion2' => { 229 => 0xa }, - 'isofloor' => { 366 => 0x6 }, - 'isoselected' => { 349 => 0x359 }, + 'isofloor' => { 368 => 0x6 }, + 'isoselected' => { 351 => 0x359 }, 'isoselection' => { 241 => 0xf }, - 'isosensitivitystep' => { 314 => '6.2', 316 => '6.2' }, - 'isosetting' => { 145 => 0x5e, 157 => 0x14, 161 => 'ISOSetting', 186 => 0x24, 187 => 0x26, 188 => 0x1c, 189 => 0x13, 194 => 0x6, 241 => 0x13, 366 => '17.3', 417 => 0x27, 438 => 0x16, 439 => 0x14, 440 => 0x2, 449 => 0x6d, 451 => 0x0 }, - 'isospeed' => { 124 => 0x8833, 522 => 'ISOSpeed' }, + 'isosensitivitystep' => { 315 => '6.2', 317 => '6.2' }, + 'isosetting' => { 145 => 0x5e, 157 => 0x14, 161 => 'ISOSetting', 186 => 0x24, 187 => 0x26, 188 => 0x1c, 189 => 0x13, 194 => 0x6, 241 => 0x13, 368 => '17.3', 419 => 0x27, 440 => 0x16, 441 => 0x14, 442 => 0x2, 451 => 0x6d, 453 => 0x0 }, + 'isospeed' => { 124 => 0x8833, 524 => 'ISOSpeed' }, 'isospeedexpansion' => { 88 => 0x3 }, 'isospeedincrements' => { 89 => 0x102 }, - 'isospeedlatitudeyyy' => { 124 => 0x8834, 522 => 'ISOSpeedLatitudeyyy' }, - 'isospeedlatitudezzz' => { 124 => 0x8835, 522 => 'ISOSpeedLatitudezzz' }, + 'isospeedlatitudeyyy' => { 124 => 0x8834, 524 => 'ISOSpeedLatitudeyyy' }, + 'isospeedlatitudezzz' => { 124 => 0x8835, 524 => 'ISOSpeedLatitudezzz' }, 'isospeedrange' => { 89 => 0x103 }, - 'isostepsize' => { 306 => '6.1', 307 => '7.2', 309 => '7.2', 310 => '7.2', 315 => '4.1', 319 => '7.2', 320 => '7.2', 322 => 0x15d, 323 => 0x15d, 324 => 0x175 }, - 'isovalue' => { 331 => 0x1001 }, - 'isrc' => { 403 => 'xid ' }, - 'isrccode' => { 411 => "\xa9isr" }, - 'issn' => { 534 => 'issn' }, - 'issueidentifier' => { 534 => 'issueIdentifier' }, - 'issuename' => { 534 => 'issueName' }, - 'issueteaser' => { 534 => 'issueTeaser' }, - 'issuetype' => { 534 => 'issueType' }, - 'istranslationof' => { 534 => 'isTranslationOf' }, + 'isostepsize' => { 307 => '6.1', 308 => '7.2', 310 => '7.2', 311 => '7.2', 316 => '4.1', 320 => '7.2', 321 => '7.2', 323 => 0x14d, 324 => 0x15d, 325 => 0x15d, 326 => 0x175 }, + 'isovalue' => { 333 => 0x1001 }, + 'isrc' => { 405 => 'xid ' }, + 'isrccode' => { 413 => "\xa9isr" }, + 'issn' => { 536 => 'issn' }, + 'issueidentifier' => { 536 => 'issueIdentifier' }, + 'issuename' => { 536 => 'issueName' }, + 'issueteaser' => { 536 => 'issueTeaser' }, + 'issuetype' => { 536 => 'issueType' }, + 'istranslationof' => { 536 => 'isTranslationOf' }, 'itemsubtype' => { 183 => 'ItemSubType' }, - 'itunesu' => { 403 => 'itnu' }, + 'itunesu' => { 405 => 'itnu' }, 'jobid' => { 136 => 0xb8 }, - 'jobname' => { 523 => 'JobName' }, - 'jobref' => { 543 => 'JobRef' }, - 'jobrefid' => { 543 => [\'JobRef','JobRefId'] }, - 'jobrefname' => { 543 => [\'JobRef','JobRefName'] }, - 'jobrefurl' => { 543 => [\'JobRef','JobRefUrl'] }, - 'jobstatus' => { 523 => 'JobStatus' }, - 'jpeg-heifswitch' => { 452 => 0x2039 }, - 'jpeghandling' => { 515 => 'JPEGHandling', 517 => 'JPEGHandling' }, - 'jpegquality' => { 10 => 0x66, 350 => 0x43, 352 => 0x3034, 452 => 0xb047 }, - 'jpegsize' => { 352 => 0x303a }, - 'jpgcompression' => { 232 => 0x24, 241 => 0x44, 274 => '671.1' }, - 'jpgfromraw' => { 102 => 0x2007, 119 => 'Exif-JpgFromRaw', 355 => 0x2e }, + 'jobname' => { 525 => 'JobName' }, + 'jobref' => { 545 => 'JobRef' }, + 'jobrefid' => { 545 => [\'JobRef','JobRefId'] }, + 'jobrefname' => { 545 => [\'JobRef','JobRefName'] }, + 'jobrefurl' => { 545 => [\'JobRef','JobRefUrl'] }, + 'jobstatus' => { 525 => 'JobStatus' }, + 'jpeg-heifswitch' => { 454 => 0x2039 }, + 'jpeghandling' => { 517 => 'JPEGHandling', 519 => 'JPEGHandling' }, + 'jpegquality' => { 10 => 0x66, 352 => 0x43, 354 => 0x3034, 454 => 0xb047 }, + 'jpegsize' => { 354 => 0x303a }, + 'jpgcompression' => { 232 => 0x24, 241 => 0x44, 275 => '671.1' }, + 'jpgfromraw' => { 102 => 0x2007, 119 => 'Exif-JpgFromRaw', 357 => 0x2e }, 'jpgfromrawlength' => { 124 => [0x117,0x202] }, 'jpgfromrawstart' => { 124 => [0x111,0x201] }, - 'jpgrecordedpixels' => { 366 => '14.1' }, - 'jurisdiction' => { 513 => 'jurisdiction' }, + 'jpgrecordedpixels' => { 368 => '14.1' }, + 'jurisdiction' => { 515 => 'jurisdiction' }, 'jxldecodespeed' => { 124 => 0xcd4b }, 'jxldistance' => { 124 => 0xcd49 }, 'jxleffort' => { 124 => 0xcd4a }, - 'keepexposure' => { 322 => 0x237, 323 => 0x237, 324 => 0x24f }, - 'kelvinwb_01' => { 374 => 0x5 }, - 'kelvinwb_02' => { 374 => 0x9 }, - 'kelvinwb_03' => { 374 => 0xd }, - 'kelvinwb_04' => { 374 => 0x11 }, - 'kelvinwb_05' => { 374 => 0x15 }, - 'kelvinwb_06' => { 374 => 0x19 }, - 'kelvinwb_07' => { 374 => 0x1d }, - 'kelvinwb_08' => { 374 => 0x21 }, - 'kelvinwb_09' => { 374 => 0x25 }, - 'kelvinwb_10' => { 374 => 0x29 }, - 'kelvinwb_11' => { 374 => 0x2d }, - 'kelvinwb_12' => { 374 => 0x31 }, - 'kelvinwb_13' => { 374 => 0x35 }, - 'kelvinwb_14' => { 374 => 0x39 }, - 'kelvinwb_15' => { 374 => 0x3d }, - 'kelvinwb_16' => { 374 => 0x41 }, - 'kelvinwb_daylight' => { 374 => 0x1 }, + 'keepexposure' => { 324 => 0x237, 325 => 0x237, 326 => 0x24f }, + 'kelvinwb_01' => { 376 => 0x5 }, + 'kelvinwb_02' => { 376 => 0x9 }, + 'kelvinwb_03' => { 376 => 0xd }, + 'kelvinwb_04' => { 376 => 0x11 }, + 'kelvinwb_05' => { 376 => 0x15 }, + 'kelvinwb_06' => { 376 => 0x19 }, + 'kelvinwb_07' => { 376 => 0x1d }, + 'kelvinwb_08' => { 376 => 0x21 }, + 'kelvinwb_09' => { 376 => 0x25 }, + 'kelvinwb_10' => { 376 => 0x29 }, + 'kelvinwb_11' => { 376 => 0x2d }, + 'kelvinwb_12' => { 376 => 0x31 }, + 'kelvinwb_13' => { 376 => 0x35 }, + 'kelvinwb_14' => { 376 => 0x39 }, + 'kelvinwb_15' => { 376 => 0x3d }, + 'kelvinwb_16' => { 376 => 0x41 }, + 'kelvinwb_daylight' => { 376 => 0x1 }, 'kerneldenominators' => { 143 => 0x933 }, - 'key' => { 544 => 'key' }, - 'keystonecompensation' => { 330 => 0x1900 }, - 'keystonedirection' => { 330 => 0x1901 }, - 'keystonevalue' => { 330 => 0x1906 }, - 'keyword' => { 403 => 'keyw', 534 => 'keyword' }, + 'key' => { 546 => 'key' }, + 'keystonecompensation' => { 332 => 0x1900 }, + 'keystonedirection' => { 332 => 0x1901 }, + 'keystonevalue' => { 332 => 0x1906 }, + 'keyword' => { 405 => 'keyw', 536 => 'keyword' }, 'keywordinfo' => { 176 => 'Keywords' }, - 'keywords' => { 136 => 0x19, 162 => 'Keywords', 335 => 'Keywords', 402 => 'Keywords', 405 => 'keywords', 510 => 'keywords', 531 => 'Keywords', 542 => 'Keywords' }, - 'killdate' => { 534 => 'killDate' }, - 'killdatea-platform' => { 534 => [\'killDate','killDateA-platform'] }, - 'killdatedate' => { 534 => [\'killDate','killDateDate'] }, + 'keywords' => { 136 => 0x19, 162 => 'Keywords', 337 => 'Keywords', 404 => 'Keywords', 407 => 'keywords', 512 => 'keywords', 533 => 'Keywords', 544 => 'Keywords' }, + 'killdate' => { 536 => 'killDate' }, + 'killdatea-platform' => { 536 => [\'killDate','killDateA-platform'] }, + 'killdatedate' => { 536 => [\'killDate','killDateDate'] }, 'kodakimageheight' => { 142 => 0xf908, 145 => 0xe, 147 => [0xfa1e,0xfa52], 153 => 0x70 }, 'kodakimagewidth' => { 142 => 0xf907, 145 => 0xc, 147 => [0xfa1d,0xfa51], 153 => 0x6c }, 'kodakinfotype' => { 142 => 0xfa00 }, @@ -4010,14 +4012,14 @@ my %tagLookup = ( 'kodakmodel' => { 145 => 0x0, 153 => 0x28 }, 'kodaktag' => { 143 => 0x3ea }, 'kodakversion' => { 143 => 0x0 }, - 'label' => { 339 => 'Label', 542 => 'Label' }, - 'labelname1' => { 527 => [\'TagStructure','TagStructureLabelName'] }, - 'labelname2' => { 527 => [\'TagStructure','TagStructureSubLabelsLabelName'] }, - 'labelname3' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] }, - 'labelname4' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] }, - 'labelname5' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, - 'labelname6' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, - 'landmark' => { 350 => 0x6f }, + 'label' => { 341 => 'Label', 544 => 'Label' }, + 'labelname1' => { 529 => [\'TagStructure','TagStructureLabelName'] }, + 'labelname2' => { 529 => [\'TagStructure','TagStructureSubLabelsLabelName'] }, + 'labelname3' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] }, + 'labelname4' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] }, + 'labelname5' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, + 'labelname6' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] }, + 'landmark' => { 352 => 0x6f }, 'landscapeoutputhighlightpoint' => { 114 => 0x26 }, 'landscapeoutputshadowpoint' => { 114 => 0x27 }, 'landscaperawcolortone' => { 114 => 0x1f }, @@ -4032,321 +4034,322 @@ my %tagLookup = ( 'landscapeunsharpmaskfineness' => { 114 => 0xa0 }, 'landscapeunsharpmaskstrength' => { 114 => 0x9e }, 'landscapeunsharpmaskthreshold' => { 114 => 0xa2 }, - 'language' => { 246 => 0x6a2, 247 => 0x6a2, 248 => 0x592, 249 => 0x5c2, 250 => 0x5da, 518 => 'language' }, + 'language' => { 245 => 0x8fc, 247 => 0x6a2, 248 => 0x6a2, 249 => 0x592, 250 => 0x5c2, 251 => 0x5da, 520 => 'language' }, 'languageidentifier' => { 136 => 0x87 }, - 'largestvalidinteriorrectheight' => { 503 => 'LargestValidInteriorRectHeight' }, - 'largestvalidinteriorrectleft' => { 503 => 'LargestValidInteriorRectLeft' }, - 'largestvalidinteriorrecttop' => { 503 => 'LargestValidInteriorRectTop' }, - 'largestvalidinteriorrectwidth' => { 503 => 'LargestValidInteriorRectWidth' }, + 'largestvalidinteriorrectheight' => { 505 => 'LargestValidInteriorRectHeight' }, + 'largestvalidinteriorrectleft' => { 505 => 'LargestValidInteriorRectLeft' }, + 'largestvalidinteriorrecttop' => { 505 => 'LargestValidInteriorRectTop' }, + 'largestvalidinteriorrectwidth' => { 505 => 'LargestValidInteriorRectWidth' }, 'lastfilenumber' => { 186 => 0x1b }, 'lastkeywordiptc' => { 183 => 'LastKeywordIPTC' }, 'lastkeywordxmp' => { 183 => 'LastKeywordXMP' }, - 'lastphotodate' => { 503 => 'LastPhotoDate' }, - 'lasturl' => { 545 => 'LastURL' }, - 'lateralchromaticaberration' => { 452 => 0x2012 }, - 'lateralchromaticaberrationcorrectionalreadyapplied' => { 512 => 'LateralChromaticAberrationCorrectionAlreadyApplied' }, + 'lastphotodate' => { 505 => 'LastPhotoDate' }, + 'lasturl' => { 547 => 'LastURL' }, + 'lateralchromaticaberration' => { 454 => 0x2012 }, + 'lateralchromaticaberrationcorrectionalreadyapplied' => { 514 => 'LateralChromaticAberrationCorrectionAlreadyApplied' }, 'latestageorhigheststage' => { 123 => [\'GeologicalContext','GeologicalContextLatestAgeOrHighestStage'] }, 'latesteonorhighesteonothem' => { 123 => [\'GeologicalContext','GeologicalContextLatestEonOrHighestEonothem'] }, 'latestepochorhighestseries' => { 123 => [\'GeologicalContext','GeologicalContextLatestEpochOrHighestSeries'] }, 'latesteraorhighesterathem' => { 123 => [\'GeologicalContext','GeologicalContextLatestEraOrHighestErathem'] }, 'latestperiodorhighestsystem' => { 123 => [\'GeologicalContext','GeologicalContextLatestPeriodOrHighestSystem'] }, 'latitude' => { 121 => 'Latitude' }, - 'lc1' => { 376 => 0x2 }, - 'lc10' => { 376 => 0xb }, - 'lc11' => { 376 => 0xc }, - 'lc12' => { 376 => 0xd }, - 'lc14' => { 376 => 0xf }, - 'lc15' => { 376 => 0x10 }, - 'lc3' => { 376 => 0x4 }, - 'lc4' => { 376 => 0x5 }, - 'lc5' => { 376 => 0x6 }, - 'lc6' => { 376 => 0x7 }, - 'lc7' => { 376 => 0x8 }, - 'lc8' => { 376 => 0x9 }, + 'lc1' => { 378 => 0x2 }, + 'lc10' => { 378 => 0xb }, + 'lc11' => { 378 => 0xc }, + 'lc12' => { 378 => 0xd }, + 'lc14' => { 378 => 0xf }, + 'lc15' => { 378 => 0x10 }, + 'lc3' => { 378 => 0x4 }, + 'lc4' => { 378 => 0x5 }, + 'lc5' => { 378 => 0x6 }, + 'lc6' => { 378 => 0x7 }, + 'lc7' => { 378 => 0x8 }, + 'lc8' => { 378 => 0x9 }, 'lcddisplayatpoweron' => { 89 => 0x811, 93 => 0xa }, 'lcddisplayreturntoshoot' => { 94 => 0x12 }, - 'lcdillumination' => { 306 => '17.5', 307 => '5.2', 309 => '5.1', 310 => '5.1', 315 => '10.3', 316 => '4.2', 319 => '5.2', 320 => '5.1', 321 => '5.4', 322 => 0x101, 323 => 0x101, 324 => 0x117 }, + 'lcdillumination' => { 307 => '17.5', 308 => '5.2', 310 => '5.1', 311 => '5.1', 316 => '10.3', 317 => '4.2', 320 => '5.2', 321 => '5.1', 322 => '5.4', 323 => 0xf1, 324 => 0x101, 325 => 0x101, 326 => 0x117 }, 'lcdilluminationduringbulb' => { 89 => 0x408 }, 'lcdmatrix' => { 143 => 0xe74 }, 'lcdmatrixchickfix' => { 143 => 0xe75 }, 'lcdmatrixmarvin' => { 143 => 0xe76 }, 'lcdpanels' => { 88 => 0x8 }, - 'lcheditor' => { 299 => 0x8ae85e }, - 'legacyiptcdigest' => { 532 => 'LegacyIPTCDigest' }, - 'legalcode' => { 513 => 'legalcode' }, - 'lens' => { 124 => 0xfdea, 241 => 0x84, 512 => 'Lens' }, + 'lcheditor' => { 300 => 0x8ae85e }, + 'legacyiptcdigest' => { 534 => 'LegacyIPTCDigest' }, + 'legalcode' => { 515 => 'legalcode' }, + 'lens' => { 124 => 0xfdea, 241 => 0x84, 514 => 'Lens' }, 'lensafstopbutton' => { 87 => 0x11, 88 => 0x13, 89 => 0x506, 90 => 0x10, 91 => 0x12, 94 => 0x13, 95 => 0x9 }, - 'lensaperturerange' => { 428 => [0x30,0x48] }, - 'lensblur' => { 515 => 'LensBlur', 517 => 'LensBlur' }, - 'lensbluractive' => { 515 => [\'LensBlur','LensBlurActive'], 517 => [\'LensBlur','LensBlurActive'] }, - 'lensbluramount' => { 515 => [\'LensBlur','LensBlurBlurAmount'], 517 => [\'LensBlur','LensBlurBlurAmount'] }, - 'lensblurbokehaspect' => { 515 => [\'LensBlur','LensBlurBokehAspect'], 517 => [\'LensBlur','LensBlurBokehAspect'] }, - 'lensblurbokehrotation' => { 515 => [\'LensBlur','LensBlurBokehRotation'], 517 => [\'LensBlur','LensBlurBokehRotation'] }, - 'lensblurbokehshape' => { 515 => [\'LensBlur','LensBlurBokehShape'], 517 => [\'LensBlur','LensBlurBokehShape'] }, - 'lensblurbokehshapedetail' => { 515 => [\'LensBlur','LensBlurBokehShapeDetail'], 517 => [\'LensBlur','LensBlurBokehShapeDetail'] }, - 'lensblurcateyeamount' => { 515 => [\'LensBlur','LensBlurCatEyeAmount'], 517 => [\'LensBlur','LensBlurCatEyeAmount'] }, - 'lensblurcateyescale' => { 515 => [\'LensBlur','LensBlurCatEyeScale'], 517 => [\'LensBlur','LensBlurCatEyeScale'] }, - 'lensblurfocalrange' => { 515 => [\'LensBlur','LensBlurFocalRange'], 517 => [\'LensBlur','LensBlurFocalRange'] }, - 'lensblurfocalrangesource' => { 515 => [\'LensBlur','LensBlurFocalRangeSource'], 517 => [\'LensBlur','LensBlurFocalRangeSource'] }, - 'lensblurhighlightsboost' => { 515 => [\'LensBlur','LensBlurHighlightsBoost'], 517 => [\'LensBlur','LensBlurHighlightsBoost'] }, - 'lensblurhighlightsthreshold' => { 515 => [\'LensBlur','LensBlurHighlightsThreshold'], 517 => [\'LensBlur','LensBlurHighlightsThreshold'] }, - 'lensblursampledarea' => { 515 => [\'LensBlur','LensBlurSampledArea'], 517 => [\'LensBlur','LensBlurSampledArea'] }, - 'lensblursampledrange' => { 515 => [\'LensBlur','LensBlurSampledRange'], 517 => [\'LensBlur','LensBlurSampledRange'] }, - 'lensblursphericalaberration' => { 515 => [\'LensBlur','LensBlurSphericalAberration'], 517 => [\'LensBlur','LensBlurSphericalAberration'] }, - 'lensblursubjectrange' => { 515 => [\'LensBlur','LensBlurSubjectRange'], 517 => [\'LensBlur','LensBlurSubjectRange'] }, - 'lensblurversion' => { 515 => [\'LensBlur','LensBlurVersion'], 517 => [\'LensBlur','LensBlurVersion'] }, - 'lenscontrolring' => { 322 => 0xad, 323 => 0xad, 324 => 0xad }, - 'lenscorrectionsettings' => { 520 => 'LensCorrectionSettings' }, - 'lensdistortinfo' => { 512 => 'LensDistortInfo' }, - 'lensdistortionparams' => { 331 => 0x206 }, + 'lensaperturerange' => { 430 => [0x30,0x48] }, + 'lensblur' => { 517 => 'LensBlur', 519 => 'LensBlur' }, + 'lensbluractive' => { 517 => [\'LensBlur','LensBlurActive'], 519 => [\'LensBlur','LensBlurActive'] }, + 'lensbluramount' => { 517 => [\'LensBlur','LensBlurBlurAmount'], 519 => [\'LensBlur','LensBlurBlurAmount'] }, + 'lensblurbokehaspect' => { 517 => [\'LensBlur','LensBlurBokehAspect'], 519 => [\'LensBlur','LensBlurBokehAspect'] }, + 'lensblurbokehrotation' => { 517 => [\'LensBlur','LensBlurBokehRotation'], 519 => [\'LensBlur','LensBlurBokehRotation'] }, + 'lensblurbokehshape' => { 517 => [\'LensBlur','LensBlurBokehShape'], 519 => [\'LensBlur','LensBlurBokehShape'] }, + 'lensblurbokehshapedetail' => { 517 => [\'LensBlur','LensBlurBokehShapeDetail'], 519 => [\'LensBlur','LensBlurBokehShapeDetail'] }, + 'lensblurcateyeamount' => { 517 => [\'LensBlur','LensBlurCatEyeAmount'], 519 => [\'LensBlur','LensBlurCatEyeAmount'] }, + 'lensblurcateyescale' => { 517 => [\'LensBlur','LensBlurCatEyeScale'], 519 => [\'LensBlur','LensBlurCatEyeScale'] }, + 'lensblurfocalrange' => { 517 => [\'LensBlur','LensBlurFocalRange'], 519 => [\'LensBlur','LensBlurFocalRange'] }, + 'lensblurfocalrangesource' => { 517 => [\'LensBlur','LensBlurFocalRangeSource'], 519 => [\'LensBlur','LensBlurFocalRangeSource'] }, + 'lensblurhighlightsboost' => { 517 => [\'LensBlur','LensBlurHighlightsBoost'], 519 => [\'LensBlur','LensBlurHighlightsBoost'] }, + 'lensblurhighlightsthreshold' => { 517 => [\'LensBlur','LensBlurHighlightsThreshold'], 519 => [\'LensBlur','LensBlurHighlightsThreshold'] }, + 'lensblursampledarea' => { 517 => [\'LensBlur','LensBlurSampledArea'], 519 => [\'LensBlur','LensBlurSampledArea'] }, + 'lensblursampledrange' => { 517 => [\'LensBlur','LensBlurSampledRange'], 519 => [\'LensBlur','LensBlurSampledRange'] }, + 'lensblursphericalaberration' => { 517 => [\'LensBlur','LensBlurSphericalAberration'], 519 => [\'LensBlur','LensBlurSphericalAberration'] }, + 'lensblursubjectrange' => { 517 => [\'LensBlur','LensBlurSubjectRange'], 519 => [\'LensBlur','LensBlurSubjectRange'] }, + 'lensblurversion' => { 517 => [\'LensBlur','LensBlurVersion'], 519 => [\'LensBlur','LensBlurVersion'] }, + 'lenscontrolring' => { 323 => 0xb1, 324 => 0xad, 325 => 0xad, 326 => 0xad }, + 'lenscorrectionsettings' => { 522 => 'LensCorrectionSettings' }, + 'lensdistortinfo' => { 514 => 'LensDistortInfo' }, + 'lensdistortionparams' => { 333 => 0x206 }, 'lensdriveend' => { 239 => 0x56 }, 'lensdrivenoaf' => { 89 => 0x505 }, 'lensdrivewhenafimpossible' => { 2 => 0xb }, - 'lense-mountversion' => { 440 => 0x3f0, 488 => 0xd }, - 'lensfirmware' => { 419 => 0x20, 425 => 0xa004 }, - 'lensfirmwareversion' => { 327 => 0x204, 350 => 0x60, 440 => 0x3f3, 488 => 0x14 }, - 'lensfocallength' => { 108 => 0xf0512, 376 => 0x9 }, - 'lensfocalrange' => { 428 => [0xa,0x2a] }, - 'lensfocusfunctionbuttons' => { 307 => '55.1', 309 => '52.1', 310 => '52.1', 319 => '52.1', 320 => '52.1' }, - 'lensformat' => { 465 => 0x1891, 467 => 0x18bd, 468 => 0x18ed, 469 => 0x17f1, 471 => 0x106, 472 => 0x106, 483 => 0x603, 484 => 0x5d }, - 'lensfstops' => { 233 => 0x7, 234 => 0xc, 235 => 0xd, 239 => 0xe, 241 => 0x8b, 376 => '0.3' }, - 'lensfunc1button' => { 322 => 0x9f, 323 => 0x9f, 324 => 0x9f }, - 'lensfunc1buttonplaybackmode' => { 247 => 0x80a, 250 => 0x810 }, - 'lensfunc2button' => { 322 => 0xa7, 323 => 0xa7, 324 => 0xa7 }, - 'lensfunc2buttonplaybackmode' => { 247 => 0x80c, 250 => 0x812 }, - 'lensid' => { 239 => 0x30, 512 => 'LensID' }, + 'lense-mountversion' => { 442 => 0x3f0, 490 => 0xd }, + 'lensfirmware' => { 421 => 0x20, 427 => 0xa004 }, + 'lensfirmwareversion' => { 239 => 0x34, 329 => 0x204, 352 => 0x60, 442 => 0x3f3, 490 => 0x14 }, + 'lensfocallength' => { 108 => 0xf0512, 378 => 0x9 }, + 'lensfocalrange' => { 430 => [0xa,0x2a] }, + 'lensfocusfunctionbuttons' => { 308 => '55.1', 310 => '52.1', 311 => '52.1', 320 => '52.1', 321 => '52.1' }, + 'lensformat' => { 467 => 0x1891, 469 => 0x18bd, 470 => 0x18ed, 471 => 0x17f1, 473 => 0x106, 474 => 0x106, 485 => 0x603, 486 => 0x5d }, + 'lensfstops' => { 233 => 0x7, 234 => 0xc, 235 => 0xd, 239 => 0xe, 241 => 0x8b, 378 => '0.3' }, + 'lensfunc1button' => { 323 => 0xa3, 324 => 0x9f, 325 => 0x9f, 326 => 0x9f }, + 'lensfunc1buttonplaybackmode' => { 248 => 0x80a, 251 => 0x810 }, + 'lensfunc2button' => { 323 => 0xab, 324 => 0xa7, 325 => 0xa7, 326 => 0xa7 }, + 'lensfunc2buttonplaybackmode' => { 248 => 0x80c, 251 => 0x812 }, + 'lensid' => { 239 => 0x30, 514 => 'LensID' }, 'lensidnumber' => { 233 => 0x6, 234 => 0xb, 235 => 0xc, 239 => 0xd }, - 'lensinfo' => { 124 => 0xa432, 382 => 0x2a, 512 => 'LensInfo', 522 => 'LensSpecification' }, - 'lenskind' => { 376 => 0x1 }, - 'lensmake' => { 124 => 0xa433, 168 => 'Make', 522 => 'LensMake' }, - 'lensmanualdistortionamount' => { 515 => 'LensManualDistortionAmount', 517 => 'LensManualDistortionAmount' }, + 'lensinfo' => { 124 => 0xa432, 384 => 0x2a, 514 => 'LensInfo', 524 => 'LensSpecification' }, + 'lenskind' => { 378 => 0x1 }, + 'lensmake' => { 124 => 0xa433, 168 => 'Make', 524 => 'LensMake' }, + 'lensmanualdistortionamount' => { 517 => 'LensManualDistortionAmount', 519 => 'LensManualDistortionAmount' }, 'lensmanufacturer' => { 183 => 'LensManufacturer' }, - 'lensmaxaperturerange' => { 428 => 0x2b }, - 'lensmodel' => { 7 => 0x937, 14 => 0x92b, 15 => 0x933, 68 => 0x95, 124 => 0xa434, 168 => 'Model', 183 => 'LensModel', 236 => 0x18a, 237 => 0x18b, 238 => 0x2ac, 327 => 0x203, 382 => 0xc, 395 => 0x412, 522 => 'LensModel' }, + 'lensmaxaperturerange' => { 430 => 0x2b }, + 'lensmodel' => { 7 => 0x937, 14 => 0x92b, 15 => 0x933, 68 => 0x95, 124 => 0xa434, 168 => 'Model', 183 => 'LensModel', 236 => 0x18a, 237 => 0x18b, 238 => 0x2ac, 329 => 0x203, 384 => 0xc, 397 => 0x412, 524 => 'LensModel' }, 'lensmodulationoptimizer' => { 132 => 0x1045 }, - 'lensmount' => { 440 => 0x99, 465 => 0x1892, 467 => 0x18be, 468 => 0x18ee, 469 => 0x17f2, 471 => 0x105, 472 => 0x105, 483 => 0x604, 484 => 0x5e }, - 'lensmount2' => { 488 => 0x8 }, - 'lensmounttype' => { 239 => 0x35 }, + 'lensmount' => { 442 => 0x99, 467 => 0x1892, 469 => 0x18be, 470 => 0x18ee, 471 => 0x17f2, 473 => 0x105, 474 => 0x105, 485 => 0x604, 486 => 0x5e }, + 'lensmount2' => { 490 => 0x8 }, + 'lensmounttype' => { 239 => 0x5f }, 'lenspositionabsolute' => { 239 => 0x5a }, - 'lensprofilechromaticaberrationscale' => { 515 => 'LensProfileChromaticAberrationScale', 517 => 'LensProfileChromaticAberrationScale' }, - 'lensprofiledigest' => { 515 => 'LensProfileDigest', 517 => 'LensProfileDigest' }, - 'lensprofiledistortionscale' => { 515 => 'LensProfileDistortionScale', 517 => 'LensProfileDistortionScale' }, - 'lensprofileenable' => { 515 => 'LensProfileEnable', 517 => 'LensProfileEnable' }, - 'lensprofilefilename' => { 515 => 'LensProfileFilename', 517 => 'LensProfileFilename' }, - 'lensprofileisembedded' => { 515 => 'LensProfileIsEmbedded', 517 => 'LensProfileIsEmbedded' }, - 'lensprofilematchkeycameramodelname' => { 515 => 'LensProfileMatchKeyCameraModelName', 517 => 'LensProfileMatchKeyCameraModelName' }, - 'lensprofilematchkeyexifmake' => { 515 => 'LensProfileMatchKeyExifMake', 517 => 'LensProfileMatchKeyExifMake' }, - 'lensprofilematchkeyexifmodel' => { 515 => 'LensProfileMatchKeyExifModel', 517 => 'LensProfileMatchKeyExifModel' }, - 'lensprofilematchkeyisraw' => { 515 => 'LensProfileMatchKeyIsRaw', 517 => 'LensProfileMatchKeyIsRaw' }, - 'lensprofilematchkeylensid' => { 515 => 'LensProfileMatchKeyLensID', 517 => 'LensProfileMatchKeyLensID' }, - 'lensprofilematchkeylensinfo' => { 515 => 'LensProfileMatchKeyLensInfo', 517 => 'LensProfileMatchKeyLensInfo' }, - 'lensprofilematchkeylensname' => { 515 => 'LensProfileMatchKeyLensName', 517 => 'LensProfileMatchKeyLensName' }, - 'lensprofilematchkeysensorformatfactor' => { 515 => 'LensProfileMatchKeySensorFormatFactor', 517 => 'LensProfileMatchKeySensorFormatFactor' }, - 'lensprofilename' => { 349 => 0x370, 515 => 'LensProfileName', 517 => 'LensProfileName' }, - 'lensprofilesetup' => { 515 => 'LensProfileSetup', 517 => 'LensProfileSetup' }, - 'lensprofilevignettingscale' => { 515 => 'LensProfileVignettingScale', 517 => 'LensProfileVignettingScale' }, - 'lensproperties' => { 327 => 0x20b }, - 'lensserialnumber' => { 21 => 0x164, 34 => 0x16b, 64 => 0x0, 124 => 0xa435, 168 => 'SerialNumber', 327 => 0x202, 348 => 0x321, 350 => 0x52, 411 => 'LENS', 419 => 0x30, 512 => 'LensSerialNumber', 522 => 'LensSerialNumber' }, + 'lensprofilechromaticaberrationscale' => { 517 => 'LensProfileChromaticAberrationScale', 519 => 'LensProfileChromaticAberrationScale' }, + 'lensprofiledigest' => { 517 => 'LensProfileDigest', 519 => 'LensProfileDigest' }, + 'lensprofiledistortionscale' => { 517 => 'LensProfileDistortionScale', 519 => 'LensProfileDistortionScale' }, + 'lensprofileenable' => { 517 => 'LensProfileEnable', 519 => 'LensProfileEnable' }, + 'lensprofilefilename' => { 517 => 'LensProfileFilename', 519 => 'LensProfileFilename' }, + 'lensprofileisembedded' => { 517 => 'LensProfileIsEmbedded', 519 => 'LensProfileIsEmbedded' }, + 'lensprofilematchkeycameramodelname' => { 517 => 'LensProfileMatchKeyCameraModelName', 519 => 'LensProfileMatchKeyCameraModelName' }, + 'lensprofilematchkeyexifmake' => { 517 => 'LensProfileMatchKeyExifMake', 519 => 'LensProfileMatchKeyExifMake' }, + 'lensprofilematchkeyexifmodel' => { 517 => 'LensProfileMatchKeyExifModel', 519 => 'LensProfileMatchKeyExifModel' }, + 'lensprofilematchkeyisraw' => { 517 => 'LensProfileMatchKeyIsRaw', 519 => 'LensProfileMatchKeyIsRaw' }, + 'lensprofilematchkeylensid' => { 517 => 'LensProfileMatchKeyLensID', 519 => 'LensProfileMatchKeyLensID' }, + 'lensprofilematchkeylensinfo' => { 517 => 'LensProfileMatchKeyLensInfo', 519 => 'LensProfileMatchKeyLensInfo' }, + 'lensprofilematchkeylensname' => { 517 => 'LensProfileMatchKeyLensName', 519 => 'LensProfileMatchKeyLensName' }, + 'lensprofilematchkeysensorformatfactor' => { 517 => 'LensProfileMatchKeySensorFormatFactor', 519 => 'LensProfileMatchKeySensorFormatFactor' }, + 'lensprofilename' => { 351 => 0x370, 517 => 'LensProfileName', 519 => 'LensProfileName' }, + 'lensprofilesetup' => { 517 => 'LensProfileSetup', 519 => 'LensProfileSetup' }, + 'lensprofilevignettingscale' => { 517 => 'LensProfileVignettingScale', 519 => 'LensProfileVignettingScale' }, + 'lensproperties' => { 329 => 0x20b }, + 'lensserialnumber' => { 21 => 0x164, 34 => 0x16b, 64 => 0x0, 124 => 0xa435, 168 => 'SerialNumber', 329 => 0x202, 350 => 0x321, 352 => 0x52, 413 => 'LENS', 421 => 0x30, 514 => 'LensSerialNumber', 524 => 'LensSerialNumber' }, 'lensshutterlock' => { 189 => 0x4a }, - 'lensspec' => { 435 => 0x0, 436 => 0x0, 437 => 0x0, 452 => 0xb02a }, - 'lensspecfeatures' => { 471 => [0x115,0x116], 472 => [0x116,0x1ed,0x1f0,0x21c,0x21e] }, - 'lenstemperature' => { 331 => 0x1008 }, - 'lenstype' => { 7 => 0xe2, 8 => 0xd, 9 => 0x1a7, 10 => 0xc, 11 => 0x111, 12 => 0xc, 13 => 0x14f, 14 => 0xd6, 15 => 0xde, 16 => 0xf6, 17 => 0xea, 18 => 0xff, 19 => [0xc,0x97], 20 => 0xe6, 21 => 0x153, 22 => 0xea, 23 => 0xe8, 24 => 0x127, 25 => 0x161, 26 => 0x166, 27 => 0x184, 28 => 0x112, 29 => 0x189, 36 => 0x16, 191 => 0x10c, 192 => 0x49bd, 241 => 0x83, 327 => 0x201, 341 => 0x16, 345 => 0x310, 347 => 0x303, 348 => 0x303, 350 => 0x51, 352 => 0x3405, 377 => 0x0, 378 => 0x0, 379 => 0x1, 380 => 0x1, 381 => 0x1, 383 => 0x0, 425 => 0xa003, 428 => 0x27, 452 => 0xb027, 465 => 0x1896, 467 => 0x18c2, 468 => 0x18f2, 469 => 0x17f6, 471 => 0x109, 472 => 0x109, 483 => 0x608, 484 => 0x62 }, - 'lenstype2' => { 440 => 0x3f7, 465 => 0x1893, 467 => 0x18bf, 468 => 0x18ef, 469 => 0x17f3, 471 => 0x107, 472 => 0x107, 483 => 0x605, 484 => 0x60 }, - 'lenstype3' => { 488 => 0x9 }, - 'lenstypemake' => { 350 => 0xc4 }, - 'lenstypemodel' => { 350 => [0xc5,0xe4] }, - 'lenszoomposition' => { 480 => 0x19, 481 => 0x1e, 484 => [0x342,0x34e,0x35a] }, - 'levelindicator' => { 358 => 0x15 }, - 'levelmeter' => { 411 => ['Lvlm','lvlm'] }, - 'levelorientation' => { 384 => 0x0 }, - 'license' => { 513 => 'license' }, - 'licensee' => { 336 => 'Licensee' }, - 'licenseeid' => { 336 => [\'Licensee','LicenseeLicenseeID'] }, - 'licenseeimageid' => { 336 => 'LicenseeImageID' }, - 'licenseeimagenotes' => { 336 => 'LicenseeImageNotes' }, - 'licenseename' => { 336 => [\'Licensee','LicenseeLicenseeName'] }, - 'licenseenddate' => { 336 => 'LicenseEndDate' }, - 'licenseeprojectreference' => { 336 => 'LicenseeProjectReference' }, - 'licenseetransactionid' => { 336 => 'LicenseeTransactionID' }, - 'licenseid' => { 336 => 'LicenseID' }, - 'licensestartdate' => { 336 => 'LicenseStartDate' }, - 'licensetransactiondate' => { 336 => 'LicenseTransactionDate' }, - 'licensetype' => { 519 => 'licensetype' }, - 'licensor' => { 336 => 'Licensor' }, - 'licensorcity' => { 336 => [\'Licensor','LicensorLicensorCity'] }, - 'licensorcountry' => { 336 => [\'Licensor','LicensorLicensorCountry'] }, - 'licensoremail' => { 336 => [\'Licensor','LicensorLicensorEmail'] }, - 'licensorextendedaddress' => { 336 => [\'Licensor','LicensorLicensorExtendedAddress'] }, - 'licensorid' => { 336 => [\'Licensor','LicensorLicensorID'] }, - 'licensorimageid' => { 336 => 'LicensorImageID' }, - 'licensorname' => { 336 => [\'Licensor','LicensorLicensorName'] }, - 'licensornotes' => { 336 => 'LicensorNotes' }, - 'licensorpostalcode' => { 336 => [\'Licensor','LicensorLicensorPostalCode'] }, - 'licensorregion' => { 336 => [\'Licensor','LicensorLicensorRegion'] }, - 'licensorstreetaddress' => { 336 => [\'Licensor','LicensorLicensorStreetAddress'] }, - 'licensortelephone1' => { 336 => [\'Licensor','LicensorLicensorTelephone1'] }, - 'licensortelephone2' => { 336 => [\'Licensor','LicensorLicensorTelephone2'] }, - 'licensortelephonetype1' => { 336 => [\'Licensor','LicensorLicensorTelephoneType1'] }, - 'licensortelephonetype2' => { 336 => [\'Licensor','LicensorLicensorTelephoneType2'] }, - 'licensortransactionid' => { 336 => 'LicensorTransactionID' }, - 'licensorurl' => { 336 => [\'Licensor','LicensorLicensorURL'] }, - 'lightcondition' => { 331 => 0x1009 }, + 'lensspec' => { 437 => 0x0, 438 => 0x0, 439 => 0x0, 454 => 0xb02a }, + 'lensspecfeatures' => { 473 => [0x115,0x116], 474 => [0x116,0x1ed,0x1f0,0x21c,0x21e] }, + 'lenstemperature' => { 333 => 0x1008 }, + 'lenstype' => { 7 => 0xe2, 8 => 0xd, 9 => 0x1a7, 10 => 0xc, 11 => 0x111, 12 => 0xc, 13 => 0x14f, 14 => 0xd6, 15 => 0xde, 16 => 0xf6, 17 => 0xea, 18 => 0xff, 19 => [0xc,0x97], 20 => 0xe6, 21 => 0x153, 22 => 0xea, 23 => 0xe8, 24 => 0x127, 25 => 0x161, 26 => 0x166, 27 => 0x184, 28 => 0x112, 29 => 0x189, 36 => 0x16, 191 => 0x10c, 192 => 0x49bd, 241 => 0x83, 329 => 0x201, 343 => 0x16, 347 => 0x310, 349 => 0x303, 350 => 0x303, 352 => 0x51, 354 => 0x3405, 379 => 0x0, 380 => 0x0, 381 => 0x1, 382 => 0x1, 383 => 0x1, 385 => 0x0, 427 => 0xa003, 430 => 0x27, 454 => 0xb027, 467 => 0x1896, 469 => 0x18c2, 470 => 0x18f2, 471 => 0x17f6, 473 => 0x109, 474 => 0x109, 485 => 0x608, 486 => 0x62 }, + 'lenstype2' => { 442 => 0x3f7, 467 => 0x1893, 469 => 0x18bf, 470 => 0x18ef, 471 => 0x17f3, 473 => 0x107, 474 => 0x107, 485 => 0x605, 486 => 0x60 }, + 'lenstype3' => { 490 => 0x9 }, + 'lenstypemake' => { 352 => 0xc4 }, + 'lenstypemodel' => { 352 => [0xc5,0xe4] }, + 'lenszoomposition' => { 482 => 0x19, 483 => 0x1e, 486 => [0x342,0x34e,0x35a] }, + 'levelindicator' => { 360 => 0x15 }, + 'levelmeter' => { 413 => ['Lvlm','lvlm'] }, + 'levelorientation' => { 386 => 0x0 }, + 'license' => { 515 => 'license' }, + 'licensee' => { 338 => 'Licensee' }, + 'licenseeid' => { 338 => [\'Licensee','LicenseeLicenseeID'] }, + 'licenseeimageid' => { 338 => 'LicenseeImageID' }, + 'licenseeimagenotes' => { 338 => 'LicenseeImageNotes' }, + 'licenseename' => { 338 => [\'Licensee','LicenseeLicenseeName'] }, + 'licenseenddate' => { 338 => 'LicenseEndDate' }, + 'licenseeprojectreference' => { 338 => 'LicenseeProjectReference' }, + 'licenseetransactionid' => { 338 => 'LicenseeTransactionID' }, + 'licenseid' => { 338 => 'LicenseID' }, + 'licensestartdate' => { 338 => 'LicenseStartDate' }, + 'licensetransactiondate' => { 338 => 'LicenseTransactionDate' }, + 'licensetype' => { 521 => 'licensetype' }, + 'licensor' => { 338 => 'Licensor' }, + 'licensorcity' => { 338 => [\'Licensor','LicensorLicensorCity'] }, + 'licensorcountry' => { 338 => [\'Licensor','LicensorLicensorCountry'] }, + 'licensoremail' => { 338 => [\'Licensor','LicensorLicensorEmail'] }, + 'licensorextendedaddress' => { 338 => [\'Licensor','LicensorLicensorExtendedAddress'] }, + 'licensorid' => { 338 => [\'Licensor','LicensorLicensorID'] }, + 'licensorimageid' => { 338 => 'LicensorImageID' }, + 'licensorname' => { 338 => [\'Licensor','LicensorLicensorName'] }, + 'licensornotes' => { 338 => 'LicensorNotes' }, + 'licensorpostalcode' => { 338 => [\'Licensor','LicensorLicensorPostalCode'] }, + 'licensorregion' => { 338 => [\'Licensor','LicensorLicensorRegion'] }, + 'licensorstreetaddress' => { 338 => [\'Licensor','LicensorLicensorStreetAddress'] }, + 'licensortelephone1' => { 338 => [\'Licensor','LicensorLicensorTelephone1'] }, + 'licensortelephone2' => { 338 => [\'Licensor','LicensorLicensorTelephone2'] }, + 'licensortelephonetype1' => { 338 => [\'Licensor','LicensorLicensorTelephoneType1'] }, + 'licensortelephonetype2' => { 338 => [\'Licensor','LicensorLicensorTelephoneType2'] }, + 'licensortransactionid' => { 338 => 'LicensorTransactionID' }, + 'licensorurl' => { 338 => [\'Licensor','LicensorLicensorURL'] }, + 'lightcondition' => { 333 => 0x1009 }, 'lightingmode' => { 118 => 0x302a }, - 'lightreading' => { 386 => 0x15 }, - 'lightsource' => { 124 => 0x9208, 241 => 0x90, 334 => 0x1000, 521 => 'LightSource' }, - 'lightsourcespecial' => { 427 => 0x21d }, - 'lightswitch' => { 319 => '0.1', 321 => '0.1' }, - 'lightvaluecenter' => { 331 => 0x103d }, - 'lightvalueperiphery' => { 331 => 0x103e }, - 'limitaf-areamodesel3dtracking' => { 322 => 0x153, 323 => 0x153, 324 => 0x16b }, - 'limitaf-areamodeseldynamic_l' => { 322 => 0x151, 323 => 0x151, 324 => 0x169 }, - 'limitaf-areamodeseldynamic_m' => { 322 => 0x150, 323 => 0x150, 324 => 0x168 }, - 'limitaf-areamodeseldynamic_s' => { 322 => 0x14f, 323 => 0x14f, 324 => 0x167 }, - 'limitaf-areamodeselpinpoint' => { 322 => 0x11, 323 => 0x11, 324 => 0x11 }, - 'limitaf-areamodeselwideaf_l' => { 322 => 0x14, 323 => 0x14, 324 => 0x14 }, - 'limitaf-areamodeselwideaf_s' => { 322 => 0x13, 323 => 0x13, 324 => 0x13 }, - 'limitafareamodeselauto' => { 322 => 0x15, 323 => 0x15, 324 => 0x15 }, - 'limitafareamodeselection' => { 307 => '51.1', 309 => '49.1', 310 => '49.1', 319 => '49.1', 320 => '49.1' }, - 'limitreleasemodeselc120' => { 323 => '269.4', 324 => '293.4' }, - 'limitreleasemodeselc30' => { 323 => '269.3', 324 => '293.3' }, - 'limitreleasemodeselch' => { 323 => '269.2', 324 => '293.2' }, - 'limitreleasemodeselcl' => { 323 => '269.1', 324 => '293.1' }, - 'limitreleasemodeselself' => { 323 => '269.5', 324 => '293.5' }, - 'limitselectableimagearea16to9' => { 322 => 0x47, 323 => 0x47, 324 => 0x47 }, - 'limitselectableimagearea1to1' => { 322 => 0x46, 323 => 0x46, 324 => 0x46 }, - 'limitselectableimageareadx' => { 322 => 0x45, 323 => 0x45, 324 => 0x45 }, - 'linearitylimitblue' => { 355 => 0x10 }, - 'linearitylimitgreen' => { 355 => 0xf }, - 'linearitylimitred' => { 355 => 0xe }, + 'lightreading' => { 388 => 0x15 }, + 'lightsource' => { 124 => 0x9208, 241 => 0x90, 336 => 0x1000, 523 => 'LightSource' }, + 'lightsourcespecial' => { 429 => 0x21d }, + 'lightswitch' => { 320 => '0.1', 322 => '0.1' }, + 'lightvaluecenter' => { 333 => 0x103d }, + 'lightvalueperiphery' => { 333 => 0x103e }, + 'limitaf-areamodesel3dtracking' => { 323 => 0x143, 324 => 0x153, 325 => 0x153, 326 => 0x16b }, + 'limitaf-areamodeseldynamic_l' => { 323 => 0x141, 324 => 0x151, 325 => 0x151, 326 => 0x169 }, + 'limitaf-areamodeseldynamic_m' => { 323 => 0x140, 324 => 0x150, 325 => 0x150, 326 => 0x168 }, + 'limitaf-areamodeseldynamic_s' => { 323 => 0x13f, 324 => 0x14f, 325 => 0x14f, 326 => 0x167 }, + 'limitaf-areamodeselpinpoint' => { 323 => 0x11, 324 => 0x11, 325 => 0x11, 326 => 0x11 }, + 'limitaf-areamodeselwideaf_l' => { 323 => 0x14, 324 => 0x14, 325 => 0x14, 326 => 0x14 }, + 'limitaf-areamodeselwideaf_s' => { 323 => 0x13, 324 => 0x13, 325 => 0x13, 326 => 0x13 }, + 'limitafareamodeselauto' => { 323 => 0x15, 324 => 0x15, 325 => 0x15, 326 => 0x15 }, + 'limitafareamodeselection' => { 308 => '51.1', 310 => '49.1', 311 => '49.1', 320 => '49.1', 321 => '49.1' }, + 'limitreleasemodeselc120' => { 325 => '269.4', 326 => '293.4' }, + 'limitreleasemodeselc30' => { 325 => '269.3', 326 => '293.3' }, + 'limitreleasemodeselch' => { 325 => '269.2', 326 => '293.2' }, + 'limitreleasemodeselcl' => { 325 => '269.1', 326 => '293.1' }, + 'limitreleasemodeselself' => { 325 => '269.5', 326 => '293.5' }, + 'limitselectableimagearea16to9' => { 323 => 0x4d, 324 => 0x47, 325 => 0x47, 326 => 0x47 }, + 'limitselectableimagearea1to1' => { 323 => 0x4c, 324 => 0x46, 325 => 0x46, 326 => 0x46 }, + 'limitselectableimageareadx' => { 323 => 0x4b, 324 => 0x45, 325 => 0x45, 326 => 0x45 }, + 'linearitylimitblue' => { 357 => 0x10 }, + 'linearitylimitgreen' => { 357 => 0xf }, + 'linearitylimitred' => { 357 => 0xe }, 'linearityuppermargin' => { 43 => 0x32c, 44 => 0x282, 45 => 0x296, 48 => [0x2ba,0x2d1,0x2d5], 50 => 0x1e5, 51 => [0x1fe,0x2de], 52 => [0x232,0x310], 53 => 0x31e }, 'linearizationtable' => { 124 => 0xc618 }, 'linearresponselimit' => { 124 => 0xc62e }, - 'link' => { 534 => 'link' }, - 'linkaetoafpoint' => { 366 => '14.2' }, - 'linkedencodedrightsexpr' => { 529 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] }, - 'linkedencodedrightsexprlangid' => { 529 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] }, - 'linkedencodedrightsexprtype' => { 529 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] }, - 'linkedencrightsexpr' => { 529 => 'LinkedEncRightsExpr' }, + 'link' => { 536 => 'link' }, + 'linkaetoafpoint' => { 368 => '14.2' }, + 'linkedencodedrightsexpr' => { 531 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] }, + 'linkedencodedrightsexprlangid' => { 531 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] }, + 'linkedencodedrightsexprtype' => { 531 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] }, + 'linkedencrightsexpr' => { 531 => 'LinkedEncRightsExpr' }, + 'linkvrtofocuspoint' => { 245 => 0x3ec }, 'linlogcoring' => { 143 => 0x904 }, 'lithostratigraphicterms' => { 123 => [\'GeologicalContext','GeologicalContextLithostratigraphicTerms'] }, - 'livephotoauto' => { 405 => 'live-photo.auto' }, + 'livephotoauto' => { 407 => 'live-photo.auto' }, 'livephotovideoindex' => { 1 => 0x17 }, - 'livephotovitalityscore' => { 405 => 'live-photo.vitality-score' }, - 'livephotovitalityscoringversion' => { 405 => 'live-photo.vitality-scoring-version' }, - 'liveview' => { 361 => 0x1fa, 368 => 0x3 }, - 'liveviewaf' => { 311 => '32.1', 321 => '34.1' }, - 'liveviewafareamode' => { 316 => '34.1' }, - 'liveviewafmethod' => { 457 => 0x20 }, - 'liveviewafmode' => { 316 => '34.2' }, - 'liveviewafsetting' => { 440 => 0x36 }, - 'liveviewbuttonoptions' => { 307 => '50.2', 309 => '48.2', 310 => '48.2', 319 => '48.2', 320 => '48.2' }, + 'livephotovitalityscore' => { 407 => 'live-photo.vitality-score' }, + 'livephotovitalityscoringversion' => { 407 => 'live-photo.vitality-scoring-version' }, + 'liveview' => { 363 => 0x1fa, 370 => 0x3 }, + 'liveviewaf' => { 312 => '32.1', 322 => '34.1' }, + 'liveviewafareamode' => { 317 => '34.1' }, + 'liveviewafmethod' => { 459 => 0x20 }, + 'liveviewafmode' => { 317 => '34.2' }, + 'liveviewafsetting' => { 442 => 0x36 }, + 'liveviewbuttonoptions' => { 308 => '50.2', 310 => '48.2', 311 => '48.2', 320 => '48.2', 321 => '48.2' }, 'liveviewexposuresimulation' => { 89 => 0x810 }, - 'liveviewfocusmode' => { 440 => [0x8b,0x28b] }, - 'liveviewmetering' => { 440 => [0x84,0x284] }, - 'liveviewmonitorofftime' => { 307 => '21.2', 309 => '21.2', 310 => '21.2', 312 => '20.2', 313 => '20.2', 314 => '20.2', 316 => '20.2', 319 => '21.2', 320 => '21.2' }, + 'liveviewfocusmode' => { 442 => [0x8b,0x28b] }, + 'liveviewmetering' => { 442 => [0x84,0x284] }, + 'liveviewmonitorofftime' => { 308 => '21.2', 310 => '21.2', 311 => '21.2', 313 => '20.2', 314 => '20.2', 315 => '20.2', 317 => '20.2', 320 => '21.2', 321 => '21.2' }, 'liveviewshooting' => { 60 => 0x13 }, 'livingspecimen' => { 123 => 'LivingSpecimen' }, 'livingspecimenmaterialsampleid' => { 123 => [\'LivingSpecimen','LivingSpecimenMaterialSampleID'] }, 'localcaption' => { 136 => 0x79 }, 'localizedcameramodel' => { 124 => 0xc615 }, - 'locallocationname' => { 425 => 0x30 }, - 'location' => { 240 => 0x9, 350 => 0x67, 508 => 'Location', 528 => 'Location', 533 => 'location', 534 => 'location' }, - 'locationaccuracyhorizontal' => { 405 => 'location.accuracy.horizontal' }, - 'locationareacode' => { 514 => 'lac' }, - 'locationbody' => { 405 => 'location.body' }, - 'locationcreated' => { 529 => 'LocationCreated' }, - 'locationcreatedcity' => { 529 => [\'LocationCreated','LocationCreatedCity'] }, - 'locationcreatedcountrycode' => { 529 => [\'LocationCreated','LocationCreatedCountryCode'] }, - 'locationcreatedcountryname' => { 529 => [\'LocationCreated','LocationCreatedCountryName'] }, - 'locationcreatedgpsaltitude' => { 529 => [\'LocationCreated','LocationCreatedGPSAltitude'] }, - 'locationcreatedgpsaltituderef' => { 529 => [\'LocationCreated','LocationCreatedGPSAltitudeRef'] }, - 'locationcreatedgpslatitude' => { 529 => [\'LocationCreated','LocationCreatedGPSLatitude'] }, - 'locationcreatedgpslongitude' => { 529 => [\'LocationCreated','LocationCreatedGPSLongitude'] }, - 'locationcreatedidentifier' => { 529 => [\'LocationCreated','LocationCreatedIdentifier'] }, - 'locationcreatedlocationid' => { 529 => [\'LocationCreated','LocationCreatedLocationId'] }, - 'locationcreatedlocationname' => { 529 => [\'LocationCreated','LocationCreatedLocationName'] }, - 'locationcreatedprovincestate' => { 529 => [\'LocationCreated','LocationCreatedProvinceState'] }, - 'locationcreatedsublocation' => { 529 => [\'LocationCreated','LocationCreatedSublocation'] }, - 'locationcreatedworldregion' => { 529 => [\'LocationCreated','LocationCreatedWorldRegion'] }, - 'locationdate' => { 405 => 'location.date' }, - 'locationinformation' => { 411 => 'loci' }, + 'locallocationname' => { 427 => 0x30 }, + 'location' => { 240 => 0x9, 352 => 0x67, 510 => 'Location', 530 => 'Location', 535 => 'location', 536 => 'location' }, + 'locationaccuracyhorizontal' => { 407 => 'location.accuracy.horizontal' }, + 'locationareacode' => { 516 => 'lac' }, + 'locationbody' => { 407 => 'location.body' }, + 'locationcreated' => { 531 => 'LocationCreated' }, + 'locationcreatedcity' => { 531 => [\'LocationCreated','LocationCreatedCity'] }, + 'locationcreatedcountrycode' => { 531 => [\'LocationCreated','LocationCreatedCountryCode'] }, + 'locationcreatedcountryname' => { 531 => [\'LocationCreated','LocationCreatedCountryName'] }, + 'locationcreatedgpsaltitude' => { 531 => [\'LocationCreated','LocationCreatedGPSAltitude'] }, + 'locationcreatedgpsaltituderef' => { 531 => [\'LocationCreated','LocationCreatedGPSAltitudeRef'] }, + 'locationcreatedgpslatitude' => { 531 => [\'LocationCreated','LocationCreatedGPSLatitude'] }, + 'locationcreatedgpslongitude' => { 531 => [\'LocationCreated','LocationCreatedGPSLongitude'] }, + 'locationcreatedidentifier' => { 531 => [\'LocationCreated','LocationCreatedIdentifier'] }, + 'locationcreatedlocationid' => { 531 => [\'LocationCreated','LocationCreatedLocationId'] }, + 'locationcreatedlocationname' => { 531 => [\'LocationCreated','LocationCreatedLocationName'] }, + 'locationcreatedprovincestate' => { 531 => [\'LocationCreated','LocationCreatedProvinceState'] }, + 'locationcreatedsublocation' => { 531 => [\'LocationCreated','LocationCreatedSublocation'] }, + 'locationcreatedworldregion' => { 531 => [\'LocationCreated','LocationCreatedWorldRegion'] }, + 'locationdate' => { 407 => 'location.date' }, + 'locationinformation' => { 413 => 'loci' }, 'locationinfoversion' => { 240 => 0x0 }, - 'locationname' => { 405 => 'location.name', 425 => 0x31 }, - 'locationnote' => { 405 => 'location.note' }, - 'locationrole' => { 405 => 'location.role' }, - 'locationshown' => { 529 => 'LocationShown' }, - 'locationshowncity' => { 529 => [\'LocationShown','LocationShownCity'] }, - 'locationshowncountrycode' => { 529 => [\'LocationShown','LocationShownCountryCode'] }, - 'locationshowncountryname' => { 529 => [\'LocationShown','LocationShownCountryName'] }, - 'locationshowngpsaltitude' => { 529 => [\'LocationShown','LocationShownGPSAltitude'] }, - 'locationshowngpsaltituderef' => { 529 => [\'LocationShown','LocationShownGPSAltitudeRef'] }, - 'locationshowngpslatitude' => { 529 => [\'LocationShown','LocationShownGPSLatitude'] }, - 'locationshowngpslongitude' => { 529 => [\'LocationShown','LocationShownGPSLongitude'] }, - 'locationshownidentifier' => { 529 => [\'LocationShown','LocationShownIdentifier'] }, - 'locationshownlocationid' => { 529 => [\'LocationShown','LocationShownLocationId'] }, - 'locationshownlocationname' => { 529 => [\'LocationShown','LocationShownLocationName'] }, - 'locationshownprovincestate' => { 529 => [\'LocationShown','LocationShownProvinceState'] }, - 'locationshownsublocation' => { 529 => [\'LocationShown','LocationShownSublocation'] }, - 'locationshownworldregion' => { 529 => [\'LocationShown','LocationShownWorldRegion'] }, + 'locationname' => { 407 => 'location.name', 427 => 0x31 }, + 'locationnote' => { 407 => 'location.note' }, + 'locationrole' => { 407 => 'location.role' }, + 'locationshown' => { 531 => 'LocationShown' }, + 'locationshowncity' => { 531 => [\'LocationShown','LocationShownCity'] }, + 'locationshowncountrycode' => { 531 => [\'LocationShown','LocationShownCountryCode'] }, + 'locationshowncountryname' => { 531 => [\'LocationShown','LocationShownCountryName'] }, + 'locationshowngpsaltitude' => { 531 => [\'LocationShown','LocationShownGPSAltitude'] }, + 'locationshowngpsaltituderef' => { 531 => [\'LocationShown','LocationShownGPSAltitudeRef'] }, + 'locationshowngpslatitude' => { 531 => [\'LocationShown','LocationShownGPSLatitude'] }, + 'locationshowngpslongitude' => { 531 => [\'LocationShown','LocationShownGPSLongitude'] }, + 'locationshownidentifier' => { 531 => [\'LocationShown','LocationShownIdentifier'] }, + 'locationshownlocationid' => { 531 => [\'LocationShown','LocationShownLocationId'] }, + 'locationshownlocationname' => { 531 => [\'LocationShown','LocationShownLocationName'] }, + 'locationshownprovincestate' => { 531 => [\'LocationShown','LocationShownProvinceState'] }, + 'locationshownsublocation' => { 531 => [\'LocationShown','LocationShownSublocation'] }, + 'locationshownworldregion' => { 531 => [\'LocationShown','LocationShownWorldRegion'] }, 'lockmicrophonebutton' => { 89 => 0x709 }, - 'logcomment' => { 544 => 'logComment' }, + 'logcomment' => { 546 => 'logComment' }, 'logscale' => { 143 => 0x902 }, - 'longdescription' => { 403 => 'ldes' }, - 'longexposurenoisereduction' => { 66 => 0x4, 89 => 0x201, 90 => 0x1, 91 => 0x2, 92 => 0x1, 93 => 0x1, 94 => 0x2, 95 => 0x1, 350 => 0x49, 438 => 0x2b, 439 => 0x25, 440 => 0x25, 452 => 0x2008, 457 => 0x11, 484 => 0x44 }, + 'longdescription' => { 405 => 'ldes' }, + 'longexposurenoisereduction' => { 66 => 0x4, 89 => 0x201, 90 => 0x1, 91 => 0x2, 92 => 0x1, 93 => 0x1, 94 => 0x2, 95 => 0x1, 352 => 0x49, 440 => 0x2b, 441 => 0x25, 442 => 0x25, 454 => 0x2008, 459 => 0x11, 486 => 0x44 }, 'longexposurenoisereduction2' => { 60 => 0x8 }, - 'longexposurenrused' => { 350 => 0xbe }, + 'longexposurenrused' => { 352 => 0xbe }, 'longitude' => { 121 => 'Longitude' }, - 'look' => { 515 => 'Look', 517 => 'Look' }, - 'lookamount' => { 515 => [\'Look','LookAmount'], 517 => [\'Look','LookAmount'] }, - 'lookcluster' => { 515 => [\'Look','LookCluster'], 517 => [\'Look','LookCluster'] }, - 'lookcopyright' => { 515 => [\'Look','LookCopyright'], 517 => [\'Look','LookCopyright'] }, - 'lookgroup' => { 515 => [\'Look','LookGroup'], 517 => [\'Look','LookGroup'] }, - 'lookname' => { 515 => 'LookName', 517 => 'LookName' }, - 'lookparameters' => { 515 => [\'Look','LookParameters'], 517 => [\'Look','LookParameters'] }, - 'lookparameterscameraprofile' => { 515 => [\'Look','LookParametersCameraProfile'], 517 => [\'Look','LookParametersCameraProfile'] }, - 'lookparametersclarity2012' => { 515 => [\'Look','LookParametersClarity2012'], 517 => [\'Look','LookParametersClarity2012'] }, - 'lookparametersconverttograyscale' => { 515 => [\'Look','LookParametersConvertToGrayscale'], 517 => [\'Look','LookParametersConvertToGrayscale'] }, - 'lookparametershighlights2012' => { 515 => [\'Look','LookParametersHighlights2012'], 517 => [\'Look','LookParametersHighlights2012'] }, - 'lookparameterslooktable' => { 515 => [\'Look','LookParametersLookTable'], 517 => [\'Look','LookParametersLookTable'] }, - 'lookparametersprocessversion' => { 515 => [\'Look','LookParametersProcessVersion'], 517 => [\'Look','LookParametersProcessVersion'] }, - 'lookparametersshadows2012' => { 515 => [\'Look','LookParametersShadows2012'], 517 => [\'Look','LookParametersShadows2012'] }, - 'lookparameterstonecurvepv2012' => { 515 => [\'Look','LookParametersToneCurvePV2012'], 517 => [\'Look','LookParametersToneCurvePV2012'] }, - 'lookparameterstonecurvepv2012blue' => { 515 => [\'Look','LookParametersToneCurvePV2012Blue'], 517 => [\'Look','LookParametersToneCurvePV2012Blue'] }, - 'lookparameterstonecurvepv2012green' => { 515 => [\'Look','LookParametersToneCurvePV2012Green'], 517 => [\'Look','LookParametersToneCurvePV2012Green'] }, - 'lookparameterstonecurvepv2012red' => { 515 => [\'Look','LookParametersToneCurvePV2012Red'], 517 => [\'Look','LookParametersToneCurvePV2012Red'] }, - 'lookparametersversion' => { 515 => [\'Look','LookParametersVersion'], 517 => [\'Look','LookParametersVersion'] }, - 'looksupportsamount' => { 515 => [\'Look','LookSupportsAmount'], 517 => [\'Look','LookSupportsAmount'] }, - 'looksupportsmonochrome' => { 515 => [\'Look','LookSupportsMonochrome'], 517 => [\'Look','LookSupportsMonochrome'] }, - 'looksupportsoutputreferred' => { 515 => [\'Look','LookSupportsOutputReferred'], 517 => [\'Look','LookSupportsOutputReferred'] }, - 'lookuuid' => { 515 => [\'Look','LookUUID'], 517 => [\'Look','LookUUID'] }, - 'loop' => { 544 => 'loop' }, - 'loopstyle' => { 411 => 'LOOP' }, + 'look' => { 517 => 'Look', 519 => 'Look' }, + 'lookamount' => { 517 => [\'Look','LookAmount'], 519 => [\'Look','LookAmount'] }, + 'lookcluster' => { 517 => [\'Look','LookCluster'], 519 => [\'Look','LookCluster'] }, + 'lookcopyright' => { 517 => [\'Look','LookCopyright'], 519 => [\'Look','LookCopyright'] }, + 'lookgroup' => { 517 => [\'Look','LookGroup'], 519 => [\'Look','LookGroup'] }, + 'lookname' => { 517 => 'LookName', 519 => 'LookName' }, + 'lookparameters' => { 517 => [\'Look','LookParameters'], 519 => [\'Look','LookParameters'] }, + 'lookparameterscameraprofile' => { 517 => [\'Look','LookParametersCameraProfile'], 519 => [\'Look','LookParametersCameraProfile'] }, + 'lookparametersclarity2012' => { 517 => [\'Look','LookParametersClarity2012'], 519 => [\'Look','LookParametersClarity2012'] }, + 'lookparametersconverttograyscale' => { 517 => [\'Look','LookParametersConvertToGrayscale'], 519 => [\'Look','LookParametersConvertToGrayscale'] }, + 'lookparametershighlights2012' => { 517 => [\'Look','LookParametersHighlights2012'], 519 => [\'Look','LookParametersHighlights2012'] }, + 'lookparameterslooktable' => { 517 => [\'Look','LookParametersLookTable'], 519 => [\'Look','LookParametersLookTable'] }, + 'lookparametersprocessversion' => { 517 => [\'Look','LookParametersProcessVersion'], 519 => [\'Look','LookParametersProcessVersion'] }, + 'lookparametersshadows2012' => { 517 => [\'Look','LookParametersShadows2012'], 519 => [\'Look','LookParametersShadows2012'] }, + 'lookparameterstonecurvepv2012' => { 517 => [\'Look','LookParametersToneCurvePV2012'], 519 => [\'Look','LookParametersToneCurvePV2012'] }, + 'lookparameterstonecurvepv2012blue' => { 517 => [\'Look','LookParametersToneCurvePV2012Blue'], 519 => [\'Look','LookParametersToneCurvePV2012Blue'] }, + 'lookparameterstonecurvepv2012green' => { 517 => [\'Look','LookParametersToneCurvePV2012Green'], 519 => [\'Look','LookParametersToneCurvePV2012Green'] }, + 'lookparameterstonecurvepv2012red' => { 517 => [\'Look','LookParametersToneCurvePV2012Red'], 519 => [\'Look','LookParametersToneCurvePV2012Red'] }, + 'lookparametersversion' => { 517 => [\'Look','LookParametersVersion'], 519 => [\'Look','LookParametersVersion'] }, + 'looksupportsamount' => { 517 => [\'Look','LookSupportsAmount'], 519 => [\'Look','LookSupportsAmount'] }, + 'looksupportsmonochrome' => { 517 => [\'Look','LookSupportsMonochrome'], 519 => [\'Look','LookSupportsMonochrome'] }, + 'looksupportsoutputreferred' => { 517 => [\'Look','LookSupportsOutputReferred'], 519 => [\'Look','LookSupportsOutputReferred'] }, + 'lookuuid' => { 517 => [\'Look','LookUUID'], 519 => [\'Look','LookUUID'] }, + 'loop' => { 546 => 'loop' }, + 'loopstyle' => { 413 => 'LOOP' }, 'lowestbiostratigraphiczone' => { 123 => [\'GeologicalContext','GeologicalContextLowestBiostratigraphicZone'] }, - 'luminanceadjustmentaqua' => { 515 => 'LuminanceAdjustmentAqua', 517 => 'LuminanceAdjustmentAqua' }, - 'luminanceadjustmentblue' => { 515 => 'LuminanceAdjustmentBlue', 517 => 'LuminanceAdjustmentBlue' }, - 'luminanceadjustmentgreen' => { 515 => 'LuminanceAdjustmentGreen', 517 => 'LuminanceAdjustmentGreen' }, - 'luminanceadjustmentmagenta' => { 515 => 'LuminanceAdjustmentMagenta', 517 => 'LuminanceAdjustmentMagenta' }, - 'luminanceadjustmentorange' => { 515 => 'LuminanceAdjustmentOrange', 517 => 'LuminanceAdjustmentOrange' }, - 'luminanceadjustmentpurple' => { 515 => 'LuminanceAdjustmentPurple', 517 => 'LuminanceAdjustmentPurple' }, - 'luminanceadjustmentred' => { 515 => 'LuminanceAdjustmentRed', 517 => 'LuminanceAdjustmentRed' }, - 'luminanceadjustmentyellow' => { 515 => 'LuminanceAdjustmentYellow', 517 => 'LuminanceAdjustmentYellow' }, + 'luminanceadjustmentaqua' => { 517 => 'LuminanceAdjustmentAqua', 519 => 'LuminanceAdjustmentAqua' }, + 'luminanceadjustmentblue' => { 517 => 'LuminanceAdjustmentBlue', 519 => 'LuminanceAdjustmentBlue' }, + 'luminanceadjustmentgreen' => { 517 => 'LuminanceAdjustmentGreen', 519 => 'LuminanceAdjustmentGreen' }, + 'luminanceadjustmentmagenta' => { 517 => 'LuminanceAdjustmentMagenta', 519 => 'LuminanceAdjustmentMagenta' }, + 'luminanceadjustmentorange' => { 517 => 'LuminanceAdjustmentOrange', 519 => 'LuminanceAdjustmentOrange' }, + 'luminanceadjustmentpurple' => { 517 => 'LuminanceAdjustmentPurple', 519 => 'LuminanceAdjustmentPurple' }, + 'luminanceadjustmentred' => { 517 => 'LuminanceAdjustmentRed', 519 => 'LuminanceAdjustmentRed' }, + 'luminanceadjustmentyellow' => { 517 => 'LuminanceAdjustmentYellow', 519 => 'LuminanceAdjustmentYellow' }, 'luminancecurvelimits' => { 113 => 0x150 }, 'luminancecurvepoints' => { 113 => 0x126 }, 'luminancenoiseamplitude' => { 1 => 0x1d }, - 'luminancenoisereduction' => { 108 => 0x20600, 114 => 0x5f, 428 => 0x1b }, - 'luminancenoisereductioncontrast' => { 515 => 'LuminanceNoiseReductionContrast', 517 => 'LuminanceNoiseReductionContrast' }, - 'luminancenoisereductiondetail' => { 515 => 'LuminanceNoiseReductionDetail', 517 => 'LuminanceNoiseReductionDetail' }, + 'luminancenoisereduction' => { 108 => 0x20600, 114 => 0x5f, 430 => 0x1b }, + 'luminancenoisereductioncontrast' => { 517 => 'LuminanceNoiseReductionContrast', 519 => 'LuminanceNoiseReductionContrast' }, + 'luminancenoisereductiondetail' => { 517 => 'LuminanceNoiseReductionDetail', 519 => 'LuminanceNoiseReductionDetail' }, 'luminancenr_tiff_jpeg' => { 114 => 0x6d }, - 'luminancesmoothing' => { 515 => 'LuminanceSmoothing', 517 => 'LuminanceSmoothing' }, + 'luminancesmoothing' => { 517 => 'LuminanceSmoothing', 519 => 'LuminanceSmoothing' }, 'lvshootingareadisplay' => { 89 => [0x40b,0x40c] }, - 'lyrics' => { 403 => "\xa9lyr", 411 => "\xa9lyr", 544 => 'lyrics' }, - 'lyricsuri' => { 411 => 'lrcu' }, - 'm16cversion' => { 345 => 0x333 }, - 'macatom' => { 516 => 'macAtom' }, - 'macatomapplicationcode' => { 516 => [\'macAtom','macAtomApplicationCode'] }, - 'macatominvocationappleevent' => { 516 => [\'macAtom','macAtomInvocationAppleEvent'] }, - 'macatomposixprojectpath' => { 516 => [\'macAtom','macAtomPosixProjectPath'] }, + 'lyrics' => { 405 => "\xa9lyr", 413 => "\xa9lyr", 546 => 'lyrics' }, + 'lyricsuri' => { 413 => 'lrcu' }, + 'm16cversion' => { 347 => 0x333 }, + 'macatom' => { 518 => 'macAtom' }, + 'macatomapplicationcode' => { 518 => [\'macAtom','macAtomApplicationCode'] }, + 'macatominvocationappleevent' => { 518 => [\'macAtom','macAtomInvocationAppleEvent'] }, + 'macatomposixprojectpath' => { 518 => [\'macAtom','macAtomPosixProjectPath'] }, 'machineobservation' => { 123 => 'MachineObservation' }, 'machineobservationday' => { 123 => [\'MachineObservation','MachineObservationDay'] }, 'machineobservationearliestdate' => { 123 => [\'MachineObservation','MachineObservationEarliestDate'] }, @@ -4368,20 +4371,20 @@ my %tagLookup = ( 'machineobservationstartdayofyear' => { 123 => [\'MachineObservation','MachineObservationStartDayOfYear'] }, 'machineobservationverbatimeventdate' => { 123 => [\'MachineObservation','MachineObservationVerbatimEventDate'] }, 'machineobservationyear' => { 123 => [\'MachineObservation','MachineObservationYear'] }, - 'macro' => { 132 => 0x1020, 134 => 0x202, 156 => 0x2b, 331 => 0x202, 417 => 0x21, 427 => 0x202, 452 => 0xb040 }, - 'macroled' => { 329 => 0x120a }, + 'macro' => { 132 => 0x1020, 134 => 0x202, 156 => 0x2b, 333 => 0x202, 419 => 0x21, 429 => 0x202, 454 => 0xb040 }, + 'macroled' => { 331 => 0x120a }, 'macromagnification' => { 7 => 0x1b, 11 => 0x1b, 14 => 0x1b, 15 => 0x1b, 19 => 0x1b, 20 => 0x1b, 60 => 0x10 }, - 'macromode' => { 36 => 0x1, 186 => 0xb, 326 => 0x300, 350 => 0x1c, 418 => 0x1009 }, + 'macromode' => { 36 => 0x1, 186 => 0xb, 328 => 0x300, 352 => 0x1c, 420 => 0x1009 }, 'magentahsl' => { 108 => 0x20917 }, - 'magicfilter' => { 326 => 0x52c }, + 'magicfilter' => { 328 => 0x52c }, 'magnifiedview' => { 91 => 0x11, 93 => 0x9 }, 'mainboardversion' => { 143 => 0x438 }, - 'maindialexposurecomp' => { 317 => '0.6' }, - 'mainingredient' => { 536 => 'mainIngredient' }, - 'majorbrand' => { 405 => 'major_brand' }, - 'majorversion' => { 506 => 'MajorVersion' }, - 'make' => { 103 => 0x0, 120 => 0x1, 124 => 0x10f, 161 => 'Make', 339 => 'Make', 355 => 0x10f, 405 => 'make', 411 => ['@mak',"\xa9mak"], 533 => 'make', 540 => 'Make' }, - 'makernote' => { 521 => 'MakerNote' }, + 'maindialexposurecomp' => { 318 => '0.6' }, + 'mainingredient' => { 538 => 'mainIngredient' }, + 'majorbrand' => { 407 => 'major_brand' }, + 'majorversion' => { 508 => 'MajorVersion' }, + 'make' => { 103 => 0x0, 120 => 0x1, 124 => 0x10f, 161 => 'Make', 341 => 'Make', 357 => 0x10f, 407 => 'make', 413 => ['@mak',"\xa9mak"], 535 => 'make', 542 => 'Make' }, + 'makernote' => { 523 => 'MakerNote' }, 'makernoteapple' => { 122 => 'MakN', 124 => 0x927c }, 'makernotecanon' => { 86 => 'CMT3', 122 => 'MakN', 124 => 0x927c }, 'makernotecasio' => { 122 => 'MakN', 124 => 0x927c }, @@ -4436,7 +4439,7 @@ my %tagLookup = ( 'makernotenikon2' => { 122 => 'MakN', 124 => 0x927c }, 'makernotenikon3' => { 122 => 'MakN', 124 => 0x927c }, 'makernotenintendo' => { 122 => 'MakN', 124 => 0x927c }, - 'makernoteoffset' => { 427 => 0xff }, + 'makernoteoffset' => { 429 => 0xff }, 'makernoteolympus' => { 122 => 'MakN', 124 => 0x927c }, 'makernoteolympus2' => { 122 => 'MakN', 124 => 0x927c }, 'makernoteolympus3' => { 122 => 'MakN', 124 => 0x927c }, @@ -4449,7 +4452,7 @@ my %tagLookup = ( 'makernotepentax4' => { 122 => 'MakN', 124 => 0x927c }, 'makernotepentax5' => { 122 => 'MakN', 124 => 0x927c }, 'makernotepentax6' => { 122 => 'MakN', 124 => 0x927c }, - 'makernotepentaxunknown' => { 411 => 'PXMN' }, + 'makernotepentaxunknown' => { 413 => 'PXMN' }, 'makernotephaseone' => { 122 => 'MakN', 124 => 0x927c }, 'makernotereconyx' => { 122 => 'MakN', 124 => 0x927c }, 'makernotereconyx2' => { 122 => 'MakN', 124 => 0x927c }, @@ -4473,293 +4476,293 @@ my %tagLookup = ( 'makernotesony5' => { 122 => 'MakN', 124 => 0x927c }, 'makernotesonyericsson' => { 122 => 'MakN', 124 => 0x927c }, 'makernotesonysrf' => { 122 => 'MakN', 124 => 0x927c }, - 'makernotetype' => { 418 => 0x1 }, + 'makernotetype' => { 420 => 0x1 }, 'makernoteunknown' => { 122 => 'MakN', 124 => 0x927c }, 'makernoteunknownbinary' => { 122 => 'MakN', 124 => 0x927c }, 'makernoteunknowntext' => { 122 => 'MakN', 124 => 0x927c }, - 'makernoteversion' => { 1 => 0x1, 191 => 0x0, 241 => 0x1, 331 => 0x0, 350 => 0x8000, 422 => 0x0, 425 => 0x1, 428 => [0x1d,0x1f], 441 => 0x2000 }, - 'makerurl' => { 411 => "\xa9mal" }, - 'managedfrom' => { 545 => 'ManagedFrom' }, - 'managedfromalternatepaths' => { 545 => [\'ManagedFrom','ManagedFromAlternatePaths'] }, - 'managedfromdocumentid' => { 545 => [\'ManagedFrom','ManagedFromDocumentID'] }, - 'managedfromfilepath' => { 545 => [\'ManagedFrom','ManagedFromFilePath'] }, - 'managedfromfrompart' => { 545 => [\'ManagedFrom','ManagedFromFromPart'] }, - 'managedfrominstanceid' => { 545 => [\'ManagedFrom','ManagedFromInstanceID'] }, - 'managedfromlastmodifydate' => { 545 => [\'ManagedFrom','ManagedFromLastModifyDate'] }, - 'managedfromlasturl' => { 545 => [\'ManagedFrom','ManagedFromLastURL'] }, - 'managedfromlinkcategory' => { 545 => [\'ManagedFrom','ManagedFromLinkCategory'] }, - 'managedfromlinkform' => { 545 => [\'ManagedFrom','ManagedFromLinkForm'] }, - 'managedfrommanager' => { 545 => [\'ManagedFrom','ManagedFromManager'] }, - 'managedfrommanagervariant' => { 545 => [\'ManagedFrom','ManagedFromManagerVariant'] }, - 'managedfrommanageto' => { 545 => [\'ManagedFrom','ManagedFromManageTo'] }, - 'managedfrommanageui' => { 545 => [\'ManagedFrom','ManagedFromManageUI'] }, - 'managedfrommaskmarkers' => { 545 => [\'ManagedFrom','ManagedFromMaskMarkers'] }, - 'managedfromoriginaldocumentid' => { 545 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] }, - 'managedfrompartmapping' => { 545 => [\'ManagedFrom','ManagedFromPartMapping'] }, - 'managedfromplacedresolutionunit' => { 545 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] }, - 'managedfromplacedxresolution' => { 545 => [\'ManagedFrom','ManagedFromPlacedXResolution'] }, - 'managedfromplacedyresolution' => { 545 => [\'ManagedFrom','ManagedFromPlacedYResolution'] }, - 'managedfromrenditionclass' => { 545 => [\'ManagedFrom','ManagedFromRenditionClass'] }, - 'managedfromrenditionparams' => { 545 => [\'ManagedFrom','ManagedFromRenditionParams'] }, - 'managedfromtopart' => { 545 => [\'ManagedFrom','ManagedFromToPart'] }, - 'managedfromversionid' => { 545 => [\'ManagedFrom','ManagedFromVersionID'] }, - 'manager' => { 545 => 'Manager' }, - 'managervariant' => { 545 => 'ManagerVariant' }, - 'manageto' => { 545 => 'ManageTo' }, - 'manageui' => { 545 => 'ManageUI' }, - 'manifest' => { 545 => 'Manifest' }, - 'manifestlinkform' => { 545 => [\'Manifest','ManifestLinkForm'] }, - 'manifestplacedresolutionunit' => { 545 => [\'Manifest','ManifestPlacedResolutionUnit'] }, - 'manifestplacedxresolution' => { 545 => [\'Manifest','ManifestPlacedXResolution'] }, - 'manifestplacedyresolution' => { 545 => [\'Manifest','ManifestPlacedYResolution'] }, - 'manifestreference' => { 545 => [\'Manifest','ManifestReference'] }, - 'manifestreferencealternatepaths' => { 545 => [\'Manifest','ManifestReferenceAlternatePaths'] }, - 'manifestreferencedocumentid' => { 545 => [\'Manifest','ManifestReferenceDocumentID'] }, - 'manifestreferencefilepath' => { 545 => [\'Manifest','ManifestReferenceFilePath'] }, - 'manifestreferencefrompart' => { 545 => [\'Manifest','ManifestReferenceFromPart'] }, - 'manifestreferenceinstanceid' => { 545 => [\'Manifest','ManifestReferenceInstanceID'] }, - 'manifestreferencelastmodifydate' => { 545 => [\'Manifest','ManifestReferenceLastModifyDate'] }, - 'manifestreferencelasturl' => { 545 => [\'Manifest','ManifestReferenceLastURL'] }, - 'manifestreferencelinkcategory' => { 545 => [\'Manifest','ManifestReferenceLinkCategory'] }, - 'manifestreferencelinkform' => { 545 => [\'Manifest','ManifestReferenceLinkForm'] }, - 'manifestreferencemanager' => { 545 => [\'Manifest','ManifestReferenceManager'] }, - 'manifestreferencemanagervariant' => { 545 => [\'Manifest','ManifestReferenceManagerVariant'] }, - 'manifestreferencemanageto' => { 545 => [\'Manifest','ManifestReferenceManageTo'] }, - 'manifestreferencemanageui' => { 545 => [\'Manifest','ManifestReferenceManageUI'] }, - 'manifestreferencemaskmarkers' => { 545 => [\'Manifest','ManifestReferenceMaskMarkers'] }, - 'manifestreferenceoriginaldocumentid' => { 545 => [\'Manifest','ManifestReferenceOriginalDocumentID'] }, - 'manifestreferencepartmapping' => { 545 => [\'Manifest','ManifestReferencePartMapping'] }, - 'manifestreferenceplacedresolutionunit' => { 545 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] }, - 'manifestreferenceplacedxresolution' => { 545 => [\'Manifest','ManifestReferencePlacedXResolution'] }, - 'manifestreferenceplacedyresolution' => { 545 => [\'Manifest','ManifestReferencePlacedYResolution'] }, - 'manifestreferencerenditionclass' => { 545 => [\'Manifest','ManifestReferenceRenditionClass'] }, - 'manifestreferencerenditionparams' => { 545 => [\'Manifest','ManifestReferenceRenditionParams'] }, - 'manifestreferencetopart' => { 545 => [\'Manifest','ManifestReferenceToPart'] }, - 'manifestreferenceversionid' => { 545 => [\'Manifest','ManifestReferenceVersionID'] }, - 'manometerpressure' => { 326 => 0x900, 350 => 0x86 }, - 'manometerreading' => { 326 => 0x901 }, + 'makernoteversion' => { 1 => 0x1, 191 => 0x0, 241 => 0x1, 333 => 0x0, 352 => 0x8000, 424 => 0x0, 427 => 0x1, 430 => [0x1d,0x1f], 443 => 0x2000 }, + 'makerurl' => { 413 => "\xa9mal" }, + 'managedfrom' => { 547 => 'ManagedFrom' }, + 'managedfromalternatepaths' => { 547 => [\'ManagedFrom','ManagedFromAlternatePaths'] }, + 'managedfromdocumentid' => { 547 => [\'ManagedFrom','ManagedFromDocumentID'] }, + 'managedfromfilepath' => { 547 => [\'ManagedFrom','ManagedFromFilePath'] }, + 'managedfromfrompart' => { 547 => [\'ManagedFrom','ManagedFromFromPart'] }, + 'managedfrominstanceid' => { 547 => [\'ManagedFrom','ManagedFromInstanceID'] }, + 'managedfromlastmodifydate' => { 547 => [\'ManagedFrom','ManagedFromLastModifyDate'] }, + 'managedfromlasturl' => { 547 => [\'ManagedFrom','ManagedFromLastURL'] }, + 'managedfromlinkcategory' => { 547 => [\'ManagedFrom','ManagedFromLinkCategory'] }, + 'managedfromlinkform' => { 547 => [\'ManagedFrom','ManagedFromLinkForm'] }, + 'managedfrommanager' => { 547 => [\'ManagedFrom','ManagedFromManager'] }, + 'managedfrommanagervariant' => { 547 => [\'ManagedFrom','ManagedFromManagerVariant'] }, + 'managedfrommanageto' => { 547 => [\'ManagedFrom','ManagedFromManageTo'] }, + 'managedfrommanageui' => { 547 => [\'ManagedFrom','ManagedFromManageUI'] }, + 'managedfrommaskmarkers' => { 547 => [\'ManagedFrom','ManagedFromMaskMarkers'] }, + 'managedfromoriginaldocumentid' => { 547 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] }, + 'managedfrompartmapping' => { 547 => [\'ManagedFrom','ManagedFromPartMapping'] }, + 'managedfromplacedresolutionunit' => { 547 => [\'ManagedFrom','ManagedFromPlacedResolutionUnit'] }, + 'managedfromplacedxresolution' => { 547 => [\'ManagedFrom','ManagedFromPlacedXResolution'] }, + 'managedfromplacedyresolution' => { 547 => [\'ManagedFrom','ManagedFromPlacedYResolution'] }, + 'managedfromrenditionclass' => { 547 => [\'ManagedFrom','ManagedFromRenditionClass'] }, + 'managedfromrenditionparams' => { 547 => [\'ManagedFrom','ManagedFromRenditionParams'] }, + 'managedfromtopart' => { 547 => [\'ManagedFrom','ManagedFromToPart'] }, + 'managedfromversionid' => { 547 => [\'ManagedFrom','ManagedFromVersionID'] }, + 'manager' => { 547 => 'Manager' }, + 'managervariant' => { 547 => 'ManagerVariant' }, + 'manageto' => { 547 => 'ManageTo' }, + 'manageui' => { 547 => 'ManageUI' }, + 'manifest' => { 547 => 'Manifest' }, + 'manifestlinkform' => { 547 => [\'Manifest','ManifestLinkForm'] }, + 'manifestplacedresolutionunit' => { 547 => [\'Manifest','ManifestPlacedResolutionUnit'] }, + 'manifestplacedxresolution' => { 547 => [\'Manifest','ManifestPlacedXResolution'] }, + 'manifestplacedyresolution' => { 547 => [\'Manifest','ManifestPlacedYResolution'] }, + 'manifestreference' => { 547 => [\'Manifest','ManifestReference'] }, + 'manifestreferencealternatepaths' => { 547 => [\'Manifest','ManifestReferenceAlternatePaths'] }, + 'manifestreferencedocumentid' => { 547 => [\'Manifest','ManifestReferenceDocumentID'] }, + 'manifestreferencefilepath' => { 547 => [\'Manifest','ManifestReferenceFilePath'] }, + 'manifestreferencefrompart' => { 547 => [\'Manifest','ManifestReferenceFromPart'] }, + 'manifestreferenceinstanceid' => { 547 => [\'Manifest','ManifestReferenceInstanceID'] }, + 'manifestreferencelastmodifydate' => { 547 => [\'Manifest','ManifestReferenceLastModifyDate'] }, + 'manifestreferencelasturl' => { 547 => [\'Manifest','ManifestReferenceLastURL'] }, + 'manifestreferencelinkcategory' => { 547 => [\'Manifest','ManifestReferenceLinkCategory'] }, + 'manifestreferencelinkform' => { 547 => [\'Manifest','ManifestReferenceLinkForm'] }, + 'manifestreferencemanager' => { 547 => [\'Manifest','ManifestReferenceManager'] }, + 'manifestreferencemanagervariant' => { 547 => [\'Manifest','ManifestReferenceManagerVariant'] }, + 'manifestreferencemanageto' => { 547 => [\'Manifest','ManifestReferenceManageTo'] }, + 'manifestreferencemanageui' => { 547 => [\'Manifest','ManifestReferenceManageUI'] }, + 'manifestreferencemaskmarkers' => { 547 => [\'Manifest','ManifestReferenceMaskMarkers'] }, + 'manifestreferenceoriginaldocumentid' => { 547 => [\'Manifest','ManifestReferenceOriginalDocumentID'] }, + 'manifestreferencepartmapping' => { 547 => [\'Manifest','ManifestReferencePartMapping'] }, + 'manifestreferenceplacedresolutionunit' => { 547 => [\'Manifest','ManifestReferencePlacedResolutionUnit'] }, + 'manifestreferenceplacedxresolution' => { 547 => [\'Manifest','ManifestReferencePlacedXResolution'] }, + 'manifestreferenceplacedyresolution' => { 547 => [\'Manifest','ManifestReferencePlacedYResolution'] }, + 'manifestreferencerenditionclass' => { 547 => [\'Manifest','ManifestReferenceRenditionClass'] }, + 'manifestreferencerenditionparams' => { 547 => [\'Manifest','ManifestReferenceRenditionParams'] }, + 'manifestreferencetopart' => { 547 => [\'Manifest','ManifestReferenceToPart'] }, + 'manifestreferenceversionid' => { 547 => [\'Manifest','ManifestReferenceVersionID'] }, + 'manometerpressure' => { 328 => 0x900, 352 => 0x86 }, + 'manometerreading' => { 328 => 0x901 }, 'manualafpointselectpattern' => { 89 => 0x513 }, 'manualafpointselpattern' => { 2 => 0xf }, - 'manualflash' => { 329 => 0x1209 }, - 'manualflashoutput' => { 36 => 0x29, 308 => '8.2', 311 => '22.2', 312 => '23.1', 313 => '23.2', 315 => '16.2', 316 => '23.2', 317 => '8.2', 318 => '23.2', 321 => '24.2', 418 => 0x100c }, - 'manualflashstrength' => { 326 => 0x406 }, - 'manualfocusdistance' => { 241 => 0x85, 331 => 0x100c, 427 => 0x223 }, - 'manualfocuspointillumination' => { 322 => 0x17, 323 => 0x17, 324 => 0x17 }, - 'manualfocusringinafmode' => { 322 => 0x1a, 323 => 0x1a, 324 => 0x1a }, + 'manualflash' => { 331 => 0x1209 }, + 'manualflashoutput' => { 36 => 0x29, 309 => '8.2', 312 => '22.2', 313 => '23.1', 314 => '23.2', 316 => '16.2', 317 => '23.2', 318 => '8.2', 319 => '23.2', 322 => '24.2', 420 => 0x100c }, + 'manualflashstrength' => { 328 => 0x406 }, + 'manualfocusdistance' => { 241 => 0x85, 333 => 0x100c, 429 => 0x223 }, + 'manualfocuspointillumination' => { 323 => 0x17, 324 => 0x17, 325 => 0x17, 326 => 0x17 }, + 'manualfocusringinafmode' => { 323 => 0x1b, 324 => 0x1a, 325 => 0x1a, 326 => 0x1a }, 'manualtv' => { 88 => 0x5, 89 => 0x705 }, - 'manufacturedate' => { 196 => 0x6705, 365 => 0x1 }, - 'manufacturedate1' => { 420 => 0x4 }, - 'manufacturedate2' => { 420 => 0x5 }, - 'manufacturer' => { 500 => 'Manufacturer', 533 => 'manufacturer' }, + 'manufacturedate' => { 196 => 0x6705, 367 => 0x1 }, + 'manufacturedate1' => { 422 => 0x4 }, + 'manufacturedate2' => { 422 => 0x5 }, + 'manufacturer' => { 502 => 'Manufacturer', 535 => 'manufacturer' }, 'mariahchromablursize' => { 143 => 0xf0d }, 'mariahmaphithreshold' => { 143 => 0xf0c }, 'mariahmaplothreshold' => { 143 => 0xf0b }, 'mariahsigmathreshold' => { 143 => 0xf0e }, 'mariahtexturethreshold' => { 143 => 0xf0a }, - 'marked' => { 531 => 'Marked', 548 => 'Marked' }, - 'markers' => { 544 => 'markers' }, - 'markerscomment' => { 544 => [\'markers','markersComment'] }, - 'markerscuepointparams' => { 544 => [\'markers','markersCuePointParams'] }, - 'markerscuepointparamskey' => { 544 => [\'markers','markersCuePointParamsKey'] }, - 'markerscuepointparamsvalue' => { 544 => [\'markers','markersCuePointParamsValue'] }, - 'markerscuepointtype' => { 544 => [\'markers','markersCuePointType'] }, - 'markersduration' => { 544 => [\'markers','markersDuration'] }, - 'markerslocation' => { 544 => [\'markers','markersLocation'] }, - 'markersname' => { 544 => [\'markers','markersName'] }, - 'markersprobability' => { 544 => [\'markers','markersProbability'] }, - 'markersspeaker' => { 544 => [\'markers','markersSpeaker'] }, - 'markersstarttime' => { 544 => [\'markers','markersStartTime'] }, - 'markerstarget' => { 544 => [\'markers','markersTarget'] }, - 'markerstype' => { 544 => [\'markers','markersType'] }, + 'marked' => { 533 => 'Marked', 550 => 'Marked' }, + 'markers' => { 546 => 'markers' }, + 'markerscomment' => { 546 => [\'markers','markersComment'] }, + 'markerscuepointparams' => { 546 => [\'markers','markersCuePointParams'] }, + 'markerscuepointparamskey' => { 546 => [\'markers','markersCuePointParamsKey'] }, + 'markerscuepointparamsvalue' => { 546 => [\'markers','markersCuePointParamsValue'] }, + 'markerscuepointtype' => { 546 => [\'markers','markersCuePointType'] }, + 'markersduration' => { 546 => [\'markers','markersDuration'] }, + 'markerslocation' => { 546 => [\'markers','markersLocation'] }, + 'markersname' => { 546 => [\'markers','markersName'] }, + 'markersprobability' => { 546 => [\'markers','markersProbability'] }, + 'markersspeaker' => { 546 => [\'markers','markersSpeaker'] }, + 'markersstarttime' => { 546 => [\'markers','markersStartTime'] }, + 'markerstarget' => { 546 => [\'markers','markersTarget'] }, + 'markerstype' => { 546 => [\'markers','markersType'] }, 'maskedareas' => { 124 => 0xc68e }, - 'maskgroupbasedcorractive' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'] }, - 'maskgroupbasedcorramount' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'] }, - 'maskgroupbasedcorrblacks2012' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'] }, - 'maskgroupbasedcorrbrightness' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'] }, - 'maskgroupbasedcorrclarity' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'] }, - 'maskgroupbasedcorrclarity2012' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'] }, - 'maskgroupbasedcorrcontrast' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'] }, - 'maskgroupbasedcorrcontrast2012' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'] }, - 'maskgroupbasedcorrcorrectionname' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'] }, - 'maskgroupbasedcorrcorrectionsyncid' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'] }, - 'maskgroupbasedcorrdefringe' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'] }, - 'maskgroupbasedcorrdehaze' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'] }, - 'maskgroupbasedcorrections' => { 515 => 'MaskGroupBasedCorrections', 517 => 'MaskGroupBasedCorrections' }, - 'maskgroupbasedcorrexposure' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'] }, - 'maskgroupbasedcorrexposure2012' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'] }, - 'maskgroupbasedcorrhighlights2012' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'] }, - 'maskgroupbasedcorrhue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'] }, - 'maskgroupbasedcorrluminancenoise' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'] }, - 'maskgroupbasedcorrmask' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'] }, - 'maskgroupbasedcorrmaskalpha' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'] }, - 'maskgroupbasedcorrmaskangle' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'] }, - 'maskgroupbasedcorrmaskbottom' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'] }, - 'maskgroupbasedcorrmaskcentervalue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'] }, - 'maskgroupbasedcorrmaskcenterweight' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'maskgroupbasedcorrmaskdabs' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'] }, - 'maskgroupbasedcorrmaskfeather' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'] }, - 'maskgroupbasedcorrmaskflipped' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'] }, - 'maskgroupbasedcorrmaskflow' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'] }, - 'maskgroupbasedcorrmaskfullx' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'] }, - 'maskgroupbasedcorrmaskfully' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'] }, - 'maskgroupbasedcorrmaskinputdigest' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'] }, - 'maskgroupbasedcorrmaskleft' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'] }, - 'maskgroupbasedcorrmaskmaskactive' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'] }, - 'maskgroupbasedcorrmaskmaskblendmode' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'maskgroupbasedcorrmaskmaskdigest' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'maskgroupbasedcorrmaskmaskinverted' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'maskgroupbasedcorrmaskmaskname' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'] }, - 'maskgroupbasedcorrmaskmasks' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'] }, - 'maskgroupbasedcorrmaskmasksalpha' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'maskgroupbasedcorrmaskmasksangle' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'maskgroupbasedcorrmaskmasksbottom' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'maskgroupbasedcorrmaskmaskscentervalue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'maskgroupbasedcorrmaskmaskscenterweight' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'maskgroupbasedcorrmaskmasksdabs' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'maskgroupbasedcorrmaskmasksfeather' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'maskgroupbasedcorrmaskmasksflipped' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'maskgroupbasedcorrmaskmasksflow' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'maskgroupbasedcorrmaskmasksfullx' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'maskgroupbasedcorrmaskmasksfully' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'maskgroupbasedcorrmaskmasksinputdigest' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'maskgroupbasedcorrmaskmasksleft' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'maskgroupbasedcorrmaskmasksmaskactive' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'maskgroupbasedcorrmaskmasksmaskblendmode' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'maskgroupbasedcorrmaskmasksmaskdigest' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'maskgroupbasedcorrmaskmasksmaskinverted' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'maskgroupbasedcorrmaskmasksmaskname' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'maskgroupbasedcorrmaskmasksmasksubtype' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'maskgroupbasedcorrmaskmasksmasksyncid' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'maskgroupbasedcorrmaskmasksmaskversion' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'maskgroupbasedcorrmaskmasksmidpoint' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'maskgroupbasedcorrmaskmasksorigin' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'maskgroupbasedcorrmaskmasksperimetervalue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'maskgroupbasedcorrmaskmasksradius' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'maskgroupbasedcorrmaskmasksreferencepoint' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'maskgroupbasedcorrmaskmasksright' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'] }, - 'maskgroupbasedcorrmaskmasksroundness' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'maskgroupbasedcorrmaskmaskssizex' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'maskgroupbasedcorrmaskmaskssizey' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'maskgroupbasedcorrmaskmaskstop' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'] }, - 'maskgroupbasedcorrmaskmasksubtype' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'maskgroupbasedcorrmaskmasksvalue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'maskgroupbasedcorrmaskmasksversion' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'maskgroupbasedcorrmaskmaskswhat' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'maskgroupbasedcorrmaskmaskswholeimagearea' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'maskgroupbasedcorrmaskmasksx' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'] }, - 'maskgroupbasedcorrmaskmasksy' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'] }, - 'maskgroupbasedcorrmaskmasksyncid' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'maskgroupbasedcorrmaskmaskszerox' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'maskgroupbasedcorrmaskmaskszeroy' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'maskgroupbasedcorrmaskmaskversion' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'maskgroupbasedcorrmaskmidpoint' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'] }, - 'maskgroupbasedcorrmaskorigin' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'] }, - 'maskgroupbasedcorrmaskperimetervalue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'maskgroupbasedcorrmaskradius' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'] }, - 'maskgroupbasedcorrmaskrange' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'maskgroupbasedcorrmaskrangeareamodels' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'maskgroupbasedcorrmaskrangeareamodelscolorsampleinfo' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'maskgroupbasedcorrmaskrangeareamodelscomponents' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'maskgroupbasedcorrmaskrangecoloramount' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'maskgroupbasedcorrmaskrangedepthfeather' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'maskgroupbasedcorrmaskrangedepthmax' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'maskgroupbasedcorrmaskrangedepthmin' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'maskgroupbasedcorrmaskrangeinvert' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'maskgroupbasedcorrmaskrangelumfeather' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'maskgroupbasedcorrmaskrangeluminancedepthsampleinfo' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'maskgroupbasedcorrmaskrangelummax' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'maskgroupbasedcorrmaskrangelummin' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'maskgroupbasedcorrmaskrangelumrange' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'maskgroupbasedcorrmaskrangesampletype' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'maskgroupbasedcorrmaskrangetype' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'maskgroupbasedcorrmaskrangeversion' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'maskgroupbasedcorrmaskreferencepoint' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'maskgroupbasedcorrmaskright' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'] }, - 'maskgroupbasedcorrmaskroundness' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'] }, - 'maskgroupbasedcorrmasksizex' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'] }, - 'maskgroupbasedcorrmasksizey' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'] }, - 'maskgroupbasedcorrmasktop' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'] }, - 'maskgroupbasedcorrmaskvalue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'] }, - 'maskgroupbasedcorrmaskversion' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'] }, - 'maskgroupbasedcorrmaskwhat' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'] }, - 'maskgroupbasedcorrmaskwholeimagearea' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'maskgroupbasedcorrmaskx' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'] }, - 'maskgroupbasedcorrmasky' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'] }, - 'maskgroupbasedcorrmaskzerox' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'] }, - 'maskgroupbasedcorrmaskzeroy' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'] }, - 'maskgroupbasedcorrmoire' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'] }, - 'maskgroupbasedcorrrangemask' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'] }, - 'maskgroupbasedcorrrangemaskareamodels' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'maskgroupbasedcorrrangemaskareamodelscolorsampleinfo' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'maskgroupbasedcorrrangemaskareamodelscomponents' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'maskgroupbasedcorrrangemaskcoloramount' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'maskgroupbasedcorrrangemaskdepthfeather' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'maskgroupbasedcorrrangemaskdepthmax' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'maskgroupbasedcorrrangemaskdepthmin' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'maskgroupbasedcorrrangemaskinvert' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'maskgroupbasedcorrrangemasklumfeather' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'maskgroupbasedcorrrangemaskluminancedepthsampleinfo' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'maskgroupbasedcorrrangemasklummax' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'maskgroupbasedcorrrangemasklummin' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'maskgroupbasedcorrrangemasklumrange' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'maskgroupbasedcorrrangemasksampletype' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'maskgroupbasedcorrrangemasktype' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'] }, - 'maskgroupbasedcorrrangemaskversion' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'maskgroupbasedcorrsaturation' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'] }, - 'maskgroupbasedcorrshadows2012' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'] }, - 'maskgroupbasedcorrsharpness' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'] }, - 'maskgroupbasedcorrtemperature' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'] }, - 'maskgroupbasedcorrtexture' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'] }, - 'maskgroupbasedcorrtint' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'] }, - 'maskgroupbasedcorrtoninghue' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'] }, - 'maskgroupbasedcorrtoningsaturation' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'] }, - 'maskgroupbasedcorrwhat' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'] }, - 'maskgroupbasedcorrwhites2012' => { 515 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'], 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'] }, + 'maskgroupbasedcorractive' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionActive'] }, + 'maskgroupbasedcorramount' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionAmount'] }, + 'maskgroupbasedcorrblacks2012' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBlacks2012'] }, + 'maskgroupbasedcorrbrightness' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalBrightness'] }, + 'maskgroupbasedcorrclarity' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity'] }, + 'maskgroupbasedcorrclarity2012' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalClarity2012'] }, + 'maskgroupbasedcorrcontrast' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast'] }, + 'maskgroupbasedcorrcontrast2012' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalContrast2012'] }, + 'maskgroupbasedcorrcorrectionname' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionName'] }, + 'maskgroupbasedcorrcorrectionsyncid' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionSyncID'] }, + 'maskgroupbasedcorrdefringe' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDefringe'] }, + 'maskgroupbasedcorrdehaze' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalDehaze'] }, + 'maskgroupbasedcorrections' => { 517 => 'MaskGroupBasedCorrections', 519 => 'MaskGroupBasedCorrections' }, + 'maskgroupbasedcorrexposure' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure'] }, + 'maskgroupbasedcorrexposure2012' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalExposure2012'] }, + 'maskgroupbasedcorrhighlights2012' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHighlights2012'] }, + 'maskgroupbasedcorrhue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalHue'] }, + 'maskgroupbasedcorrluminancenoise' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalLuminanceNoise'] }, + 'maskgroupbasedcorrmask' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasks'] }, + 'maskgroupbasedcorrmaskalpha' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAlpha'] }, + 'maskgroupbasedcorrmaskangle' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksAngle'] }, + 'maskgroupbasedcorrmaskbottom' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksBottom'] }, + 'maskgroupbasedcorrmaskcentervalue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterValue'] }, + 'maskgroupbasedcorrmaskcenterweight' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'maskgroupbasedcorrmaskdabs' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksDabs'] }, + 'maskgroupbasedcorrmaskfeather' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFeather'] }, + 'maskgroupbasedcorrmaskflipped' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlipped'] }, + 'maskgroupbasedcorrmaskflow' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFlow'] }, + 'maskgroupbasedcorrmaskfullx' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullX'] }, + 'maskgroupbasedcorrmaskfully' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksFullY'] }, + 'maskgroupbasedcorrmaskinputdigest' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksInputDigest'] }, + 'maskgroupbasedcorrmaskleft' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksLeft'] }, + 'maskgroupbasedcorrmaskmaskactive' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskActive'] }, + 'maskgroupbasedcorrmaskmaskblendmode' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'maskgroupbasedcorrmaskmaskdigest' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'maskgroupbasedcorrmaskmaskinverted' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'maskgroupbasedcorrmaskmaskname' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskName'] }, + 'maskgroupbasedcorrmaskmasks' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasks'] }, + 'maskgroupbasedcorrmaskmasksalpha' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'maskgroupbasedcorrmaskmasksangle' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'maskgroupbasedcorrmaskmasksbottom' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'maskgroupbasedcorrmaskmaskscentervalue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'maskgroupbasedcorrmaskmaskscenterweight' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'maskgroupbasedcorrmaskmasksdabs' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'maskgroupbasedcorrmaskmasksfeather' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'maskgroupbasedcorrmaskmasksflipped' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'maskgroupbasedcorrmaskmasksflow' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'maskgroupbasedcorrmaskmasksfullx' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'maskgroupbasedcorrmaskmasksfully' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'maskgroupbasedcorrmaskmasksinputdigest' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'maskgroupbasedcorrmaskmasksleft' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'maskgroupbasedcorrmaskmasksmaskactive' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'maskgroupbasedcorrmaskmasksmaskblendmode' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'maskgroupbasedcorrmaskmasksmaskdigest' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'maskgroupbasedcorrmaskmasksmaskinverted' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'maskgroupbasedcorrmaskmasksmaskname' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'maskgroupbasedcorrmaskmasksmasksubtype' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'maskgroupbasedcorrmaskmasksmasksyncid' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'maskgroupbasedcorrmaskmasksmaskversion' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'maskgroupbasedcorrmaskmasksmidpoint' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'maskgroupbasedcorrmaskmasksorigin' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'maskgroupbasedcorrmaskmasksperimetervalue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'maskgroupbasedcorrmaskmasksradius' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'maskgroupbasedcorrmaskmasksreferencepoint' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'maskgroupbasedcorrmaskmasksright' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRight'] }, + 'maskgroupbasedcorrmaskmasksroundness' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'maskgroupbasedcorrmaskmaskssizex' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'maskgroupbasedcorrmaskmaskssizey' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'maskgroupbasedcorrmaskmaskstop' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksTop'] }, + 'maskgroupbasedcorrmaskmasksubtype' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'maskgroupbasedcorrmaskmasksvalue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'maskgroupbasedcorrmaskmasksversion' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'maskgroupbasedcorrmaskmaskswhat' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'maskgroupbasedcorrmaskmaskswholeimagearea' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'maskgroupbasedcorrmaskmasksx' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksX'] }, + 'maskgroupbasedcorrmaskmasksy' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksY'] }, + 'maskgroupbasedcorrmaskmasksyncid' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'maskgroupbasedcorrmaskmaskszerox' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'maskgroupbasedcorrmaskmaskszeroy' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'maskgroupbasedcorrmaskmaskversion' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'maskgroupbasedcorrmaskmidpoint' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMidpoint'] }, + 'maskgroupbasedcorrmaskorigin' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksOrigin'] }, + 'maskgroupbasedcorrmaskperimetervalue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'maskgroupbasedcorrmaskradius' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRadius'] }, + 'maskgroupbasedcorrmaskrange' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'maskgroupbasedcorrmaskrangeareamodels' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'maskgroupbasedcorrmaskrangeareamodelscolorsampleinfo' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'maskgroupbasedcorrmaskrangeareamodelscomponents' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'maskgroupbasedcorrmaskrangecoloramount' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'maskgroupbasedcorrmaskrangedepthfeather' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'maskgroupbasedcorrmaskrangedepthmax' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'maskgroupbasedcorrmaskrangedepthmin' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'maskgroupbasedcorrmaskrangeinvert' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'maskgroupbasedcorrmaskrangelumfeather' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'maskgroupbasedcorrmaskrangeluminancedepthsampleinfo' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'maskgroupbasedcorrmaskrangelummax' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'maskgroupbasedcorrmaskrangelummin' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'maskgroupbasedcorrmaskrangelumrange' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'maskgroupbasedcorrmaskrangesampletype' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'maskgroupbasedcorrmaskrangetype' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'maskgroupbasedcorrmaskrangeversion' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'maskgroupbasedcorrmaskreferencepoint' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'maskgroupbasedcorrmaskright' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRight'] }, + 'maskgroupbasedcorrmaskroundness' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksRoundness'] }, + 'maskgroupbasedcorrmasksizex' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeX'] }, + 'maskgroupbasedcorrmasksizey' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksSizeY'] }, + 'maskgroupbasedcorrmasktop' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksTop'] }, + 'maskgroupbasedcorrmaskvalue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksMaskValue'] }, + 'maskgroupbasedcorrmaskversion' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksVersion'] }, + 'maskgroupbasedcorrmaskwhat' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWhat'] }, + 'maskgroupbasedcorrmaskwholeimagearea' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'maskgroupbasedcorrmaskx' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksX'] }, + 'maskgroupbasedcorrmasky' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksY'] }, + 'maskgroupbasedcorrmaskzerox' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroX'] }, + 'maskgroupbasedcorrmaskzeroy' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionMasksZeroY'] }, + 'maskgroupbasedcorrmoire' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalMoire'] }, + 'maskgroupbasedcorrrangemask' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMask'] }, + 'maskgroupbasedcorrrangemaskareamodels' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'maskgroupbasedcorrrangemaskareamodelscolorsampleinfo' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'maskgroupbasedcorrrangemaskareamodelscomponents' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'maskgroupbasedcorrrangemaskcoloramount' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'maskgroupbasedcorrrangemaskdepthfeather' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'maskgroupbasedcorrrangemaskdepthmax' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'maskgroupbasedcorrrangemaskdepthmin' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'maskgroupbasedcorrrangemaskinvert' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'maskgroupbasedcorrrangemasklumfeather' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'maskgroupbasedcorrrangemaskluminancedepthsampleinfo' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'maskgroupbasedcorrrangemasklummax' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'maskgroupbasedcorrrangemasklummin' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'maskgroupbasedcorrrangemasklumrange' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'maskgroupbasedcorrrangemasksampletype' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'maskgroupbasedcorrrangemasktype' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskType'] }, + 'maskgroupbasedcorrrangemaskversion' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'maskgroupbasedcorrsaturation' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSaturation'] }, + 'maskgroupbasedcorrshadows2012' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalShadows2012'] }, + 'maskgroupbasedcorrsharpness' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalSharpness'] }, + 'maskgroupbasedcorrtemperature' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTemperature'] }, + 'maskgroupbasedcorrtexture' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTexture'] }, + 'maskgroupbasedcorrtint' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalTint'] }, + 'maskgroupbasedcorrtoninghue' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningHue'] }, + 'maskgroupbasedcorrtoningsaturation' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalToningSaturation'] }, + 'maskgroupbasedcorrwhat' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsWhat'] }, + 'maskgroupbasedcorrwhites2012' => { 517 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'], 519 => [\'MaskGroupBasedCorrections','MaskGroupBasedCorrectionsLocalWhites2012'] }, 'masterdocumentid' => { 136 => 0xb9 }, - 'mastergain' => { 265 => 0x50 }, + 'mastergain' => { 266 => 0x50 }, 'materialsample' => { 123 => 'MaterialSample' }, 'materialsampleid' => { 123 => [\'MaterialSample','MaterialSampleMaterialSampleID'] }, - 'matrixmetering' => { 307 => '50.1', 309 => '48.1', 310 => '48.1', 319 => '48.1', 320 => '48.1', 322 => 0x233, 323 => 0x233, 324 => 0x24b }, + 'matrixmetering' => { 308 => '50.1', 310 => '48.1', 311 => '48.1', 320 => '48.1', 321 => '48.1', 324 => 0x233, 325 => 0x233, 326 => 0x24b }, 'matrixselectk' => { 143 => 0x91b }, 'matrixselectthreshold' => { 143 => 0x91a }, 'matrixselectthreshold1' => { 143 => 0x91e }, 'matrixselectthreshold2' => { 143 => 0x91f }, - 'matrixstructure' => { 410 => 0xa }, - 'maxaperture' => { 36 => 0x1a, 143 => 0x3f9, 149 => 0x6103, 168 => 'MaxAperture', 186 => 0x17, 192 => 0x49c5, 239 => 0x36, 327 => 0x20a, 376 => '14.1' }, - 'maxapertureatmaxfocal' => { 132 => 0x1407, 168 => 'MaxApertureAtMaxFocal', 233 => 0xb, 234 => 0x10, 235 => 0x11, 239 => 0x12, 327 => 0x206 }, - 'maxapertureatminfocal' => { 132 => 0x1406, 233 => 0xa, 234 => 0xf, 235 => 0x10, 239 => 0x11, 327 => 0x205 }, - 'maxaperturevalue' => { 124 => 0x9205, 395 => 0x414, 521 => 'MaxApertureValue' }, - 'maxavailheight' => { 529 => 'MaxAvailHeight' }, - 'maxavailwidth' => { 529 => 'MaxAvailWidth' }, - 'maxcontinuousrelease' => { 306 => 0xb, 307 => 0xc, 309 => '12.1', 310 => '12.1', 315 => 0xc, 316 => 0xb, 319 => '12.1', 320 => '12.1', 322 => 0x3d, 323 => 0x3d, 324 => 0x3d }, - 'maxfaces' => { 330 => 0x1202 }, - 'maxfocallength' => { 7 => 0xe6, 8 => 0x10, 9 => 0x1ab, 10 => 0x13, 11 => 0x115, 12 => 0x13, 13 => 0x153, 14 => 0xda, 16 => 0xfa, 17 => 0xee, 18 => 0x103, 19 => 0x95, 20 => 0xea, 21 => 0x157, 22 => 0xee, 23 => 0xec, 24 => 0x12b, 25 => 0x165, 26 => 0x16a, 27 => 0x188, 28 => 0x116, 29 => 0x18d, 36 => 0x17, 132 => 0x1405, 168 => 'MaxFocalLength', 233 => 0x9, 234 => 0xe, 235 => 0xf, 239 => 0x10, 327 => 0x208, 465 => 0x127c, 466 => 0x1138, 467 => 0x330, 468 => 0x330, 469 => 0x30e }, + 'matrixstructure' => { 412 => 0xa }, + 'maxaperture' => { 36 => 0x1a, 143 => 0x3f9, 149 => 0x6103, 168 => 'MaxAperture', 186 => 0x17, 192 => 0x49c5, 239 => 0x36, 329 => 0x20a, 378 => '14.1' }, + 'maxapertureatmaxfocal' => { 132 => 0x1407, 168 => 'MaxApertureAtMaxFocal', 233 => 0xb, 234 => 0x10, 235 => 0x11, 239 => 0x12, 329 => 0x206 }, + 'maxapertureatminfocal' => { 132 => 0x1406, 233 => 0xa, 234 => 0xf, 235 => 0x10, 239 => 0x11, 329 => 0x205 }, + 'maxaperturevalue' => { 124 => 0x9205, 397 => 0x414, 523 => 'MaxApertureValue' }, + 'maxavailheight' => { 531 => 'MaxAvailHeight' }, + 'maxavailwidth' => { 531 => 'MaxAvailWidth' }, + 'maxcontinuousrelease' => { 307 => 0xb, 308 => 0xc, 310 => '12.1', 311 => '12.1', 316 => 0xc, 317 => 0xb, 320 => '12.1', 321 => '12.1', 323 => 0x41, 324 => 0x3d, 325 => 0x3d, 326 => 0x3d }, + 'maxfaces' => { 332 => 0x1202 }, + 'maxfocallength' => { 7 => 0xe6, 8 => 0x10, 9 => 0x1ab, 10 => 0x13, 11 => 0x115, 12 => 0x13, 13 => 0x153, 14 => 0xda, 16 => 0xfa, 17 => 0xee, 18 => 0x103, 19 => 0x95, 20 => 0xea, 21 => 0x157, 22 => 0xee, 23 => 0xec, 24 => 0x12b, 25 => 0x165, 26 => 0x16a, 27 => 0x188, 28 => 0x116, 29 => 0x18d, 36 => 0x17, 132 => 0x1405, 168 => 'MaxFocalLength', 233 => 0x9, 234 => 0xe, 235 => 0xf, 239 => 0x10, 329 => 0x208, 467 => 0x127c, 468 => 0x1138, 469 => 0x330, 470 => 0x330, 471 => 0x30e }, 'maxfocallength2' => { 65 => 0x9 }, 'maximumdensityrange' => { 138 => 0x8c }, - 'maxpagesize' => { 549 => 'MaxPageSize' }, - 'maxpagesizeh' => { 549 => [\'MaxPageSize','MaxPageSizeH'] }, - 'maxpagesizeunit' => { 549 => [\'MaxPageSize','MaxPageSizeUnit'] }, - 'maxpagesizew' => { 549 => [\'MaxPageSize','MaxPageSizeW'] }, + 'maxpagesize' => { 551 => 'MaxPageSize' }, + 'maxpagesizeh' => { 551 => [\'MaxPageSize','MaxPageSizeH'] }, + 'maxpagesizeunit' => { 551 => [\'MaxPageSize','MaxPageSizeUnit'] }, + 'maxpagesizew' => { 551 => [\'MaxPageSize','MaxPageSizeW'] }, 'maxpixelvaluethreshold' => { 143 => 0xc7d }, 'maxsamplevalue' => { 124 => 0x119 }, - 'maxstorage' => { 539 => 'maxstorage' }, - 'mb-d10batteries' => { 306 => '12.6' }, - 'mb-d10batterytype' => { 315 => '13.3' }, - 'mb-d11batterytype' => { 316 => '2.3' }, - 'mb-d12batterytype' => { 319 => '3.2' }, - 'mb-d80batteries' => { 317 => '6.5' }, - 'mb-d80batterytype' => { 321 => '3.2' }, + 'maxstorage' => { 541 => 'maxstorage' }, + 'mb-d10batteries' => { 307 => '12.6' }, + 'mb-d10batterytype' => { 316 => '13.3' }, + 'mb-d11batterytype' => { 317 => '2.3' }, + 'mb-d12batterytype' => { 320 => '3.2' }, + 'mb-d80batteries' => { 318 => '6.5' }, + 'mb-d80batterytype' => { 322 => '3.2' }, 'mcuversion' => { 233 => 0xc, 234 => 0x11, 235 => 0x12, 239 => 0x13 }, 'md5digest' => { 169 => 'zmd5' }, 'mditemfindercomment' => { 178 => 'MDItemFinderComment' }, 'mditemfscreationdate' => { 178 => 'MDItemFSCreationDate' }, 'mditemfslabel' => { 178 => 'MDItemFSLabel' }, 'mditemusertags' => { 178 => 'MDItemUserTags' }, - 'meal' => { 536 => 'meal' }, + 'meal' => { 538 => 'meal' }, 'measuredev' => { 28 => 0x9, 81 => 0x3, 102 => 0x1814, 161 => 'MeasuredEV' }, 'measuredev2' => { 13 => 0x8, 28 => 0x8, 81 => 0x17 }, 'measuredev3' => { 13 => 0x9 }, - 'measuredlv' => { 192 => 0x690, 345 => 0x312, 348 => 0x312, 349 => 0x312, 352 => 0x3407 }, + 'measuredlv' => { 192 => 0x690, 347 => 0x312, 350 => 0x312, 351 => 0x312, 354 => 0x3407 }, 'measuredrggb' => { 69 => 0x1 }, 'measuredrggbdata' => { 47 => 0x287 }, 'measurementaccuracy' => { 123 => [\'MeasurementOrFact','MeasurementOrFactMeasurementAccuracy'] }, @@ -4772,105 +4775,105 @@ my %tagLookup = ( 'measurementtype' => { 123 => [\'MeasurementOrFact','MeasurementOrFactMeasurementType'] }, 'measurementunit' => { 123 => [\'MeasurementOrFact','MeasurementOrFactMeasurementUnit'] }, 'measurementvalue' => { 123 => [\'MeasurementOrFact','MeasurementOrFactMeasurementValue'] }, - 'measuretype' => { 500 => 'MeasureType' }, + 'measuretype' => { 502 => 'MeasureType' }, 'mechanicalshuttercount' => { 241 => 0x37 }, 'mediaclassprimaryid' => { 184 => 'WM/MediaClassPrimaryID' }, 'mediaclasssecondaryid' => { 184 => 'WM/MediaClassSecondaryID' }, - 'mediaconstraints' => { 336 => 'MediaConstraints' }, - 'mediacreatedate' => { 407 => 0x1 }, - 'mediaeventiddate' => { 505 => 'MediaEventIdDate' }, - 'mediamodifydate' => { 407 => 0x2 }, - 'mediasummarycode' => { 336 => 'MediaSummaryCode' }, - 'mediatype' => { 403 => 'stik' }, + 'mediaconstraints' => { 338 => 'MediaConstraints' }, + 'mediacreatedate' => { 409 => 0x1 }, + 'mediaeventiddate' => { 507 => 'MediaEventIdDate' }, + 'mediamodifydate' => { 409 => 0x2 }, + 'mediasummarycode' => { 338 => 'MediaSummaryCode' }, + 'mediatype' => { 405 => 'stik' }, 'memoaudioquality' => { 89 => 0x812 }, - 'memorycardconfiguration' => { 444 => 0x16 }, + 'memorycardconfiguration' => { 446 => 0x16 }, 'memorycardnumber' => { 218 => 0x2 }, 'menubuttondisplayposition' => { 87 => 0xb, 90 => 0xa, 91 => 0xb, 94 => 0xb }, 'menubuttonreturn' => { 95 => 0xb }, - 'menumonitorofftime' => { 306 => '26.1', 307 => '22.1', 309 => '22.1', 310 => '22.1', 314 => '21.1', 315 => '8.2', 316 => '21.1', 319 => '22.1', 320 => '22.1', 321 => '22.1', 322 => 0x35, 323 => 0x35, 324 => 0x35 }, - 'mergedimages' => { 350 => 0x76 }, - 'metadataauthority' => { 529 => 'metadataAuthority' }, - 'metadataauthorityidentifier' => { 529 => [\'metadataAuthority','metadataAuthorityIdentifier'] }, - 'metadataauthorityname' => { 529 => [\'metadataAuthority','metadataAuthorityName'] }, - 'metadatadate' => { 542 => 'MetadataDate' }, + 'menumonitorofftime' => { 307 => '26.1', 308 => '22.1', 310 => '22.1', 311 => '22.1', 315 => '21.1', 316 => '8.2', 317 => '21.1', 320 => '22.1', 321 => '22.1', 322 => '22.1', 323 => 0x39, 324 => 0x35, 325 => 0x35, 326 => 0x35 }, + 'mergedimages' => { 352 => 0x76 }, + 'metadataauthority' => { 531 => 'metadataAuthority' }, + 'metadataauthorityidentifier' => { 531 => [\'metadataAuthority','metadataAuthorityIdentifier'] }, + 'metadataauthorityname' => { 531 => [\'metadataAuthority','metadataAuthorityName'] }, + 'metadatadate' => { 544 => 'MetadataDate' }, 'metadataeditingsoftware' => { 124 => 0xa43c }, - 'metadatalastedited' => { 529 => 'metadataLastEdited' }, - 'metadatalasteditor' => { 529 => 'metadataLastEditor' }, - 'metadatalasteditoridentifier' => { 529 => [\'metadataLastEditor','metadataLastEditorIdentifier'] }, - 'metadatalasteditorname' => { 529 => [\'metadataLastEditor','metadataLastEditorName'] }, - 'metadatamoddate' => { 544 => 'metadataModDate' }, - 'metaversion' => { 460 => 0x34 }, - 'meterinfo1row1' => { 453 => 0x0, 454 => 0x0 }, - 'meterinfo1row2' => { 453 => 0x6c, 454 => 0x5a }, - 'meterinfo1row3' => { 453 => 0xd8, 454 => 0xb4 }, - 'meterinfo1row4' => { 453 => 0x144, 454 => 0x10e }, - 'meterinfo1row5' => { 453 => 0x1b0, 454 => 0x168 }, - 'meterinfo1row6' => { 453 => 0x21c, 454 => 0x1c2 }, - 'meterinfo1row7' => { 453 => 0x288, 454 => 0x21c }, - 'meterinfo2row1' => { 453 => 0x2f4, 454 => 0x276 }, - 'meterinfo2row2' => { 453 => 0x378, 454 => 0x2e4 }, - 'meterinfo2row3' => { 453 => 0x3fc, 454 => 0x352 }, - 'meterinfo2row4' => { 453 => 0x480, 454 => 0x3c0 }, - 'meterinfo2row5' => { 453 => 0x504, 454 => 0x42e }, - 'meterinfo2row6' => { 453 => 0x588, 454 => 0x49c }, - 'meterinfo2row7' => { 453 => 0x60c, 454 => 0x50a }, - 'meterinfo2row8' => { 453 => 0x690, 454 => 0x578 }, - 'meterinfo2row9' => { 453 => 0x714, 454 => 0x5e6 }, - 'metering' => { 308 => '6.1' }, - 'meteringmode' => { 36 => 0x11, 124 => 0x9207, 145 => 0x1c, 186 => 0x7, 187 => 0x25, 189 => 0x12, 326 => 0x202, 386 => 0x17, 428 => 0x9, 438 => 0x15, 439 => 0x13, 440 => 0x7, 457 => 0x3, 461 => 0x1174, 462 => 0x1178, 463 => 0x1154, 464 => 0x11d0, 465 => 0x11ac, 466 => 0x1064, 467 => 0x25c, 468 => 0x25c, 469 => 0x24b, 521 => 'MeteringMode' }, - 'meteringmode2' => { 366 => '2.1', 452 => 0x202c }, - 'meteringmode3' => { 366 => '16.1' }, + 'metadatalastedited' => { 531 => 'metadataLastEdited' }, + 'metadatalasteditor' => { 531 => 'metadataLastEditor' }, + 'metadatalasteditoridentifier' => { 531 => [\'metadataLastEditor','metadataLastEditorIdentifier'] }, + 'metadatalasteditorname' => { 531 => [\'metadataLastEditor','metadataLastEditorName'] }, + 'metadatamoddate' => { 546 => 'metadataModDate' }, + 'metaversion' => { 462 => 0x34 }, + 'meterinfo1row1' => { 455 => 0x0, 456 => 0x0 }, + 'meterinfo1row2' => { 455 => 0x6c, 456 => 0x5a }, + 'meterinfo1row3' => { 455 => 0xd8, 456 => 0xb4 }, + 'meterinfo1row4' => { 455 => 0x144, 456 => 0x10e }, + 'meterinfo1row5' => { 455 => 0x1b0, 456 => 0x168 }, + 'meterinfo1row6' => { 455 => 0x21c, 456 => 0x1c2 }, + 'meterinfo1row7' => { 455 => 0x288, 456 => 0x21c }, + 'meterinfo2row1' => { 455 => 0x2f4, 456 => 0x276 }, + 'meterinfo2row2' => { 455 => 0x378, 456 => 0x2e4 }, + 'meterinfo2row3' => { 455 => 0x3fc, 456 => 0x352 }, + 'meterinfo2row4' => { 455 => 0x480, 456 => 0x3c0 }, + 'meterinfo2row5' => { 455 => 0x504, 456 => 0x42e }, + 'meterinfo2row6' => { 455 => 0x588, 456 => 0x49c }, + 'meterinfo2row7' => { 455 => 0x60c, 456 => 0x50a }, + 'meterinfo2row8' => { 455 => 0x690, 456 => 0x578 }, + 'meterinfo2row9' => { 455 => 0x714, 456 => 0x5e6 }, + 'metering' => { 309 => '6.1' }, + 'meteringmode' => { 36 => 0x11, 124 => 0x9207, 145 => 0x1c, 186 => 0x7, 187 => 0x25, 189 => 0x12, 328 => 0x202, 388 => 0x17, 430 => 0x9, 440 => 0x15, 441 => 0x13, 442 => 0x7, 459 => 0x3, 463 => 0x1174, 464 => 0x1178, 465 => 0x1154, 466 => 0x11d0, 467 => 0x11ac, 468 => 0x1064, 469 => 0x25c, 470 => 0x25c, 471 => 0x24b, 523 => 'MeteringMode' }, + 'meteringmode2' => { 368 => '2.1', 454 => 0x202c }, + 'meteringmode3' => { 368 => '16.1' }, 'meteringoffscaleindicator' => { 189 => 0x53 }, - 'meteringtime' => { 306 => '22.2', 308 => '3.2', 311 => '17.1', 312 => '18.1', 315 => '7.3', 316 => '18.1', 317 => '3.2', 321 => '19.1' }, - 'micro1version' => { 413 => 0x1f }, - 'micro2version' => { 413 => 0x2d }, - 'microphoneattenuator' => { 246 => 0x34e, 247 => 0x34e, 248 => 0x2d2, 249 => 0x2fa, 250 => 0x2fa }, - 'microphonefrequencyresponse' => { 246 => 0x350, 247 => 0x350, 248 => 0x2d4, 249 => 0x2fc, 250 => 0x2fc }, - 'microphonejackpower' => { 246 => 0x376, 247 => 0x376, 248 => 0x2fa, 249 => 0x322, 250 => 0x322 }, - 'microphonesensitivity' => { 246 => 0x34c, 247 => 0x34c, 248 => 0x2d0, 249 => 0x2f8, 250 => 0x2f8 }, - 'microvideo' => { 497 => 'MicroVideo' }, - 'microvideooffset' => { 497 => 'MicroVideoOffset' }, - 'microvideopresentationtimestampus' => { 497 => 'MicroVideoPresentationTimestampUs' }, - 'microvideoversion' => { 497 => 'MicroVideoVersion' }, - 'midrangesharpness' => { 259 => 0x3b }, + 'meteringtime' => { 307 => '22.2', 309 => '3.2', 312 => '17.1', 313 => '18.1', 316 => '7.3', 317 => '18.1', 318 => '3.2', 322 => '19.1' }, + 'micro1version' => { 415 => 0x1f }, + 'micro2version' => { 415 => 0x2d }, + 'microphoneattenuator' => { 247 => 0x34e, 248 => 0x34e, 249 => 0x2d2, 250 => 0x2fa, 251 => 0x2fa }, + 'microphonefrequencyresponse' => { 247 => 0x350, 248 => 0x350, 249 => 0x2d4, 250 => 0x2fc, 251 => 0x2fc }, + 'microphonejackpower' => { 247 => 0x376, 248 => 0x376, 249 => 0x2fa, 250 => 0x322, 251 => 0x322 }, + 'microphonesensitivity' => { 247 => 0x34c, 248 => 0x34c, 249 => 0x2d0, 250 => 0x2f8, 251 => 0x2f8 }, + 'microvideo' => { 499 => 'MicroVideo' }, + 'microvideooffset' => { 499 => 'MicroVideoOffset' }, + 'microvideopresentationtimestampus' => { 499 => 'MicroVideoPresentationTimestampUs' }, + 'microvideoversion' => { 499 => 'MicroVideoVersion' }, + 'midrangesharpness' => { 260 => 0x3b }, 'mieversion' => { 169 => '0Vers' }, - 'mime' => { 500 => 'Mime' }, - 'minaperture' => { 36 => 0x1b, 143 => 0x3f8, 168 => 'MinAperture', 376 => '0.2' }, - 'minaperturevalue' => { 395 => 0x415 }, - 'minfocallength' => { 7 => 0xe4, 8 => 0xe, 9 => 0x1a9, 10 => 0x11, 11 => 0x113, 12 => 0x11, 13 => 0x151, 14 => 0xd8, 16 => 0xf8, 17 => 0xec, 18 => 0x101, 19 => 0x93, 20 => 0xe8, 21 => 0x155, 22 => 0xec, 23 => 0xea, 24 => 0x129, 25 => 0x163, 26 => 0x168, 27 => 0x186, 28 => 0x114, 29 => 0x18b, 36 => 0x18, 132 => 0x1404, 168 => 'MinFocalLength', 233 => 0x8, 234 => 0xd, 235 => 0xe, 239 => 0xf, 327 => 0x207, 465 => 0x127a, 466 => 0x1136, 467 => 0x32e, 468 => 0x32e, 469 => 0x30c }, + 'mime' => { 502 => 'Mime' }, + 'minaperture' => { 36 => 0x1b, 143 => 0x3f8, 168 => 'MinAperture', 378 => '0.2' }, + 'minaperturevalue' => { 397 => 0x415 }, + 'minfocallength' => { 7 => 0xe4, 8 => 0xe, 9 => 0x1a9, 10 => 0x11, 11 => 0x113, 12 => 0x11, 13 => 0x151, 14 => 0xd8, 16 => 0xf8, 17 => 0xec, 18 => 0x101, 19 => 0x93, 20 => 0xe8, 21 => 0x155, 22 => 0xec, 23 => 0xea, 24 => 0x129, 25 => 0x163, 26 => 0x168, 27 => 0x186, 28 => 0x114, 29 => 0x18b, 36 => 0x18, 132 => 0x1404, 168 => 'MinFocalLength', 233 => 0x8, 234 => 0xd, 235 => 0xe, 239 => 0xf, 329 => 0x207, 467 => 0x127a, 468 => 0x1136, 469 => 0x32e, 470 => 0x32e, 471 => 0x30c }, 'minfocallength2' => { 65 => 0x8 }, - 'minfocusdistance' => { 376 => 0x3 }, - 'minimumiso' => { 350 => 0xe8 }, + 'minfocusdistance' => { 378 => 0x3 }, + 'minimumiso' => { 352 => 0xe8 }, 'minintegrationrows' => { 143 => 0x1874 }, 'minoltadate' => { 186 => 0x15 }, 'minoltaimagesize' => { 186 => 0x4, 187 => 0xc, 188 => 0x2, 191 => 0x103 }, 'minoltamodelid' => { 186 => 0x25 }, 'minoltaquality' => { 186 => 0x5, 187 => 0xd, 188 => 0x3, 191 => [0x102,0x103] }, 'minoltatime' => { 186 => 0x16 }, - 'minormodelagedisclosure' => { 336 => 'MinorModelAgeDisclosure' }, - 'minorversion' => { 405 => 'minor_version', 506 => 'MinorVersion' }, + 'minormodelagedisclosure' => { 338 => 'MinorModelAgeDisclosure' }, + 'minorversion' => { 407 => 'minor_version', 508 => 'MinorVersion' }, 'minsamplevalue' => { 124 => 0x118 }, 'mirrorlockup' => { 87 => 0xc, 88 => 0xc, 89 => 0x60f, 90 => 0xb, 91 => 0xc, 92 => 0x6, 93 => 0x6, 94 => 0xc, 95 => 0x3 }, - 'mobilecountrycode' => { 514 => 'mcc' }, - 'mobilenetworkcode' => { 514 => 'mnc' }, - 'moddate' => { 339 => 'modify-date', 531 => 'ModDate' }, - 'modedialposition' => { 444 => 0x14 }, - 'model' => { 103 => 0x6, 124 => 0x110, 161 => 'Model', 339 => 'Model', 355 => 0x110, 386 => 0x23f, 405 => 'model', 411 => ['@mod','CNMN','cmnm',"\xa9mdl","\xa9mod"], 428 => 0x84, 500 => 'Model', 533 => 'model', 540 => 'Model' }, - 'modelage' => { 529 => 'ModelAge' }, - 'modelid' => { 325 => 0x0 }, - 'modelingflash' => { 306 => '21.4', 307 => '31.1', 309 => '31.1', 310 => '31.1', 315 => '26.4', 316 => '30.2', 317 => '7.4', 318 => '30.1', 319 => '31.1', 320 => '31.1', 321 => '31.3', 322 => 0x5d, 323 => 0x5d, 324 => 0x5d }, - 'modelreleaseid' => { 336 => 'ModelReleaseID' }, - 'modelreleasestatus' => { 336 => 'ModelReleaseStatus' }, - 'modelreleaseyear' => { 475 => 0x52, 476 => 0x46, 477 => 0x53 }, + 'mobilecountrycode' => { 516 => 'mcc' }, + 'mobilenetworkcode' => { 516 => 'mnc' }, + 'moddate' => { 341 => 'modify-date', 533 => 'ModDate' }, + 'modedialposition' => { 446 => 0x14 }, + 'model' => { 103 => 0x6, 124 => 0x110, 161 => 'Model', 341 => 'Model', 357 => 0x110, 388 => 0x23f, 407 => 'model', 413 => ['@mod','CNMN','cmnm',"\xa9mdl","\xa9mod"], 430 => 0x84, 502 => 'Model', 535 => 'model', 542 => 'Model' }, + 'modelage' => { 531 => 'ModelAge' }, + 'modelid' => { 327 => 0x0 }, + 'modelingflash' => { 307 => '21.4', 308 => '31.1', 310 => '31.1', 311 => '31.1', 316 => '26.4', 317 => '30.2', 318 => '7.4', 319 => '30.1', 320 => '31.1', 321 => '31.1', 322 => '31.3', 323 => 0x61, 324 => 0x5d, 325 => 0x5d, 326 => 0x5d }, + 'modelreleaseid' => { 338 => 'ModelReleaseID' }, + 'modelreleasestatus' => { 338 => 'ModelReleaseStatus' }, + 'modelreleaseyear' => { 477 => 0x52, 478 => 0x46, 479 => 0x53 }, 'modeltiepoint' => { 124 => 0x8482 }, 'modeltransform' => { 124 => 0x85d8 }, - 'modelyear' => { 533 => 'modelYear' }, - 'modificationdate' => { 534 => 'modificationDate' }, + 'modelyear' => { 535 => 'modelYear' }, + 'modificationdate' => { 536 => 'modificationDate' }, 'modifiedcolortemp' => { 70 => 0x9 }, 'modifieddigitalgain' => { 70 => 0xb }, 'modifiedparamflag' => { 61 => 0x1 }, 'modifiedpicturestyle' => { 70 => 0xa }, - 'modifiedsaturation' => { 326 => 0x504 }, + 'modifiedsaturation' => { 328 => 0x504 }, 'modifiedsensorbluelevel' => { 70 => 0x5 }, 'modifiedsensorredlevel' => { 70 => 0x4 }, 'modifiedsharpness' => { 70 => 0x2 }, @@ -4879,134 +4882,134 @@ my %tagLookup = ( 'modifiedwhitebalance' => { 70 => 0x8 }, 'modifiedwhitebalanceblue' => { 70 => 0x7 }, 'modifiedwhitebalancered' => { 70 => 0x6 }, - 'modifydate' => { 124 => 0x132, 162 => 'ModifyDate', 335 => 'ModDate', 337 => 'tIME', 402 => 'ModDate', 408 => 0x2, 542 => 'ModifyDate' }, - 'moirefilter' => { 124 => 0xfe58, 515 => 'MoireFilter', 517 => 'MoireFilter' }, - 'monitorbrightness' => { 246 => 0x69a, 247 => 0x6aa, 248 => 0x59a, 249 => 0x5ca, 250 => 0x5e2 }, + 'modifydate' => { 124 => 0x132, 162 => 'ModifyDate', 337 => 'ModDate', 339 => 'tIME', 404 => 'ModDate', 410 => 0x2, 544 => 'ModifyDate' }, + 'moirefilter' => { 124 => 0xfe58, 517 => 'MoireFilter', 519 => 'MoireFilter' }, + 'monitorbrightness' => { 245 => 0x904, 247 => 0x69a, 248 => 0x6aa, 249 => 0x59a, 250 => 0x5ca, 251 => 0x5e2 }, 'monitordisplayoff' => { 189 => 0x4c }, 'monitormatrix' => { 143 => 0x8fc }, - 'monitorofftime' => { 306 => '18.2', 308 => '3.1', 317 => '3.1' }, - 'monochromecolor' => { 326 => 0x53b }, + 'monitorofftime' => { 307 => '18.2', 309 => '3.1', 318 => '3.1' }, + 'monochromecolor' => { 328 => 0x53b }, 'monochromecontrast' => { 114 => 0x3c }, - 'monochromefiltereffect' => { 108 => 0x20307, 114 => 0x3a, 350 => 0xac, 386 => 0x73 }, - 'monochromegraineffect' => { 350 => 0xd2 }, + 'monochromefiltereffect' => { 108 => 0x20307, 114 => 0x3a, 352 => 0xac, 388 => 0x73 }, + 'monochromegraineffect' => { 352 => 0xd2 }, 'monochromelinear' => { 114 => 0x3d }, 'monochromeoutputhighlightpoint' => { 114 => 0x41 }, 'monochromeoutputshadowpoint' => { 114 => 0x42 }, - 'monochromeprofilesettings' => { 326 => 0x537 }, + 'monochromeprofilesettings' => { 328 => 0x537 }, 'monochromerawhighlight' => { 114 => 0x7a }, 'monochromerawhighlightpoint' => { 114 => 0x3f }, 'monochromerawshadow' => { 114 => 0x83 }, 'monochromerawshadowpoint' => { 114 => 0x40 }, 'monochromesharpness' => { 114 => 0x3e }, - 'monochrometoning' => { 386 => 0x74 }, + 'monochrometoning' => { 388 => 0x74 }, 'monochrometoningeffect' => { 108 => 0x20306, 114 => 0x3b }, 'monochromeunsharpmaskfineness' => { 114 => 0xb2 }, 'monochromeunsharpmaskstrength' => { 114 => 0xb0 }, 'monochromeunsharpmaskthreshold' => { 114 => 0xb4 }, - 'monochromevignetting' => { 326 => 0x53a }, + 'monochromevignetting' => { 328 => 0x53a }, 'monthdaycreated' => { 145 => 0x12, 154 => 0xe }, 'mood' => { 184 => 'WM/Mood' }, - 'moonphase' => { 412 => 0x12, 413 => 0x43, 414 => 0x4c }, - 'morepermissions' => { 513 => 'morePermissions' }, - 'motionphoto' => { 497 => 'MotionPhoto' }, - 'motionphotopresentationtimestampus' => { 497 => 'MotionPhotoPresentationTimestampUs' }, - 'motionphotoversion' => { 497 => 'MotionPhotoVersion' }, - 'motionphotovideo' => { 406 => 'mpvd' }, - 'motionsensitivity' => { 412 => 0x29, 414 => 0x60 }, - 'movementcount' => { 403 => "\xa9mvc" }, - 'movementname' => { 403 => "\xa9mvn" }, - 'movementnumber' => { 403 => "\xa9mvi" }, - 'movieactived-lighting' => { 245 => 0x238, 246 => 0x334, 247 => 0x334, 248 => 0x2b8, 249 => 0x2e0, 250 => 0x2e0 }, - 'movieaelockbuttonassignment' => { 319 => '40.1' }, - 'movieaf-onbutton' => { 322 => 0xcb, 323 => 0xcb, 324 => 0xcb }, - 'movieafareamode' => { 246 => 0x342, 247 => 0x342, 248 => 0x2c6, 249 => 0x2ee, 250 => 0x2ee, 322 => 0x203, 323 => 0x203, 324 => 0x21b }, - 'movieafspeed' => { 322 => 0xdd, 323 => 0xdd, 324 => 0xdd }, - 'movieafspeedapply' => { 322 => 0xdf, 323 => 0xdf, 324 => 0xdf }, - 'movieaftrackingsensitivity' => { 322 => 0xe1, 323 => 0xe1, 324 => 0xe1 }, - 'movieaperturelock' => { 322 => 0x259, 323 => 0x259, 324 => 0x271 }, - 'movieautodistortioncontrol' => { 245 => 0x242 }, - 'moviediffractioncompensation' => { 245 => 0x241 }, - 'moviedxcropalert' => { 246 => 0x377, 247 => 0x377, 248 => 0x2fb, 249 => 0x323, 250 => 0x323 }, - 'movieelectronicvr' => { 246 => 0x348, 247 => 0x348, 248 => 0x2cc, 249 => 0x2f4, 250 => 0x2f4 }, - 'movieevfgrid' => { 322 => 0x21d, 323 => 0x21d, 324 => 0x235 }, - 'movieflickerreduction' => { 246 => 0x33c, 247 => 0x33c, 248 => 0x2c0, 249 => 0x2e8, 250 => 0x2e8 }, - 'moviefocusmode' => { 245 => 0x248, 246 => 0x340, 247 => 0x340, 248 => 0x2c4, 249 => 0x2ec, 250 => 0x2ec }, - 'moviefocuspointlock' => { 322 => 0x226, 323 => 0x226, 324 => 0x23e }, - 'movieframerate' => { 245 => 0x1f8, 246 => 0x374, 247 => 0x370, 248 => 0x2f4, 249 => 0x31c, 250 => 0x31c }, - 'movieframesize' => { 245 => 0x1f6, 246 => 0x372, 247 => 0x36e, 248 => 0x2f2, 249 => 0x31a, 250 => 0x31a }, - 'moviefunc1button' => { 309 => '41.1', 310 => '41.1', 320 => '41.1', 322 => 0xc3, 323 => 0xc3, 324 => 0xc3 }, - 'moviefunc2button' => { 322 => 0xc7, 323 => 0xc7, 324 => 0xc7 }, - 'moviefunc3button' => { 323 => 0x127, 324 => 0x13f }, - 'moviefunctionbutton' => { 307 => '41.1', 319 => '41.1' }, - 'moviefunctionbuttonplusdials' => { 307 => '52.1' }, - 'moviehighisonoisereduction' => { 245 => 0x23c, 246 => 0x336, 247 => 0x336, 248 => 0x2ba, 249 => 0x2e2, 250 => 0x2e2 }, - 'moviehighlightdisplaythreshold' => { 322 => 0x215, 323 => 0x215, 324 => 0x22d }, - 'moviehighreszoom' => { 246 => 0x380, 247 => 0x380, 249 => 0x32c, 250 => 0x32c }, - 'movieimagearea' => { 246 => 0x2da, 247 => 0x2da, 248 => 0x25c, 249 => 0x286, 250 => 0x286 }, - 'movieisoautocontrolmanualmode' => { 246 => 0x2e8, 247 => 0x2e8, 248 => 0x26a, 249 => 0x294, 250 => 0x294 }, - 'movieisoautohilimit' => { 246 => 0x2e6, 247 => 0x2e6, 248 => 0x268, 249 => 0x292, 250 => 0x292 }, - 'movieisoautomanualmode' => { 245 => 0x204, 246 => 0x2ea, 247 => 0x2ea, 248 => 0x26c, 249 => 0x296, 250 => 0x296 }, - 'movielenscontrolring' => { 322 => 0xd7, 323 => 0xd7, 324 => 0xd7 }, - 'moviemeteringmode' => { 246 => 0x33e, 247 => 0x33e, 248 => 0x2c2, 249 => 0x2ea, 250 => 0x2ea }, - 'moviemidtonedisplayrange' => { 322 => 0x219, 323 => 0x219, 324 => 0x231 }, - 'moviemidtonedisplayvalue' => { 322 => 0x217, 323 => 0x217, 324 => 0x22f }, - 'moviemultiselector' => { 322 => 0xd9, 323 => 0xcf, 324 => 0xcf }, - 'moviepreviewbutton' => { 307 => '41.2', 309 => '41.2', 310 => '41.2', 319 => '41.2', 320 => '41.2' }, - 'moviepreviewbuttonplusdials' => { 307 => '52.2' }, - 'movierecordbuttonplaybackmode' => { 322 => 0x1b5, 323 => 0x1b5, 324 => 0x1cd }, - 'movieshutterbutton' => { 307 => '38.3', 309 => '38.3', 310 => '38.3', 319 => '38.3', 320 => '38.3' }, - 'movieshutterspeedlock' => { 322 => 0x225, 323 => 0x225, 324 => 0x23d }, - 'movieslowmotion' => { 245 => 0x1fa }, - 'moviesoundrecording' => { 246 => 0x34a, 247 => 0x34a, 248 => 0x2ce, 249 => 0x2f6, 250 => 0x2f6 }, - 'moviesubjectdetection' => { 246 => 0x378, 247 => 0x378, 248 => 0x2fc, 249 => 0x324, 250 => 0x324 }, - 'moviesubselectorassignment' => { 307 => '48.2' }, - 'moviesubselectorassignmentplusdials' => { 307 => '53.1' }, - 'movietonemap' => { 248 => 0x2ec, 249 => 0x314, 250 => 0x314 }, - 'movietype' => { 230 => 0x2ca, 245 => 0x1fe, 246 => 0x2e4, 247 => 0x2e4, 248 => 0x266, 249 => 0x290, 250 => 0x290 }, - 'movievibrationreduction' => { 245 => 0x24e }, - 'movievibrationreductionsameasphoto' => { 245 => 0x24f }, - 'movievignettecontrol' => { 245 => 0x23e, 246 => 0x1b0, 247 => 0x1b0, 248 => 0x1a0, 249 => 0x1b4, 250 => 0x1b4 }, - 'movievignettecontrolsameasphoto' => { 245 => 0x240 }, - 'movievrmode' => { 246 => 0x344, 247 => 0x344, 248 => 0x2c8, 249 => 0x2f0, 250 => 0x2f0 }, - 'moviezebrapattern' => { 322 => 0x213, 323 => 0x213, 324 => 0x22b }, - 'multiburstimageheight' => { 452 => 0x1002 }, - 'multiburstimagewidth' => { 452 => 0x1001 }, - 'multiburstmode' => { 452 => 0x1000 }, + 'moonphase' => { 414 => 0x12, 415 => 0x43, 416 => 0x4c }, + 'morepermissions' => { 515 => 'morePermissions' }, + 'motionphoto' => { 499 => 'MotionPhoto' }, + 'motionphotopresentationtimestampus' => { 499 => 'MotionPhotoPresentationTimestampUs' }, + 'motionphotoversion' => { 499 => 'MotionPhotoVersion' }, + 'motionphotovideo' => { 408 => 'mpvd' }, + 'motionsensitivity' => { 414 => 0x29, 416 => 0x60 }, + 'movementcount' => { 405 => "\xa9mvc" }, + 'movementname' => { 405 => "\xa9mvn" }, + 'movementnumber' => { 405 => "\xa9mvi" }, + 'movieactived-lighting' => { 246 => 0x238, 247 => 0x334, 248 => 0x334, 249 => 0x2b8, 250 => 0x2e0, 251 => 0x2e0 }, + 'movieaelockbuttonassignment' => { 320 => '40.1' }, + 'movieaf-onbutton' => { 323 => 0xd3, 324 => 0xcb, 325 => 0xcb, 326 => 0xcb }, + 'movieafareamode' => { 247 => 0x342, 248 => 0x342, 249 => 0x2c6, 250 => 0x2ee, 251 => 0x2ee, 324 => 0x203, 325 => 0x203, 326 => 0x21b }, + 'movieafspeed' => { 323 => 0xe5, 324 => 0xdd, 325 => 0xdd, 326 => 0xdd }, + 'movieafspeedapply' => { 323 => 0xe7, 324 => 0xdf, 325 => 0xdf, 326 => 0xdf }, + 'movieaftrackingsensitivity' => { 323 => 0xe9, 324 => 0xe1, 325 => 0xe1, 326 => 0xe1 }, + 'movieaperturelock' => { 324 => 0x259, 325 => 0x259, 326 => 0x271 }, + 'movieautodistortioncontrol' => { 246 => 0x242 }, + 'moviediffractioncompensation' => { 246 => 0x241 }, + 'moviedxcropalert' => { 247 => 0x377, 248 => 0x377, 249 => 0x2fb, 250 => 0x323, 251 => 0x323 }, + 'movieelectronicvr' => { 247 => 0x348, 248 => 0x348, 249 => 0x2cc, 250 => 0x2f4, 251 => 0x2f4 }, + 'movieevfgrid' => { 324 => 0x21d, 325 => 0x21d, 326 => 0x235 }, + 'movieflickerreduction' => { 247 => 0x33c, 248 => 0x33c, 249 => 0x2c0, 250 => 0x2e8, 251 => 0x2e8 }, + 'moviefocusmode' => { 246 => 0x248, 247 => 0x340, 248 => 0x340, 249 => 0x2c4, 250 => 0x2ec, 251 => 0x2ec }, + 'moviefocuspointlock' => { 324 => 0x226, 325 => 0x226, 326 => 0x23e }, + 'movieframerate' => { 245 => 0x48c, 246 => 0x1f8, 247 => 0x374, 248 => 0x370, 249 => 0x2f4, 250 => 0x31c, 251 => 0x31c }, + 'movieframesize' => { 245 => 0x48a, 246 => 0x1f6, 247 => 0x372, 248 => 0x36e, 249 => 0x2f2, 250 => 0x31a, 251 => 0x31a }, + 'moviefunc1button' => { 310 => '41.1', 311 => '41.1', 321 => '41.1', 323 => 0xc7, 324 => 0xc3, 325 => 0xc3, 326 => 0xc3 }, + 'moviefunc2button' => { 323 => 0xcd, 324 => 0xc7, 325 => 0xc7, 326 => 0xc7 }, + 'moviefunc3button' => { 325 => 0x127, 326 => 0x13f }, + 'moviefunctionbutton' => { 308 => '41.1', 320 => '41.1' }, + 'moviefunctionbuttonplusdials' => { 308 => '52.1' }, + 'moviehighisonoisereduction' => { 246 => 0x23c, 247 => 0x336, 248 => 0x336, 249 => 0x2ba, 250 => 0x2e2, 251 => 0x2e2 }, + 'moviehighlightdisplaythreshold' => { 324 => 0x215, 325 => 0x215, 326 => 0x22d }, + 'moviehighreszoom' => { 247 => 0x380, 248 => 0x380, 250 => 0x32c, 251 => 0x32c }, + 'movieimagearea' => { 247 => 0x2da, 248 => 0x2da, 249 => 0x25c, 250 => 0x286, 251 => 0x286 }, + 'movieisoautocontrolmanualmode' => { 247 => 0x2e8, 248 => 0x2e8, 249 => 0x26a, 250 => 0x294, 251 => 0x294 }, + 'movieisoautohilimit' => { 247 => 0x2e6, 248 => 0x2e6, 249 => 0x268, 250 => 0x292, 251 => 0x292 }, + 'movieisoautomanualmode' => { 246 => 0x204, 247 => 0x2ea, 248 => 0x2ea, 249 => 0x26c, 250 => 0x296, 251 => 0x296 }, + 'movielenscontrolring' => { 323 => 0xdf, 324 => 0xd7, 325 => 0xd7, 326 => 0xd7 }, + 'moviemeteringmode' => { 247 => 0x33e, 248 => 0x33e, 249 => 0x2c2, 250 => 0x2ea, 251 => 0x2ea }, + 'moviemidtonedisplayrange' => { 324 => 0x219, 325 => 0x219, 326 => 0x231 }, + 'moviemidtonedisplayvalue' => { 324 => 0x217, 325 => 0x217, 326 => 0x22f }, + 'moviemultiselector' => { 323 => 0xe1, 324 => 0xd9, 325 => 0xcf, 326 => 0xcf }, + 'moviepreviewbutton' => { 308 => '41.2', 310 => '41.2', 311 => '41.2', 320 => '41.2', 321 => '41.2' }, + 'moviepreviewbuttonplusdials' => { 308 => '52.2' }, + 'movierecordbuttonplaybackmode' => { 323 => 0x1af, 324 => 0x1b5, 325 => 0x1b5, 326 => 0x1cd }, + 'movieshutterbutton' => { 308 => '38.3', 310 => '38.3', 311 => '38.3', 320 => '38.3', 321 => '38.3' }, + 'movieshutterspeedlock' => { 324 => 0x225, 325 => 0x225, 326 => 0x23d }, + 'movieslowmotion' => { 245 => 0x416, 246 => 0x1fa }, + 'moviesoundrecording' => { 247 => 0x34a, 248 => 0x34a, 249 => 0x2ce, 250 => 0x2f6, 251 => 0x2f6 }, + 'moviesubjectdetection' => { 247 => 0x378, 248 => 0x378, 249 => 0x2fc, 250 => 0x324, 251 => 0x324 }, + 'moviesubselectorassignment' => { 308 => '48.2' }, + 'moviesubselectorassignmentplusdials' => { 308 => '53.1' }, + 'movietonemap' => { 249 => 0x2ec, 250 => 0x314, 251 => 0x314 }, + 'movietype' => { 230 => 0x2ca, 245 => 0x41a, 246 => 0x1fe, 247 => 0x2e4, 248 => 0x2e4, 249 => 0x266, 250 => 0x290, 251 => 0x290 }, + 'movievibrationreduction' => { 246 => 0x24e }, + 'movievibrationreductionsameasphoto' => { 246 => 0x24f }, + 'movievignettecontrol' => { 246 => 0x23e, 247 => 0x1b0, 248 => 0x1b0, 249 => 0x1a0, 250 => 0x1b4, 251 => 0x1b4 }, + 'movievignettecontrolsameasphoto' => { 246 => 0x240 }, + 'movievrmode' => { 247 => 0x344, 248 => 0x344, 249 => 0x2c8, 250 => 0x2f0, 251 => 0x2f0 }, + 'moviezebrapattern' => { 324 => 0x213, 325 => 0x213, 326 => 0x22b }, + 'multiburstimageheight' => { 454 => 0x1002 }, + 'multiburstimagewidth' => { 454 => 0x1001 }, + 'multiburstmode' => { 454 => 0x1000 }, 'multicontrollerwhilemetering' => { 89 => 0x517 }, - 'multiexposure' => { 72 => 0x1, 350 => 0xb4 }, - 'multiexposureautogain' => { 252 => 0x3 }, + 'multiexposure' => { 72 => 0x1, 352 => 0xb4 }, + 'multiexposureautogain' => { 253 => 0x3 }, 'multiexposurecontrol' => { 72 => 0x2 }, - 'multiexposuremode' => { 252 => 0x1, 253 => 0x1 }, - 'multiexposureoverlaymode' => { 253 => 0x3 }, - 'multiexposureshots' => { 72 => 0x3, 246 => 0x9a, 247 => 0x9a, 248 => 0x8e, 249 => 0x9c, 250 => 0x9c, 252 => 0x2, 253 => 0x2 }, - 'multiframenoisereduction' => { 440 => 0x35, 452 => 0x200b, 457 => 0x15 }, - 'multiframenreffect' => { 452 => 0x2023 }, + 'multiexposuremode' => { 253 => 0x1, 254 => 0x1 }, + 'multiexposureoverlaymode' => { 254 => 0x3 }, + 'multiexposureshots' => { 72 => 0x3, 245 => 0x1be, 247 => 0x9a, 248 => 0x9a, 249 => 0x8e, 250 => 0x9c, 251 => 0x9c, 253 => 0x2, 254 => 0x2 }, + 'multiframenoisereduction' => { 442 => 0x35, 454 => 0x200b, 459 => 0x15 }, + 'multiframenreffect' => { 454 => 0x2023 }, 'multifunctionlock' => { 89 => 0x70f }, - 'multipleexposuremode' => { 246 => 0x98, 247 => 0x98, 248 => 0x8c, 249 => 0x9a, 250 => 0x9a, 330 => 0x101c }, - 'multipleexposureset' => { 366 => '10.1' }, - 'multisample' => { 265 => 0x40 }, - 'multiselector' => { 306 => '9.4', 307 => '10.3', 309 => '10.3', 310 => '10.3', 315 => '27.4', 319 => '10.3', 320 => '10.3' }, - 'multiselectorliveview' => { 306 => '4.3', 309 => '37.1', 310 => '37.1', 319 => '37.1', 320 => '37.1' }, - 'multiselectorliveviewmode' => { 279 => 0x18c2 }, - 'multiselectorplaybackmode' => { 306 => ['13.5','9.2'], 307 => '10.2', 310 => '10.2', 315 => '27.2', 319 => '10.2', 320 => '10.2', 322 => 0xb3, 323 => 0xb3, 324 => 0xb3 }, - 'multiselectorshootmode' => { 306 => '9.1', 307 => '10.1', 309 => '10.1', 310 => '10.1', 315 => '27.1', 319 => '10.1', 320 => '10.1', 322 => 0xaf, 323 => 0xaf, 324 => 0xaf }, - 'multishot' => { 355 => 0x121 }, - 'mute' => { 405 => 'player.movie.audio.mute' }, + 'multipleexposuremode' => { 245 => 0x1bc, 247 => 0x98, 248 => 0x98, 249 => 0x8c, 250 => 0x9a, 251 => 0x9a, 332 => 0x101c }, + 'multipleexposureset' => { 368 => '10.1' }, + 'multisample' => { 266 => 0x40 }, + 'multiselector' => { 307 => '9.4', 308 => '10.3', 310 => '10.3', 311 => '10.3', 316 => '27.4', 320 => '10.3', 321 => '10.3' }, + 'multiselectorliveview' => { 307 => '4.3', 310 => '37.1', 311 => '37.1', 320 => '37.1', 321 => '37.1' }, + 'multiselectorliveviewmode' => { 280 => 0x18c2 }, + 'multiselectorplaybackmode' => { 307 => ['13.5','9.2'], 308 => '10.2', 311 => '10.2', 316 => '27.2', 320 => '10.2', 321 => '10.2', 323 => 0xb7, 324 => 0xb3, 325 => 0xb3, 326 => 0xb3 }, + 'multiselectorshootmode' => { 307 => '9.1', 308 => '10.1', 310 => '10.1', 311 => '10.1', 316 => '27.1', 320 => '10.1', 321 => '10.1', 323 => 0xb3, 324 => 0xaf, 325 => 0xaf, 326 => 0xaf }, + 'multishot' => { 357 => 0x121 }, + 'mute' => { 407 => 'player.movie.audio.mute' }, 'mycolormode' => { 73 => 0x2 }, - 'name' => { 411 => 'name', 515 => 'Name', 517 => 'Name' }, - 'narrator' => { 403 => "\xa9nrt" }, - 'nationalcatalognumber' => { 534 => 'nationalCatalogNumber' }, - 'nativedigest' => { 521 => 'NativeDigest', 540 => 'NativeDigest' }, - 'ndfilter' => { 81 => 0x1c, 326 => 0x204, 418 => 0x1019 }, - 'near' => { 500 => 'Near' }, + 'name' => { 413 => 'name', 517 => 'Name', 519 => 'Name' }, + 'narrator' => { 405 => "\xa9nrt" }, + 'nationalcatalognumber' => { 536 => 'nationalCatalogNumber' }, + 'nativedigest' => { 523 => 'NativeDigest', 542 => 'NativeDigest' }, + 'ndfilter' => { 81 => 0x1c, 328 => 0x204, 420 => 0x1019 }, + 'near' => { 502 => 'Near' }, 'nefbitdepth' => { 241 => 0xe22 }, 'nefcompression' => { 241 => 0x93, 242 => 0xa }, 'neflinearizationtable' => { 241 => 0x96 }, - 'negativecachelargepreviewsize' => { 515 => 'NegativeCacheLargePreviewSize', 517 => 'NegativeCacheLargePreviewSize' }, - 'negativecachemaximumsize' => { 515 => 'NegativeCacheMaximumSize', 517 => 'NegativeCacheMaximumSize' }, - 'negativecachepath' => { 515 => 'NegativeCachePath', 517 => 'NegativeCachePath' }, - 'neutraldensityfactor' => { 512 => 'NeutralDensityFactor' }, - 'neutraldensityfilter' => { 386 => 0x88 }, + 'negativecachelargepreviewsize' => { 517 => 'NegativeCacheLargePreviewSize', 519 => 'NegativeCacheLargePreviewSize' }, + 'negativecachemaximumsize' => { 517 => 'NegativeCacheMaximumSize', 519 => 'NegativeCacheMaximumSize' }, + 'negativecachepath' => { 517 => 'NegativeCachePath', 519 => 'NegativeCachePath' }, + 'neutraldensityfactor' => { 514 => 'NeutralDensityFactor' }, + 'neutraldensityfilter' => { 388 => 0x88 }, 'neutraloutputhighlightpoint' => { 114 => 0x2f }, 'neutraloutputshadowpoint' => { 114 => 0x30 }, 'neutralrawcolortone' => { 114 => 0x28 }, @@ -5024,24 +5027,24 @@ my %tagLookup = ( 'newlensdata' => { 239 => 0x2f }, 'newrawimagedigest' => { 124 => 0xc7a7 }, 'newsphotoversion' => { 138 => 0x0 }, - 'nickname' => { 542 => 'Nickname' }, + 'nickname' => { 544 => 'Nickname' }, 'nikoncapturedata' => { 241 => 0xe01 }, 'nikoncaptureeditversions' => { 241 => 0xe13 }, 'nikoncaptureoffsets' => { 241 => 0xe0e }, 'nikoncaptureoutput' => { 241 => 0xe1e }, 'nikoncaptureversion' => { 241 => 0xe09 }, 'nikoniccprofile' => { 241 => 0xe1d }, - 'nikonimagesize' => { 276 => '723.1', 277 => '732.1', 285 => 0x2c4 }, - 'nikonmeteringmode' => { 204 => 0x17, 245 => 0x146, 256 => 0x214 }, + 'nikonimagesize' => { 277 => '723.1', 278 => '732.1', 286 => 0x2c4 }, + 'nikonmeteringmode' => { 204 => 0x17, 245 => 0x2d2, 246 => 0x146, 257 => 0x214 }, 'nikonsettings' => { 241 => 0x4e }, - 'noisefilter' => { 326 => 0x527 }, + 'noisefilter' => { 328 => 0x527 }, 'noiseprofile' => { 124 => 0xc761 }, - 'noisereduction' => { 132 => [0x100b,0x100e], 187 => 0xb0, 188 => 0x60, 189 => 0x3f, 241 => 0x95, 299 => 0x753dcbc0, 300 => 0x17, 326 => 0x50a, 331 => 0x103a, 350 => 0x2d, 386 => 0x49, 418 => 0x100f, 420 => 0x2a }, - 'noisereduction2' => { 330 => 0x1010 }, + 'noisereduction' => { 132 => [0x100b,0x100e], 187 => 0xb0, 188 => 0x60, 189 => 0x3f, 241 => 0x95, 300 => 0x753dcbc0, 301 => 0x17, 328 => 0x50a, 333 => 0x103a, 352 => 0x2d, 388 => 0x49, 420 => 0x100f, 422 => 0x2a }, + 'noisereduction2' => { 332 => 0x1010 }, 'noisereductionapplied' => { 124 => 0xc6f7 }, - 'noisereductionintensity' => { 300 => 0x9 }, - 'noisereductionmethod' => { 300 => 0x11 }, - 'noisereductionmode' => { 489 => 0x801e }, + 'noisereductionintensity' => { 301 => 0x9 }, + 'noisereductionmethod' => { 301 => 0x11 }, + 'noisereductionmode' => { 491 => 0x801e }, 'noisereductionparametersatcapture' => { 143 => 0xe73 }, 'noisereductionparameterscamera' => { 143 => 0xe72 }, 'noisereductionparametershost3mp' => { 143 => 0xe71 }, @@ -5050,78 +5053,78 @@ my %tagLookup = ( 'noisereductionparameterskhufu3mp' => { 143 => 0xe65 }, 'noisereductionparameterskhufu6mp' => { 143 => 0xe64 }, 'noisereductionparameterskhufurgb' => { 143 => 0xe63 }, - 'noisereductionparams' => { 355 => 0x1b }, - 'noisereductionsharpness' => { 300 => 0xd }, - 'noisereductionstrength' => { 350 => 0xd6 }, - 'noisereductionvalue' => { 489 => 0x8027 }, - 'nomemorycard' => { 306 => '22.1', 307 => '4.2', 308 => '0.3', 311 => '2.4', 312 => '3.2', 313 => '3.2', 315 => '33.7', 316 => '3.2', 317 => '0.3', 319 => '4.2', 321 => '4.5' }, - 'nominalmaxaperture' => { 376 => 0xa }, - 'nominalminaperture' => { 376 => '10.1' }, - 'noncpulens10focallength' => { 246 => 0x6c6, 247 => 0x6d6, 250 => 0x620 }, - 'noncpulens10maxaperture' => { 246 => 0x6ee, 247 => 0x738, 250 => 0x670 }, - 'noncpulens11focallength' => { 246 => 0x6c8, 247 => 0x6d8, 250 => 0x624 }, - 'noncpulens11maxaperture' => { 246 => 0x6f0, 247 => 0x73c, 250 => 0x674 }, - 'noncpulens12focallength' => { 246 => 0x6ca, 247 => 0x6da, 250 => 0x628 }, - 'noncpulens12maxaperture' => { 246 => 0x6f2, 247 => 0x740, 250 => 0x678 }, - 'noncpulens13focallength' => { 246 => 0x6cc, 247 => 0x6dc, 250 => 0x62c }, - 'noncpulens13maxaperture' => { 246 => 0x6f4, 247 => 0x744, 250 => 0x67c }, - 'noncpulens14focallength' => { 246 => 0x6ce, 247 => 0x6de, 250 => 0x630 }, - 'noncpulens14maxaperture' => { 246 => 0x6f6, 247 => 0x748, 250 => 0x680 }, - 'noncpulens15focallength' => { 246 => 0x6d0, 247 => 0x6e0, 250 => 0x634 }, - 'noncpulens15maxaperture' => { 246 => 0x6f8, 247 => 0x74c, 250 => 0x684 }, - 'noncpulens16focallength' => { 246 => 0x6d2, 247 => 0x6e2, 250 => 0x638 }, - 'noncpulens16maxaperture' => { 246 => 0x6fa, 247 => 0x750, 250 => 0x688 }, - 'noncpulens17focallength' => { 246 => 0x6d4, 247 => 0x6e4, 250 => 0x63c }, - 'noncpulens17maxaperture' => { 246 => 0x6fc, 247 => 0x754, 250 => 0x68c }, - 'noncpulens18focallength' => { 246 => 0x6d6, 247 => 0x6e6, 250 => 0x640 }, - 'noncpulens18maxaperture' => { 246 => 0x6fe, 247 => 0x758, 250 => 0x690 }, - 'noncpulens19focallength' => { 246 => 0x6d8, 247 => 0x6e8, 250 => 0x644 }, - 'noncpulens19maxaperture' => { 246 => 0x700, 247 => 0x75c, 250 => 0x694 }, - 'noncpulens1focallength' => { 246 => 0x6b4, 247 => 0x6c4, 250 => 0x5fc }, - 'noncpulens1maxaperture' => { 246 => 0x6dc, 247 => 0x714, 250 => 0x64c }, - 'noncpulens20focallength' => { 246 => 0x6da, 247 => 0x6ea, 250 => 0x648 }, - 'noncpulens20maxaperture' => { 246 => 0x702, 247 => 0x760, 250 => 0x698 }, - 'noncpulens2focallength' => { 246 => 0x6b6, 247 => 0x6c6, 250 => 0x600 }, - 'noncpulens2maxaperture' => { 246 => 0x6de, 247 => 0x718, 250 => 0x650 }, - 'noncpulens3focallength' => { 246 => 0x6b8, 247 => 0x6c8, 250 => 0x604 }, - 'noncpulens3maxaperture' => { 246 => 0x6e0, 247 => 0x71c, 250 => 0x654 }, - 'noncpulens4focallength' => { 246 => 0x6ba, 247 => 0x6ca, 250 => 0x608 }, - 'noncpulens4maxaperture' => { 246 => 0x6e2, 250 => 0x658 }, - 'noncpulens5focallength' => { 246 => 0x6bc, 247 => 0x6cc, 250 => 0x60c }, - 'noncpulens5maxaperture' => { 246 => 0x6e4, 247 => 0x724, 250 => 0x65c }, - 'noncpulens6focallength' => { 246 => 0x6be, 247 => 0x6ce, 250 => 0x610 }, - 'noncpulens6maxaperture' => { 246 => 0x6e6, 247 => 0x728, 250 => 0x660 }, - 'noncpulens7focallength' => { 246 => 0x6c0, 247 => 0x6d0, 250 => 0x614 }, - 'noncpulens7maxaperture' => { 246 => 0x6e8, 247 => 0x72c, 250 => 0x664 }, - 'noncpulens8focallength' => { 246 => 0x6c2, 247 => 0x6d2, 250 => 0x618 }, - 'noncpulens8maxaperture' => { 246 => 0x6ea, 247 => 0x730, 250 => 0x668 }, - 'noncpulens9focallength' => { 246 => 0x6c4, 247 => 0x6d4, 250 => 0x61c }, - 'noncpulens9maxaperture' => { 246 => 0x6ec, 247 => 0x734, 250 => 0x66c }, - 'normalizedcropcorners' => { 340 => 'NormalizedCropCorners' }, + 'noisereductionparams' => { 357 => 0x1b }, + 'noisereductionsharpness' => { 301 => 0xd }, + 'noisereductionstrength' => { 352 => 0xd6 }, + 'noisereductionvalue' => { 491 => 0x8027 }, + 'nomemorycard' => { 307 => '22.1', 308 => '4.2', 309 => '0.3', 312 => '2.4', 313 => '3.2', 314 => '3.2', 316 => '33.7', 317 => '3.2', 318 => '0.3', 320 => '4.2', 322 => '4.5' }, + 'nominalmaxaperture' => { 378 => 0xa }, + 'nominalminaperture' => { 378 => '10.1' }, + 'noncpulens10focallength' => { 247 => 0x6c6, 248 => 0x6d6, 251 => 0x620 }, + 'noncpulens10maxaperture' => { 247 => 0x6ee, 248 => 0x738, 251 => 0x670 }, + 'noncpulens11focallength' => { 247 => 0x6c8, 248 => 0x6d8, 251 => 0x624 }, + 'noncpulens11maxaperture' => { 247 => 0x6f0, 248 => 0x73c, 251 => 0x674 }, + 'noncpulens12focallength' => { 247 => 0x6ca, 248 => 0x6da, 251 => 0x628 }, + 'noncpulens12maxaperture' => { 247 => 0x6f2, 248 => 0x740, 251 => 0x678 }, + 'noncpulens13focallength' => { 247 => 0x6cc, 248 => 0x6dc, 251 => 0x62c }, + 'noncpulens13maxaperture' => { 247 => 0x6f4, 248 => 0x744, 251 => 0x67c }, + 'noncpulens14focallength' => { 247 => 0x6ce, 248 => 0x6de, 251 => 0x630 }, + 'noncpulens14maxaperture' => { 247 => 0x6f6, 248 => 0x748, 251 => 0x680 }, + 'noncpulens15focallength' => { 247 => 0x6d0, 248 => 0x6e0, 251 => 0x634 }, + 'noncpulens15maxaperture' => { 247 => 0x6f8, 248 => 0x74c, 251 => 0x684 }, + 'noncpulens16focallength' => { 247 => 0x6d2, 248 => 0x6e2, 251 => 0x638 }, + 'noncpulens16maxaperture' => { 247 => 0x6fa, 248 => 0x750, 251 => 0x688 }, + 'noncpulens17focallength' => { 247 => 0x6d4, 248 => 0x6e4, 251 => 0x63c }, + 'noncpulens17maxaperture' => { 247 => 0x6fc, 248 => 0x754, 251 => 0x68c }, + 'noncpulens18focallength' => { 247 => 0x6d6, 248 => 0x6e6, 251 => 0x640 }, + 'noncpulens18maxaperture' => { 247 => 0x6fe, 248 => 0x758, 251 => 0x690 }, + 'noncpulens19focallength' => { 247 => 0x6d8, 248 => 0x6e8, 251 => 0x644 }, + 'noncpulens19maxaperture' => { 247 => 0x700, 248 => 0x75c, 251 => 0x694 }, + 'noncpulens1focallength' => { 247 => 0x6b4, 248 => 0x6c4, 251 => 0x5fc }, + 'noncpulens1maxaperture' => { 247 => 0x6dc, 248 => 0x714, 251 => 0x64c }, + 'noncpulens20focallength' => { 247 => 0x6da, 248 => 0x6ea, 251 => 0x648 }, + 'noncpulens20maxaperture' => { 247 => 0x702, 248 => 0x760, 251 => 0x698 }, + 'noncpulens2focallength' => { 247 => 0x6b6, 248 => 0x6c6, 251 => 0x600 }, + 'noncpulens2maxaperture' => { 247 => 0x6de, 248 => 0x718, 251 => 0x650 }, + 'noncpulens3focallength' => { 247 => 0x6b8, 248 => 0x6c8, 251 => 0x604 }, + 'noncpulens3maxaperture' => { 247 => 0x6e0, 248 => 0x71c, 251 => 0x654 }, + 'noncpulens4focallength' => { 247 => 0x6ba, 248 => 0x6ca, 251 => 0x608 }, + 'noncpulens4maxaperture' => { 247 => 0x6e2, 251 => 0x658 }, + 'noncpulens5focallength' => { 247 => 0x6bc, 248 => 0x6cc, 251 => 0x60c }, + 'noncpulens5maxaperture' => { 247 => 0x6e4, 248 => 0x724, 251 => 0x65c }, + 'noncpulens6focallength' => { 247 => 0x6be, 248 => 0x6ce, 251 => 0x610 }, + 'noncpulens6maxaperture' => { 247 => 0x6e6, 248 => 0x728, 251 => 0x660 }, + 'noncpulens7focallength' => { 247 => 0x6c0, 248 => 0x6d0, 251 => 0x614 }, + 'noncpulens7maxaperture' => { 247 => 0x6e8, 248 => 0x72c, 251 => 0x664 }, + 'noncpulens8focallength' => { 247 => 0x6c2, 248 => 0x6d2, 251 => 0x618 }, + 'noncpulens8maxaperture' => { 247 => 0x6ea, 248 => 0x730, 251 => 0x668 }, + 'noncpulens9focallength' => { 247 => 0x6c4, 248 => 0x6d4, 251 => 0x61c }, + 'noncpulens9maxaperture' => { 247 => 0x6ec, 248 => 0x734, 251 => 0x66c }, + 'normalizedcropcorners' => { 342 => 'NormalizedCropCorners' }, 'normallinetime' => { 143 => 0x186a }, 'normalwhitelevel' => { 43 => 0x32a, 44 => 0x280, 45 => 0x294, 48 => [0x2b8,0x2cf,0x2d3], 49 => 0x569, 50 => 0x1e3, 51 => [0x1fc,0x2dc], 52 => [0x230,0x30e], 53 => 0x31c }, - 'notes' => { 491 => 'Notes', 510 => 'notes' }, - 'npages' => { 549 => 'NPages' }, + 'notes' => { 493 => 'Notes', 512 => 'notes' }, + 'npages' => { 551 => 'NPages' }, 'nullrecord' => { 102 => 0x0 }, - 'numafpoints' => { 362 => 0x2 }, - 'number' => { 534 => 'number' }, - 'numberofbeats' => { 544 => 'numberOfBeats' }, - 'numberoffocuspoints' => { 309 => '1.3', 310 => '1.3', 313 => '0.2', 314 => '0.3', 316 => '0.3' }, + 'numafpoints' => { 364 => 0x2 }, + 'number' => { 536 => 'number' }, + 'numberofbeats' => { 546 => 'numberOfBeats' }, + 'numberoffocuspoints' => { 310 => '1.3', 311 => '1.3', 314 => '0.2', 315 => '0.3', 317 => '0.3' }, 'numfaceelements' => { 132 => 0x4200 }, - 'numfacepositions' => { 342 => 0x0 }, + 'numfacepositions' => { 344 => 0x0 }, 'numindexentries' => { 138 => 0x54 }, - 'numwbentries' => { 356 => 0x0, 357 => 0x0 }, - 'object' => { 534 => 'object' }, + 'numwbentries' => { 358 => 0x0, 359 => 0x0 }, + 'object' => { 536 => 'object' }, 'objectattributereference' => { 136 => 0x4 }, - 'objectcycle' => { 136 => 0x4b, 510 => 'ObjectCycle' }, - 'objectdescription' => { 533 => 'objectDescription' }, + 'objectcycle' => { 136 => 0x4b, 512 => 'ObjectCycle' }, + 'objectdescription' => { 535 => 'objectDescription' }, 'objectdistance' => { 117 => 0x6, 118 => 0x2022 }, 'objectname' => { 136 => 0x5 }, 'objectpreviewdata' => { 136 => 0xca }, 'objectpreviewfileformat' => { 136 => 0xc8 }, 'objectpreviewfileversion' => { 136 => 0xc9 }, - 'objectsubtype' => { 533 => 'objectSubtype' }, - 'objecttype' => { 533 => 'objectType' }, + 'objectsubtype' => { 535 => 'objectSubtype' }, + 'objecttype' => { 535 => 'objectType' }, 'objecttypereference' => { 136 => 0x3 }, 'occurrence' => { 123 => 'Occurrence' }, 'occurrenceassociatedmedia' => { 123 => [\'Occurrence','OccurrenceAssociatedMedia'] }, @@ -5153,25 +5156,25 @@ my %tagLookup = ( 'occurrencereproductivecondition' => { 123 => [\'Occurrence','OccurrenceReproductiveCondition'] }, 'occurrencesex' => { 123 => [\'Occurrence','OccurrenceSex'] }, 'occurrencestatus' => { 123 => [\'Occurrence','OccurrenceOccurrenceStatus'] }, - 'oecfcolumns' => { 521 => [\'OECF','OECFColumns'] }, - 'oecfnames' => { 521 => [\'OECF','OECFNames'] }, - 'oecfrows' => { 521 => [\'OECF','OECFRows'] }, - 'oecfvalues' => { 521 => [\'OECF','OECFValues'] }, - 'offsaledate' => { 534 => 'offSaleDate' }, - 'offsaledatea-platform' => { 534 => [\'offSaleDate','offSaleDateA-platform'] }, - 'offsaledatedate' => { 534 => [\'offSaleDate','offSaleDateDate'] }, + 'oecfcolumns' => { 523 => [\'OECF','OECFColumns'] }, + 'oecfnames' => { 523 => [\'OECF','OECFNames'] }, + 'oecfrows' => { 523 => [\'OECF','OECFRows'] }, + 'oecfvalues' => { 523 => [\'OECF','OECFValues'] }, + 'offsaledate' => { 536 => 'offSaleDate' }, + 'offsaledatea-platform' => { 536 => [\'offSaleDate','offSaleDateA-platform'] }, + 'offsaledatedate' => { 536 => [\'offSaleDate','offSaleDateDate'] }, 'offsetdacvalue' => { 143 => 0x190a }, - 'offsethdr' => { 526 => 'OffsetHDR' }, + 'offsethdr' => { 528 => 'OffsetHDR' }, 'offsetschema' => { 124 => 0xea1d }, - 'offsetsdr' => { 526 => 'OffsetSDR' }, + 'offsetsdr' => { 528 => 'OffsetSDR' }, 'offsettime' => { 124 => 0x9010 }, 'offsettimedigitized' => { 124 => 0x9012 }, 'offsettimeoriginal' => { 124 => 0x9011 }, 'oismode' => { 1 => 0xf }, - 'okbutton' => { 316 => '15.1', 321 => '16.1' }, + 'okbutton' => { 317 => '15.1', 322 => '16.1' }, 'oldsubfiletype' => { 124 => 0xff }, - 'olympusimageheight' => { 331 => 0x102f }, - 'olympusimagewidth' => { 331 => 0x102e }, + 'olympusimageheight' => { 333 => 0x102f }, + 'olympusimagewidth' => { 333 => 0x102e }, 'omenatcapturestrength' => { 143 => 0xa60 }, 'omenautostrength' => { 143 => 0xa5f }, 'omenearlystrength' => { 143 => 0xa5e }, @@ -5179,26 +5182,26 @@ my %tagLookup = ( 'omeninitialipfstrength' => { 143 => 0xa5d }, 'omensurfaceindex' => { 143 => 0xa64 }, 'oneshotafrelease' => { 2 => 0x9 }, - 'onetouchwb' => { 331 => 0x302 }, - 'onsaledate' => { 534 => 'onSaleDate' }, - 'onsaledatea-platform' => { 534 => [\'onSaleDate','onSaleDateA-platform'] }, - 'onsaledatedate' => { 534 => [\'onSaleDate','onSaleDateDate'] }, - 'onsaleday' => { 534 => 'onSaleDay' }, - 'onsaledaya-platform' => { 534 => [\'onSaleDay','onSaleDayA-platform'] }, - 'onsaledayday' => { 534 => [\'onSaleDay','onSaleDayDay'] }, + 'onetouchwb' => { 333 => 0x302 }, + 'onsaledate' => { 536 => 'onSaleDate' }, + 'onsaledatea-platform' => { 536 => [\'onSaleDate','onSaleDateA-platform'] }, + 'onsaledatedate' => { 536 => [\'onSaleDate','onSaleDateDate'] }, + 'onsaleday' => { 536 => 'onSaleDay' }, + 'onsaledaya-platform' => { 536 => [\'onSaleDay','onSaleDayA-platform'] }, + 'onsaledayday' => { 536 => [\'onSaleDay','onSaleDayDay'] }, 'opcodelist1' => { 124 => 0xc740 }, 'opcodelist2' => { 124 => 0xc741 }, 'opcodelist3' => { 124 => 0xc74e }, 'opticalzoom' => { 147 => 0xfa3d, 149 => [0x6006,0xf006], 150 => 0x1000, 151 => 0xf, 154 => 0x1e, 156 => 0x20, 157 => 0x1c, 168 => 'OpticalZoom' }, 'opticalzoomcode' => { 81 => 0xa }, - 'opticalzoommode' => { 350 => 0x34 }, - 'opticalzoomon' => { 427 => 0x219 }, - 'optionenddate' => { 537 => 'optionEndDate' }, - 'opto-electricconvfactor' => { 521 => 'OECF' }, + 'opticalzoommode' => { 352 => 0x34 }, + 'opticalzoomon' => { 429 => 0x219 }, + 'optionenddate' => { 539 => 'optionEndDate' }, + 'opto-electricconvfactor' => { 523 => 'OECF' }, 'orangehsl' => { 108 => 0x20911 }, 'ordernumber' => { 132 => 0x8002 }, - 'organisationinimagecode' => { 529 => 'OrganisationInImageCode' }, - 'organisationinimagename' => { 529 => 'OrganisationInImageName' }, + 'organisationinimagecode' => { 531 => 'OrganisationInImageCode' }, + 'organisationinimagename' => { 531 => 'OrganisationInImageName' }, 'organism' => { 123 => 'Organism' }, 'organismassociatedoccurrences' => { 123 => [\'Organism','OrganismAssociatedOccurrences'] }, 'organismassociatedorganisms' => { 123 => [\'Organism','OrganismAssociatedOrganisms'] }, @@ -5207,26 +5210,26 @@ my %tagLookup = ( 'organismpreviousidentifications' => { 123 => [\'Organism','OrganismPreviousIdentifications'] }, 'organismremarks' => { 123 => [\'Organism','OrganismOrganismRemarks'] }, 'organismscope' => { 123 => [\'Organism','OrganismOrganismScope'] }, - 'organization' => { 534 => 'organization' }, - 'orientation' => { 124 => 0x112, 355 => 0x112, 533 => 'orientation', 540 => 'Orientation' }, - 'orientation2' => { 457 => [0x28,0x2e] }, + 'organization' => { 536 => 'organization' }, + 'orientation' => { 124 => 0x112, 357 => 0x112, 535 => 'orientation', 542 => 'Orientation' }, + 'orientation2' => { 459 => [0x28,0x2e] }, 'orientationlinkedaf' => { 2 => 0xe }, 'orientationlinkedafpoint' => { 89 => 0x516 }, 'originalalbumtitle' => { 184 => 'WM/OriginalAlbumTitle' }, - 'originalartist' => { 184 => 'WM/OriginalArtist', 403 => "\xa9ope" }, + 'originalartist' => { 184 => 'WM/OriginalArtist', 405 => "\xa9ope" }, 'originalbestqualitysize' => { 124 => 0xc792 }, - 'originalcreatedatetime' => { 505 => 'OriginalCreateDateTime' }, + 'originalcreatedatetime' => { 507 => 'OriginalCreateDateTime' }, 'originaldecisiondata' => { 119 => 'Canon-OriginalDecisionData' }, 'originaldecisiondataoffset' => { 68 => 0x83 }, 'originaldefaultcropsize' => { 124 => 0xc793 }, 'originaldefaultfinalsize' => { 124 => 0xc791 }, - 'originaldirectory' => { 347 => 0x408 }, - 'originaldocumentid' => { 545 => 'OriginalDocumentID' }, - 'originalfilename' => { 102 => 0x816, 143 => 0x3e9, 155 => 0x20, 347 => 0x407, 505 => 'OriginalFilename' }, - 'originalimagehash' => { 494 => 'OriginalImageHash' }, - 'originalimagehashtype' => { 494 => 'OriginalImageHashType' }, + 'originaldirectory' => { 349 => 0x408 }, + 'originaldocumentid' => { 547 => 'OriginalDocumentID' }, + 'originalfilename' => { 102 => 0x816, 143 => 0x3e9, 155 => 0x20, 349 => 0x407, 507 => 'OriginalFilename' }, + 'originalimagehash' => { 496 => 'OriginalImageHash' }, + 'originalimagehashtype' => { 496 => 'OriginalImageHashType' }, 'originalimageheight' => { 83 => 0xc, 128 => 0x1 }, - 'originalimagemd5' => { 494 => 'OriginalImageMD5' }, + 'originalimagemd5' => { 496 => 'OriginalImageMD5' }, 'originalimagesize' => { 167 => 'OriginalImageSize' }, 'originalimagewidth' => { 83 => 0xb, 128 => 0x0 }, 'originallyricist' => { 184 => 'WM/OriginalLyricist' }, @@ -5234,209 +5237,209 @@ my %tagLookup = ( 'originalrawfiledigest' => { 124 => 0xc71d }, 'originalrawfilename' => { 124 => 0xc68b }, 'originaltransmissionreference' => { 136 => 0x67 }, - 'originatingprogram' => { 136 => 0x41, 510 => 'OriginatingProgram' }, - 'originplatform' => { 534 => 'originPlatform' }, - 'os' => { 519 => 'os' }, - 'otherconditions' => { 336 => 'OtherConditions' }, - 'otherconstraints' => { 336 => 'OtherConstraints' }, + 'originatingprogram' => { 136 => 0x41, 512 => 'OriginatingProgram' }, + 'originplatform' => { 536 => 'originPlatform' }, + 'os' => { 521 => 'os' }, + 'otherconditions' => { 338 => 'OtherConditions' }, + 'otherconstraints' => { 338 => 'OtherConstraints' }, 'otherimage' => { 119 => 'Exif-OtherImage' }, - 'otherimageinfo' => { 336 => 'OtherImageInfo' }, + 'otherimageinfo' => { 338 => 'OtherImageInfo' }, 'otherimagelength' => { 124 => 0x202 }, 'otherimagestart' => { 124 => 0x201 }, - 'otherlicensedocuments' => { 336 => 'OtherLicenseDocuments' }, - 'otherlicenseinfo' => { 336 => 'OtherLicenseInfo' }, - 'otherlicenserequirements' => { 336 => 'OtherLicenseRequirements' }, - 'outcue' => { 544 => 'outCue' }, - 'outcuescale' => { 544 => [\'outCue','outCueScale'] }, - 'outcuevalue' => { 544 => [\'outCue','outCueValue'] }, + 'otherlicensedocuments' => { 338 => 'OtherLicenseDocuments' }, + 'otherlicenseinfo' => { 338 => 'OtherLicenseInfo' }, + 'otherlicenserequirements' => { 338 => 'OtherLicenseRequirements' }, + 'outcue' => { 546 => 'outCue' }, + 'outcuescale' => { 546 => [\'outCue','outCueScale'] }, + 'outcuevalue' => { 546 => [\'outCue','outCueValue'] }, 'outputimageheight' => { 205 => 0x3 }, 'outputimagewidth' => { 205 => 0x2 }, - 'outputlut' => { 350 => 0xa7 }, + 'outputlut' => { 352 => 0xa7 }, 'outputprofile' => { 143 => 0x138b }, 'outputresolution' => { 205 => 0x4 }, 'overclockcols' => { 143 => 0x189c }, 'overclockrows' => { 143 => 0x18c4 }, - 'overridelookvignette' => { 515 => 'OverrideLookVignette', 517 => 'OverrideLookVignette' }, - 'owner' => { 403 => 'ownr', 548 => 'Owner' }, + 'overridelookvignette' => { 517 => 'OverrideLookVignette', 519 => 'OverrideLookVignette' }, + 'owner' => { 405 => 'ownr', 550 => 'Owner' }, 'ownerid' => { 136 => 0xbc }, - 'ownername' => { 15 => 0x10f, 68 => 0x9, 102 => 0x810, 124 => [0xa430,0xfde8], 161 => 'OwnerName', 512 => 'OwnerName', 522 => 'CameraOwnerName' }, + 'ownername' => { 15 => 0x10f, 68 => 0x9, 102 => 0x810, 124 => [0xa430,0xfde8], 161 => 'OwnerName', 514 => 'OwnerName', 524 => 'CameraOwnerName' }, 'padding' => { 124 => 0xea1c }, - 'pagecount' => { 534 => 'pageCount' }, - 'pageimage' => { 542 => [\'PageInfo','PageInfoImage'] }, - 'pageimageformat' => { 542 => [\'PageInfo','PageInfoFormat'] }, - 'pageimageheight' => { 542 => [\'PageInfo','PageInfoHeight'] }, - 'pageimagepagenumber' => { 542 => [\'PageInfo','PageInfoPageNumber'] }, - 'pageimagewidth' => { 542 => [\'PageInfo','PageInfoWidth'] }, - 'pageinfo' => { 542 => 'PageInfo' }, + 'pagecount' => { 536 => 'pageCount' }, + 'pageimage' => { 544 => [\'PageInfo','PageInfoImage'] }, + 'pageimageformat' => { 544 => [\'PageInfo','PageInfoFormat'] }, + 'pageimageheight' => { 544 => [\'PageInfo','PageInfoHeight'] }, + 'pageimagepagenumber' => { 544 => [\'PageInfo','PageInfoPageNumber'] }, + 'pageimagewidth' => { 544 => [\'PageInfo','PageInfoWidth'] }, + 'pageinfo' => { 544 => 'PageInfo' }, 'pagename' => { 124 => 0x11d }, 'pagenumber' => { 124 => 0x129 }, - 'pageprogressiondirection' => { 534 => 'pageProgressionDirection' }, - 'pagerange' => { 534 => 'pageRange' }, - 'paintbasedcorrectionmasks' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] }, - 'paintbasedcorrections' => { 515 => 'PaintBasedCorrections', 517 => 'PaintBasedCorrections' }, - 'paintcorrectionactive' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] }, - 'paintcorrectionamount' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] }, - 'paintcorrectionblacks2012' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'] }, - 'paintcorrectionbrightness' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] }, - 'paintcorrectionclarity' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] }, - 'paintcorrectionclarity2012' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] }, - 'paintcorrectioncontrast' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] }, - 'paintcorrectioncontrast2012' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] }, - 'paintcorrectioncorrectionname' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'] }, - 'paintcorrectioncorrectionsyncid' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'] }, - 'paintcorrectiondefringe' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] }, - 'paintcorrectiondehaze' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'] }, - 'paintcorrectionexposure' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] }, - 'paintcorrectionexposure2012' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] }, - 'paintcorrectionhighlights2012' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] }, - 'paintcorrectionhue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'] }, - 'paintcorrectionluminancenoise' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] }, - 'paintcorrectionmaskalpha' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] }, - 'paintcorrectionmaskangle' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] }, - 'paintcorrectionmaskbottom' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] }, - 'paintcorrectionmaskcentervalue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] }, - 'paintcorrectionmaskcenterweight' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] }, - 'paintcorrectionmaskdabs' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] }, - 'paintcorrectionmaskfeather' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] }, - 'paintcorrectionmaskflipped' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] }, - 'paintcorrectionmaskflow' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] }, - 'paintcorrectionmaskfullx' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] }, - 'paintcorrectionmaskfully' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] }, - 'paintcorrectionmaskinputdigest' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'] }, - 'paintcorrectionmaskleft' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] }, - 'paintcorrectionmaskmaskactive' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'] }, - 'paintcorrectionmaskmaskblendmode' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'] }, - 'paintcorrectionmaskmaskdigest' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'] }, - 'paintcorrectionmaskmaskinverted' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'] }, - 'paintcorrectionmaskmaskname' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'] }, - 'paintcorrectionmaskmasks' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'] }, - 'paintcorrectionmaskmasksalpha' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'] }, - 'paintcorrectionmaskmasksangle' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'] }, - 'paintcorrectionmaskmasksbottom' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'] }, - 'paintcorrectionmaskmaskscentervalue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'] }, - 'paintcorrectionmaskmaskscenterweight' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, - 'paintcorrectionmaskmasksdabs' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'] }, - 'paintcorrectionmaskmasksfeather' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'] }, - 'paintcorrectionmaskmasksflipped' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'] }, - 'paintcorrectionmaskmasksflow' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'] }, - 'paintcorrectionmaskmasksfullx' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'] }, - 'paintcorrectionmaskmasksfully' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'] }, - 'paintcorrectionmaskmasksinputdigest' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'] }, - 'paintcorrectionmaskmasksleft' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'] }, - 'paintcorrectionmaskmasksmaskactive' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'] }, - 'paintcorrectionmaskmasksmaskblendmode' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, - 'paintcorrectionmaskmasksmaskdigest' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, - 'paintcorrectionmaskmasksmaskinverted' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, - 'paintcorrectionmaskmasksmaskname' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'] }, - 'paintcorrectionmaskmasksmasksubtype' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, - 'paintcorrectionmaskmasksmasksyncid' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, - 'paintcorrectionmaskmasksmaskversion' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, - 'paintcorrectionmaskmasksmidpoint' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'] }, - 'paintcorrectionmaskmasksorigin' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'] }, - 'paintcorrectionmaskmasksperimetervalue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, - 'paintcorrectionmaskmasksradius' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'] }, - 'paintcorrectionmaskmasksreferencepoint' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, - 'paintcorrectionmaskmasksright' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'] }, - 'paintcorrectionmaskmasksroundness' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'] }, - 'paintcorrectionmaskmaskssizex' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'] }, - 'paintcorrectionmaskmaskssizey' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'] }, - 'paintcorrectionmaskmaskstop' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'] }, - 'paintcorrectionmaskmasksubtype' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'] }, - 'paintcorrectionmaskmasksvalue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'] }, - 'paintcorrectionmaskmasksversion' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'] }, - 'paintcorrectionmaskmaskswhat' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'] }, - 'paintcorrectionmaskmaskswholeimagearea' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, - 'paintcorrectionmaskmasksx' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'] }, - 'paintcorrectionmaskmasksy' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'] }, - 'paintcorrectionmaskmasksyncid' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'] }, - 'paintcorrectionmaskmaskszerox' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'] }, - 'paintcorrectionmaskmaskszeroy' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'] }, - 'paintcorrectionmaskmaskversion' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'] }, - 'paintcorrectionmaskmidpoint' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] }, - 'paintcorrectionmaskorigin' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'] }, - 'paintcorrectionmaskperimetervalue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] }, - 'paintcorrectionmaskradius' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] }, - 'paintcorrectionmaskrange' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, - 'paintcorrectionmaskrangeareamodels' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, - 'paintcorrectionmaskrangeareamodelscolorsampleinfo' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'paintcorrectionmaskrangeareamodelscomponents' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'paintcorrectionmaskrangecoloramount' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, - 'paintcorrectionmaskrangedepthfeather' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, - 'paintcorrectionmaskrangedepthmax' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, - 'paintcorrectionmaskrangedepthmin' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, - 'paintcorrectionmaskrangeinvert' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, - 'paintcorrectionmaskrangelumfeather' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, - 'paintcorrectionmaskrangeluminancedepthsampleinfo' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'paintcorrectionmaskrangelummax' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, - 'paintcorrectionmaskrangelummin' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, - 'paintcorrectionmaskrangelumrange' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, - 'paintcorrectionmaskrangesampletype' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, - 'paintcorrectionmaskrangetype' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, - 'paintcorrectionmaskrangeversion' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, - 'paintcorrectionmaskreferencepoint' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'] }, - 'paintcorrectionmaskright' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] }, - 'paintcorrectionmaskroundness' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] }, - 'paintcorrectionmasksizex' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] }, - 'paintcorrectionmasksizey' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] }, - 'paintcorrectionmasktop' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] }, - 'paintcorrectionmaskvalue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] }, - 'paintcorrectionmaskversion' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] }, - 'paintcorrectionmaskwhat' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] }, - 'paintcorrectionmaskwholeimagearea' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'] }, - 'paintcorrectionmaskx' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] }, - 'paintcorrectionmasky' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] }, - 'paintcorrectionmaskzerox' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] }, - 'paintcorrectionmaskzeroy' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] }, - 'paintcorrectionmoire' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] }, - 'paintcorrectionrangemask' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'] }, - 'paintcorrectionrangemaskareamodels' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'] }, - 'paintcorrectionrangemaskareamodelscolorsampleinfo' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'paintcorrectionrangemaskareamodelscomponents' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'paintcorrectionrangemaskcoloramount' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'] }, - 'paintcorrectionrangemaskdepthfeather' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, - 'paintcorrectionrangemaskdepthmax' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'] }, - 'paintcorrectionrangemaskdepthmin' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'] }, - 'paintcorrectionrangemaskinvert' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'] }, - 'paintcorrectionrangemasklumfeather' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'] }, - 'paintcorrectionrangemaskluminancedepthsampleinfo' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'paintcorrectionrangemasklummax' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'] }, - 'paintcorrectionrangemasklummin' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'] }, - 'paintcorrectionrangemasklumrange' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'] }, - 'paintcorrectionrangemasksampletype' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'] }, - 'paintcorrectionrangemasktype' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'] }, - 'paintcorrectionrangemaskversion' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'] }, - 'paintcorrectionsaturation' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'] }, - 'paintcorrectionshadows2012' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] }, - 'paintcorrectionsharpness' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] }, - 'paintcorrectiontemperature' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] }, - 'paintcorrectiontexture' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'] }, - 'paintcorrectiontint' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] }, - 'paintcorrectiontoninghue' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] }, - 'paintcorrectiontoningsaturation' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'] }, - 'paintcorrectionwhat' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] }, - 'paintcorrectionwhites2012' => { 515 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'], 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'] }, - 'panasonicdatetime' => { 353 => 0x0 }, - 'panasonicexifversion' => { 350 => 0x26 }, - 'panasonicimageheight' => { 350 => 0x4c }, - 'panasonicimagewidth' => { 350 => 0x4b }, - 'panasonicrawversion' => { 355 => 0x1 }, + 'pageprogressiondirection' => { 536 => 'pageProgressionDirection' }, + 'pagerange' => { 536 => 'pageRange' }, + 'paintbasedcorrectionmasks' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] }, + 'paintbasedcorrections' => { 517 => 'PaintBasedCorrections', 519 => 'PaintBasedCorrections' }, + 'paintcorrectionactive' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] }, + 'paintcorrectionamount' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] }, + 'paintcorrectionblacks2012' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBlacks2012'] }, + 'paintcorrectionbrightness' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] }, + 'paintcorrectionclarity' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] }, + 'paintcorrectionclarity2012' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] }, + 'paintcorrectioncontrast' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] }, + 'paintcorrectioncontrast2012' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] }, + 'paintcorrectioncorrectionname' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionName'] }, + 'paintcorrectioncorrectionsyncid' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionSyncID'] }, + 'paintcorrectiondefringe' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] }, + 'paintcorrectiondehaze' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDehaze'] }, + 'paintcorrectionexposure' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] }, + 'paintcorrectionexposure2012' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] }, + 'paintcorrectionhighlights2012' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] }, + 'paintcorrectionhue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHue'] }, + 'paintcorrectionluminancenoise' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] }, + 'paintcorrectionmaskalpha' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] }, + 'paintcorrectionmaskangle' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] }, + 'paintcorrectionmaskbottom' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] }, + 'paintcorrectionmaskcentervalue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] }, + 'paintcorrectionmaskcenterweight' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] }, + 'paintcorrectionmaskdabs' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] }, + 'paintcorrectionmaskfeather' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] }, + 'paintcorrectionmaskflipped' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] }, + 'paintcorrectionmaskflow' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] }, + 'paintcorrectionmaskfullx' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] }, + 'paintcorrectionmaskfully' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] }, + 'paintcorrectionmaskinputdigest' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksInputDigest'] }, + 'paintcorrectionmaskleft' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] }, + 'paintcorrectionmaskmaskactive' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskActive'] }, + 'paintcorrectionmaskmaskblendmode' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskBlendMode'] }, + 'paintcorrectionmaskmaskdigest' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskDigest'] }, + 'paintcorrectionmaskmaskinverted' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskInverted'] }, + 'paintcorrectionmaskmaskname' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskName'] }, + 'paintcorrectionmaskmasks' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasks'] }, + 'paintcorrectionmaskmasksalpha' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAlpha'] }, + 'paintcorrectionmaskmasksangle' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksAngle'] }, + 'paintcorrectionmaskmasksbottom' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksBottom'] }, + 'paintcorrectionmaskmaskscentervalue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterValue'] }, + 'paintcorrectionmaskmaskscenterweight' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksCenterWeight'] }, + 'paintcorrectionmaskmasksdabs' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksDabs'] }, + 'paintcorrectionmaskmasksfeather' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFeather'] }, + 'paintcorrectionmaskmasksflipped' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlipped'] }, + 'paintcorrectionmaskmasksflow' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFlow'] }, + 'paintcorrectionmaskmasksfullx' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullX'] }, + 'paintcorrectionmaskmasksfully' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksFullY'] }, + 'paintcorrectionmaskmasksinputdigest' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksInputDigest'] }, + 'paintcorrectionmaskmasksleft' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksLeft'] }, + 'paintcorrectionmaskmasksmaskactive' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskActive'] }, + 'paintcorrectionmaskmasksmaskblendmode' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskBlendMode'] }, + 'paintcorrectionmaskmasksmaskdigest' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskDigest'] }, + 'paintcorrectionmaskmasksmaskinverted' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskInverted'] }, + 'paintcorrectionmaskmasksmaskname' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskName'] }, + 'paintcorrectionmaskmasksmasksubtype' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSubType'] }, + 'paintcorrectionmaskmasksmasksyncid' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskSyncID'] }, + 'paintcorrectionmaskmasksmaskversion' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskVersion'] }, + 'paintcorrectionmaskmasksmidpoint' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMidpoint'] }, + 'paintcorrectionmaskmasksorigin' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksOrigin'] }, + 'paintcorrectionmaskmasksperimetervalue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksPerimeterValue'] }, + 'paintcorrectionmaskmasksradius' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRadius'] }, + 'paintcorrectionmaskmasksreferencepoint' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksReferencePoint'] }, + 'paintcorrectionmaskmasksright' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRight'] }, + 'paintcorrectionmaskmasksroundness' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksRoundness'] }, + 'paintcorrectionmaskmaskssizex' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeX'] }, + 'paintcorrectionmaskmaskssizey' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksSizeY'] }, + 'paintcorrectionmaskmaskstop' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksTop'] }, + 'paintcorrectionmaskmasksubtype' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSubType'] }, + 'paintcorrectionmaskmasksvalue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksMaskValue'] }, + 'paintcorrectionmaskmasksversion' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksVersion'] }, + 'paintcorrectionmaskmaskswhat' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWhat'] }, + 'paintcorrectionmaskmaskswholeimagearea' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksWholeImageArea'] }, + 'paintcorrectionmaskmasksx' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksX'] }, + 'paintcorrectionmaskmasksy' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksY'] }, + 'paintcorrectionmaskmasksyncid' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskSyncID'] }, + 'paintcorrectionmaskmaskszerox' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroX'] }, + 'paintcorrectionmaskmaskszeroy' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMasksZeroY'] }, + 'paintcorrectionmaskmaskversion' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskVersion'] }, + 'paintcorrectionmaskmidpoint' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] }, + 'paintcorrectionmaskorigin' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksOrigin'] }, + 'paintcorrectionmaskperimetervalue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] }, + 'paintcorrectionmaskradius' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] }, + 'paintcorrectionmaskrange' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMask'] }, + 'paintcorrectionmaskrangeareamodels' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModels'] }, + 'paintcorrectionmaskrangeareamodelscolorsampleinfo' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'paintcorrectionmaskrangeareamodelscomponents' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'paintcorrectionmaskrangecoloramount' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskColorAmount'] }, + 'paintcorrectionmaskrangedepthfeather' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthFeather'] }, + 'paintcorrectionmaskrangedepthmax' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMax'] }, + 'paintcorrectionmaskrangedepthmin' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskDepthMin'] }, + 'paintcorrectionmaskrangeinvert' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskInvert'] }, + 'paintcorrectionmaskrangelumfeather' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumFeather'] }, + 'paintcorrectionmaskrangeluminancedepthsampleinfo' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'paintcorrectionmaskrangelummax' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMax'] }, + 'paintcorrectionmaskrangelummin' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumMin'] }, + 'paintcorrectionmaskrangelumrange' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskLumRange'] }, + 'paintcorrectionmaskrangesampletype' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskSampleType'] }, + 'paintcorrectionmaskrangetype' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskType'] }, + 'paintcorrectionmaskrangeversion' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCorrectionRangeMaskVersion'] }, + 'paintcorrectionmaskreferencepoint' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksReferencePoint'] }, + 'paintcorrectionmaskright' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] }, + 'paintcorrectionmaskroundness' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] }, + 'paintcorrectionmasksizex' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] }, + 'paintcorrectionmasksizey' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] }, + 'paintcorrectionmasktop' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] }, + 'paintcorrectionmaskvalue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] }, + 'paintcorrectionmaskversion' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] }, + 'paintcorrectionmaskwhat' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] }, + 'paintcorrectionmaskwholeimagearea' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWholeImageArea'] }, + 'paintcorrectionmaskx' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] }, + 'paintcorrectionmasky' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] }, + 'paintcorrectionmaskzerox' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] }, + 'paintcorrectionmaskzeroy' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] }, + 'paintcorrectionmoire' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] }, + 'paintcorrectionrangemask' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMask'] }, + 'paintcorrectionrangemaskareamodels' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModels'] }, + 'paintcorrectionrangemaskareamodelscolorsampleinfo' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'paintcorrectionrangemaskareamodelscomponents' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'paintcorrectionrangemaskcoloramount' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskColorAmount'] }, + 'paintcorrectionrangemaskdepthfeather' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthFeather'] }, + 'paintcorrectionrangemaskdepthmax' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMax'] }, + 'paintcorrectionrangemaskdepthmin' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskDepthMin'] }, + 'paintcorrectionrangemaskinvert' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskInvert'] }, + 'paintcorrectionrangemasklumfeather' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumFeather'] }, + 'paintcorrectionrangemaskluminancedepthsampleinfo' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'paintcorrectionrangemasklummax' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMax'] }, + 'paintcorrectionrangemasklummin' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumMin'] }, + 'paintcorrectionrangemasklumrange' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskLumRange'] }, + 'paintcorrectionrangemasksampletype' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskSampleType'] }, + 'paintcorrectionrangemasktype' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskType'] }, + 'paintcorrectionrangemaskversion' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionRangeMaskVersion'] }, + 'paintcorrectionsaturation' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation'] }, + 'paintcorrectionshadows2012' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] }, + 'paintcorrectionsharpness' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] }, + 'paintcorrectiontemperature' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] }, + 'paintcorrectiontexture' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTexture'] }, + 'paintcorrectiontint' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] }, + 'paintcorrectiontoninghue' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] }, + 'paintcorrectiontoningsaturation' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningSaturation'] }, + 'paintcorrectionwhat' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] }, + 'paintcorrectionwhites2012' => { 517 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'], 519 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalWhites2012'] }, + 'panasonicdatetime' => { 355 => 0x0 }, + 'panasonicexifversion' => { 352 => 0x26 }, + 'panasonicimageheight' => { 352 => 0x4c }, + 'panasonicimagewidth' => { 352 => 0x4b }, + 'panasonicrawversion' => { 357 => 0x1 }, 'panasonictitle' => { 124 => 0xc6d2 }, 'panasonictitle2' => { 124 => 0xc6d3 }, 'panoramaangle' => { 132 => 0x1153 }, - 'panoramacropbottom' => { 458 => 0x7 }, - 'panoramacropleft' => { 458 => 0x4 }, - 'panoramacropright' => { 458 => 0x6 }, - 'panoramacroptop' => { 458 => 0x5 }, - 'panoramadirection' => { 76 => 0x5, 132 => 0x1154, 458 => 0x3 }, - 'panoramaframeheight' => { 458 => 0x9 }, + 'panoramacropbottom' => { 460 => 0x7 }, + 'panoramacropleft' => { 460 => 0x4 }, + 'panoramacropright' => { 460 => 0x6 }, + 'panoramacroptop' => { 460 => 0x5 }, + 'panoramadirection' => { 76 => 0x5, 132 => 0x1154, 460 => 0x3 }, + 'panoramaframeheight' => { 460 => 0x9 }, 'panoramaframenumber' => { 76 => 0x2 }, - 'panoramaframewidth' => { 458 => 0x8 }, - 'panoramafullheight' => { 458 => 0x2 }, - 'panoramafullwidth' => { 458 => 0x1 }, - 'panoramamode' => { 145 => 0x3c, 326 => 0x601 }, - 'panoramasize3d' => { 440 => 0x38 }, - 'panoramasourceheight' => { 458 => 0xb }, - 'panoramasourcewidth' => { 458 => 0xa }, + 'panoramaframewidth' => { 460 => 0x8 }, + 'panoramafullheight' => { 460 => 0x2 }, + 'panoramafullwidth' => { 460 => 0x1 }, + 'panoramamode' => { 145 => 0x3c, 328 => 0x601 }, + 'panoramasize3d' => { 442 => 0x38 }, + 'panoramasourceheight' => { 460 => 0xb }, + 'panoramasourcewidth' => { 460 => 0xa }, 'panoramicstitchcameramotion' => { 181 => 'PanoramicStitchCameraMotion', 182 => 0x1 }, 'panoramicstitchmaptype' => { 181 => 'PanoramicStitchMapType', 182 => 0x2 }, 'panoramicstitchphi0' => { 181 => 'PanoramicStitchPhi0', 182 => 0x5 }, @@ -5444,39 +5447,39 @@ my %tagLookup = ( 'panoramicstitchtheta0' => { 181 => 'PanoramicStitchTheta0', 182 => 0x3 }, 'panoramicstitchtheta1' => { 181 => 'PanoramicStitchTheta1', 182 => 0x4 }, 'panoramicstitchversion' => { 182 => 0x0 }, - 'pantry' => { 545 => 'Pantry' }, - 'pantryinstanceid' => { 545 => [\'Pantry','PantryInstanceID'] }, - 'parallax' => { 132 => 0xb211, 325 => 0x28 }, - 'parameters' => { 339 => 'parameters' }, - 'parametricdarks' => { 515 => 'ParametricDarks', 517 => 'ParametricDarks' }, - 'parametrichighlights' => { 515 => 'ParametricHighlights', 517 => 'ParametricHighlights' }, - 'parametrichighlightsplit' => { 515 => 'ParametricHighlightSplit', 517 => 'ParametricHighlightSplit' }, - 'parametriclights' => { 515 => 'ParametricLights', 517 => 'ParametricLights' }, - 'parametricmidtonesplit' => { 515 => 'ParametricMidtoneSplit', 517 => 'ParametricMidtoneSplit' }, - 'parametricshadows' => { 515 => 'ParametricShadows', 517 => 'ParametricShadows' }, - 'parametricshadowsplit' => { 515 => 'ParametricShadowSplit', 517 => 'ParametricShadowSplit' }, + 'pantry' => { 547 => 'Pantry' }, + 'pantryinstanceid' => { 547 => [\'Pantry','PantryInstanceID'] }, + 'parallax' => { 132 => 0xb211, 327 => 0x28 }, + 'parameters' => { 341 => 'parameters' }, + 'parametricdarks' => { 517 => 'ParametricDarks', 519 => 'ParametricDarks' }, + 'parametrichighlights' => { 517 => 'ParametricHighlights', 519 => 'ParametricHighlights' }, + 'parametrichighlightsplit' => { 517 => 'ParametricHighlightSplit', 519 => 'ParametricHighlightSplit' }, + 'parametriclights' => { 517 => 'ParametricLights', 519 => 'ParametricLights' }, + 'parametricmidtonesplit' => { 517 => 'ParametricMidtoneSplit', 519 => 'ParametricMidtoneSplit' }, + 'parametricshadows' => { 517 => 'ParametricShadows', 519 => 'ParametricShadows' }, + 'parametricshadowsplit' => { 517 => 'ParametricShadowSplit', 519 => 'ParametricShadowSplit' }, 'parentalrating' => { 184 => 'WM/ParentalRating' }, - 'parentid' => { 529 => 'parentId' }, - 'parentmediaeventid' => { 505 => 'ParentMediaEventID' }, - 'parentmeid' => { 505 => 'ParentMEID' }, - 'parentproductid' => { 403 => '@ppi' }, - 'parentreference1' => { 527 => [\'TagStructure','TagStructureParentReference'] }, - 'parentreference2' => { 527 => [\'TagStructure','TagStructureSubLabelsParentReference'] }, - 'parentreference3' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] }, - 'parentreference4' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentreference5' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentreference6' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, - 'parentshorttitle' => { 403 => '@PST' }, - 'parenttitle' => { 403 => '@pti' }, + 'parentid' => { 531 => 'parentId' }, + 'parentmediaeventid' => { 507 => 'ParentMediaEventID' }, + 'parentmeid' => { 507 => 'ParentMEID' }, + 'parentproductid' => { 405 => '@ppi' }, + 'parentreference1' => { 529 => [\'TagStructure','TagStructureParentReference'] }, + 'parentreference2' => { 529 => [\'TagStructure','TagStructureSubLabelsParentReference'] }, + 'parentreference3' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] }, + 'parentreference4' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentreference5' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentreference6' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] }, + 'parentshorttitle' => { 405 => '@PST' }, + 'parenttitle' => { 405 => '@pti' }, 'partialactivecols1' => { 143 => 0x17e8 }, 'partialactivecols2' => { 143 => 0x17f2 }, 'partialactiverows1' => { 143 => 0x17fc }, 'partialactiverows2' => { 143 => 0x1806 }, - 'partofcompilation' => { 544 => 'partOfCompilation' }, - 'patientbirthdate' => { 492 => 'PatientDOB' }, - 'patientid' => { 492 => 'PatientID' }, - 'patientname' => { 492 => 'PatientName' }, - 'patientsex' => { 492 => 'PatientSex' }, + 'partofcompilation' => { 546 => 'partOfCompilation' }, + 'patientbirthdate' => { 494 => 'PatientDOB' }, + 'patientid' => { 494 => 'PatientID' }, + 'patientname' => { 494 => 'PatientName' }, + 'patientsex' => { 494 => 'PatientSex' }, 'patternareaheight' => { 143 => 0x963 }, 'patternareawidth' => { 143 => 0x962 }, 'patterncorrectionfactorscale' => { 143 => 0x969 }, @@ -5488,52 +5491,52 @@ my %tagLookup = ( 'patternimagerwidth' => { 143 => 0x960 }, 'patternx' => { 143 => 0x966 }, 'patterny' => { 143 => 0x967 }, - 'pdfversion' => { 531 => 'PDFVersion' }, - 'pentaximagesize' => { 386 => 0x9 }, - 'pentaxmodelid' => { 365 => 0x0, 386 => 0x5 }, - 'pentaxmodeltype' => { 386 => 0x1 }, - 'pentaxversion' => { 386 => 0x0 }, - 'people' => { 495 => 'People', 508 => 'People' }, + 'pdfversion' => { 533 => 'PDFVersion' }, + 'pentaximagesize' => { 388 => 0x9 }, + 'pentaxmodelid' => { 367 => 0x0, 388 => 0x5 }, + 'pentaxmodeltype' => { 388 => 0x1 }, + 'pentaxversion' => { 388 => 0x0 }, + 'people' => { 497 => 'People', 510 => 'People' }, 'perchannelblacklevel' => { 43 => 0x157, 44 => 0x16b, 45 => 0x17f, 47 => 0xc4, 48 => [0x2b4,0x2cb,0x2cf], 49 => [0x108,0x14d], 50 => 0x1df, 51 => [0x1f8,0x2d8], 52 => [0x22c,0x30a], 53 => 0x149 }, - 'performer' => { 403 => 'perf', 411 => 'perf' }, - 'performerkeywords' => { 411 => "\xa9prk" }, - 'performers' => { 411 => "\xa9prf" }, - 'performerurl' => { 411 => "\xa9prl" }, + 'performer' => { 405 => 'perf', 413 => 'perf' }, + 'performerkeywords' => { 413 => "\xa9prk" }, + 'performers' => { 413 => "\xa9prf" }, + 'performerurl' => { 413 => "\xa9prl" }, 'period' => { 184 => 'WM/Period' }, - 'peripheralillumcentralradius' => { 489 => 0x8030 }, - 'peripheralillumcentralvalue' => { 489 => 0x8031 }, + 'peripheralillumcentralradius' => { 491 => 0x8030 }, + 'peripheralillumcentralvalue' => { 491 => 0x8031 }, 'peripheralillumination' => { 108 => 0x20702, 114 => 0x68 }, - 'peripheralilluminationcorr' => { 66 => 0x1, 375 => 0x2 }, + 'peripheralilluminationcorr' => { 66 => 0x1, 377 => 0x2 }, 'peripheralilluminationon' => { 108 => '0x20702.0', 114 => 0x64 }, - 'peripheralillumperiphvalue' => { 489 => 0x8032 }, + 'peripheralillumperiphvalue' => { 491 => 0x8032 }, 'peripherallighting' => { 83 => 0x2, 132 => 0x3804 }, 'peripherallightingsetting' => { 84 => 0x5 }, 'peripherallightingvalue' => { 83 => 0x6 }, - 'permissions' => { 537 => 'permissions' }, - 'permits' => { 513 => 'permits' }, - 'person' => { 534 => 'person' }, - 'personality' => { 505 => 'Personality' }, - 'personheard' => { 529 => 'PersonHeard' }, - 'personheardidentifier' => { 529 => [\'PersonHeard','PersonHeardIdentifier'] }, - 'personheardname' => { 529 => [\'PersonHeard','PersonHeardName'] }, - 'personinimage' => { 529 => 'PersonInImage' }, - 'personinimagecharacteristic' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] }, - 'personinimagecvtermcvid' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] }, - 'personinimagecvtermid' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] }, - 'personinimagecvtermname' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] }, - 'personinimagecvtermrefinedabout' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] }, - 'personinimagedescription' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] }, - 'personinimageid' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] }, - 'personinimagename' => { 529 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] }, - 'personinimagewdetails' => { 529 => 'PersonInImageWDetails' }, - 'perspectiveaspect' => { 515 => 'PerspectiveAspect', 517 => 'PerspectiveAspect' }, - 'perspectivehorizontal' => { 515 => 'PerspectiveHorizontal', 517 => 'PerspectiveHorizontal' }, - 'perspectiverotate' => { 515 => 'PerspectiveRotate', 517 => 'PerspectiveRotate' }, - 'perspectivescale' => { 515 => 'PerspectiveScale', 517 => 'PerspectiveScale' }, - 'perspectiveupright' => { 515 => 'PerspectiveUpright', 517 => 'PerspectiveUpright' }, - 'perspectivevertical' => { 515 => 'PerspectiveVertical', 517 => 'PerspectiveVertical' }, - 'perspectivex' => { 515 => 'PerspectiveX', 517 => 'PerspectiveX' }, - 'perspectivey' => { 515 => 'PerspectiveY', 517 => 'PerspectiveY' }, + 'permissions' => { 539 => 'permissions' }, + 'permits' => { 515 => 'permits' }, + 'person' => { 536 => 'person' }, + 'personality' => { 507 => 'Personality' }, + 'personheard' => { 531 => 'PersonHeard' }, + 'personheardidentifier' => { 531 => [\'PersonHeard','PersonHeardIdentifier'] }, + 'personheardname' => { 531 => [\'PersonHeard','PersonHeardName'] }, + 'personinimage' => { 531 => 'PersonInImage' }, + 'personinimagecharacteristic' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] }, + 'personinimagecvtermcvid' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] }, + 'personinimagecvtermid' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] }, + 'personinimagecvtermname' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] }, + 'personinimagecvtermrefinedabout' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] }, + 'personinimagedescription' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] }, + 'personinimageid' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] }, + 'personinimagename' => { 531 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] }, + 'personinimagewdetails' => { 531 => 'PersonInImageWDetails' }, + 'perspectiveaspect' => { 517 => 'PerspectiveAspect', 519 => 'PerspectiveAspect' }, + 'perspectivehorizontal' => { 517 => 'PerspectiveHorizontal', 519 => 'PerspectiveHorizontal' }, + 'perspectiverotate' => { 517 => 'PerspectiveRotate', 519 => 'PerspectiveRotate' }, + 'perspectivescale' => { 517 => 'PerspectiveScale', 519 => 'PerspectiveScale' }, + 'perspectiveupright' => { 517 => 'PerspectiveUpright', 519 => 'PerspectiveUpright' }, + 'perspectivevertical' => { 517 => 'PerspectiveVertical', 519 => 'PerspectiveVertical' }, + 'perspectivex' => { 517 => 'PerspectiveX', 519 => 'PerspectiveX' }, + 'perspectivey' => { 517 => 'PerspectiveY', 519 => 'PerspectiveY' }, 'pf0customfuncregistration' => { 97 => 0x1 }, 'pf10retainprogramshift' => { 97 => 0xb }, 'pf13drivepriority' => { 97 => 0xe }, @@ -5590,120 +5593,121 @@ my %tagLookup = ( 'phasedetectaf' => { 198 => 0x6 }, 'phonenumber' => { 162 => 'Phone' }, 'photoeffect' => { 36 => 0x28 }, - 'photoeffecthistoryxml' => { 299 => 0xe9651831 }, - 'photoeffects' => { 299 => 0xab5eca5e }, - 'photoeffectsblue' => { 301 => 0x8 }, - 'photoeffectsgreen' => { 301 => 0x6 }, - 'photoeffectsred' => { 301 => 0x4 }, - 'photoeffectstype' => { 301 => 0x0 }, + 'photoeffecthistoryxml' => { 300 => 0xe9651831 }, + 'photoeffects' => { 300 => 0xab5eca5e }, + 'photoeffectsblue' => { 302 => 0x8 }, + 'photoeffectsgreen' => { 302 => 0x6 }, + 'photoeffectsred' => { 302 => 0x4 }, + 'photoeffectstype' => { 302 => 0x0 }, 'photographer' => { 124 => 0xa437 }, - 'photographicsensitivity' => { 522 => 'PhotographicSensitivity' }, + 'photographicsensitivity' => { 524 => 'PhotographicSensitivity' }, 'photoidentifier' => { 1 => 0x2b }, - 'photoinfoplayback' => { 306 => '17.6', 315 => '33.6' }, - 'photometricinterpretation' => { 124 => 0x106, 540 => 'PhotometricInterpretation' }, + 'photoinfoplayback' => { 307 => '17.6', 316 => '33.6' }, + 'photometricinterpretation' => { 124 => 0x106, 542 => 'PhotometricInterpretation' }, 'photosappfeatureflags' => { 1 => 0x1f }, - 'photoshootingmenubank' => { 246 => 0x11e, 247 => 0x11e, 248 => 0x112, 249 => 0x122, 250 => 0x122, 251 => 0x24, 269 => 0x0 }, - 'photoshootingmenubankimagearea' => { 244 => 0x6dd, 246 => 0x144, 247 => 0x144, 248 => 0x134, 249 => 0x148, 250 => 0x148, 269 => '7.1' }, - 'photoshopbgrthumbnail' => { 400 => 0x409 }, - 'photoshopquality' => { 399 => 0x0 }, - 'photoshopthumbnail' => { 400 => 0x40c }, - 'photostyle' => { 350 => 0x89 }, - 'picasawebgphotoid' => { 520 => 'picasawebGPhotoId' }, - 'pick' => { 544 => 'pick' }, - 'picklabel' => { 520 => 'PickLabel' }, - 'pictinfo' => { 427 => 0x208 }, - 'picturecontrol' => { 299 => 0xe2173c47 }, - 'picturecontrolactive' => { 302 => 0x0 }, - 'picturecontroladjust' => { 257 => 0x30, 258 => 0x30, 259 => 0x36 }, - 'picturecontrolbase' => { 257 => 0x18, 258 => 0x18, 259 => 0x1c }, + 'photoshootingmenubank' => { 247 => 0x11e, 248 => 0x11e, 249 => 0x112, 250 => 0x122, 251 => 0x122, 252 => 0x24, 270 => 0x0 }, + 'photoshootingmenubankimagearea' => { 244 => 0x6dd, 247 => 0x144, 248 => 0x144, 249 => 0x134, 250 => 0x148, 251 => 0x148, 270 => '7.1' }, + 'photoshopbgrthumbnail' => { 402 => 0x409 }, + 'photoshopquality' => { 401 => 0x0 }, + 'photoshopthumbnail' => { 402 => 0x40c }, + 'photostyle' => { 352 => 0x89 }, + 'picasawebgphotoid' => { 522 => 'picasawebGPhotoId' }, + 'pick' => { 546 => 'pick' }, + 'picklabel' => { 522 => 'PickLabel' }, + 'pictinfo' => { 429 => 0x208 }, + 'picturecontrol' => { 300 => 0xe2173c47 }, + 'picturecontrolactive' => { 303 => 0x0 }, + 'picturecontroladjust' => { 258 => 0x30, 259 => 0x30, 260 => 0x36 }, + 'picturecontrolbase' => { 258 => 0x18, 259 => 0x18, 260 => 0x1c }, 'picturecontroldata' => { 241 => [0xbd,0x23] }, - 'picturecontrolmode' => { 302 => 0x13 }, - 'picturecontrolname' => { 257 => 0x4, 258 => 0x4, 259 => 0x8 }, - 'picturecontrolquickadjust' => { 257 => 0x31, 258 => 0x31, 259 => 0x37 }, - 'pictureeffect' => { 452 => 0x200e }, - 'pictureeffect2' => { 461 => 0x1163, 462 => 0x1167, 463 => 0x1143, 464 => 0x11bf, 465 => 0x119b, 466 => 0x1053, 467 => 0x24b, 468 => 0x24b, 469 => 0x23c, 484 => 0x46 }, + 'picturecontrolmode' => { 303 => 0x13 }, + 'picturecontrolname' => { 258 => 0x4, 259 => 0x4, 260 => 0x8 }, + 'picturecontrolquickadjust' => { 258 => 0x31, 259 => 0x31, 260 => 0x37 }, + 'pictureeffect' => { 454 => 0x200e }, + 'pictureeffect2' => { 463 => 0x1163, 464 => 0x1167, 465 => 0x1143, 466 => 0x11bf, 467 => 0x119b, 468 => 0x1053, 469 => 0x24b, 470 => 0x24b, 471 => 0x23c, 486 => 0x46 }, 'picturefinish' => { 187 => 0x71 }, - 'picturemode' => { 132 => 0x1031, 326 => 0x520, 386 => [0xb,0x33], 428 => 0x3d }, - 'picturemode2' => { 366 => 0x0 }, - 'picturemodebwfilter' => { 326 => 0x525 }, - 'picturemodecontrast' => { 326 => 0x523 }, - 'picturemodeeffect' => { 326 => 0x52d }, - 'picturemodehue' => { 326 => 0x522 }, - 'picturemodesaturation' => { 326 => 0x521 }, - 'picturemodesharpness' => { 326 => 0x524 }, - 'picturemodetone' => { 326 => 0x526 }, - 'pictureprofile' => { 461 => [0x115e,0x115f], 462 => [0x1162,0x1163], 463 => [0x113e,0x113f], 464 => [0x11ba,0x11bb], 465 => [0x1196,0x1197], 466 => [0x104e,0x104f], 467 => [0x246,0x247], 468 => [0x246,0x247], 469 => [0x237,0x238] }, + 'picturemode' => { 132 => 0x1031, 328 => 0x520, 388 => [0xb,0x33], 430 => 0x3d }, + 'picturemode2' => { 368 => 0x0 }, + 'picturemodebwfilter' => { 328 => 0x525 }, + 'picturemodecontrast' => { 328 => 0x523 }, + 'picturemodeeffect' => { 328 => 0x52d }, + 'picturemodehue' => { 328 => 0x522 }, + 'picturemodesaturation' => { 328 => 0x521 }, + 'picturemodesharpness' => { 328 => 0x524 }, + 'picturemodetone' => { 328 => 0x526 }, + 'pictureprofile' => { 463 => [0x115e,0x115f], 464 => [0x1162,0x1163], 465 => [0x113e,0x113f], 466 => [0x11ba,0x11bb], 467 => [0x1196,0x1197], 468 => [0x104e,0x104f], 469 => [0x246,0x247], 470 => [0x246,0x247], 471 => [0x237,0x238] }, 'picturestyle' => { 8 => [0x4b,0x51], 9 => 0xf4, 10 => 0x6c, 11 => 0x86, 12 => 0x73, 16 => 0xab, 17 => 0xa7, 18 => 0xb0, 19 => 0x6c, 20 => 0xa7, 21 => 0xf4, 22 => 0xb3, 24 => 0xf4, 25 => 0xfa, 27 => 0x169, 78 => 0xa, 108 => 0x20301, 114 => 0x2 }, 'picturestylepc' => { 68 => 0x4009 }, 'picturestyleuserdef' => { 68 => 0x4008 }, - 'picturewizard' => { 425 => 0x21 }, - 'picturewizardcolor' => { 424 => 0x1 }, - 'picturewizardcontrast' => { 424 => 0x4 }, - 'picturewizardmode' => { 424 => 0x0 }, - 'picturewizardsaturation' => { 424 => 0x2 }, - 'picturewizardsharpness' => { 424 => 0x3 }, + 'picturewizard' => { 427 => 0x21 }, + 'picturewizardcolor' => { 426 => 0x1 }, + 'picturewizardcontrast' => { 426 => 0x4 }, + 'picturewizardmode' => { 426 => 0x0 }, + 'picturewizardsaturation' => { 426 => 0x2 }, + 'picturewizardsharpness' => { 426 => 0x3 }, 'pipelineversion' => { 181 => 'PipelineVersion' }, - 'pitch' => { 120 => 0x6, 307 => '4.1', 319 => '4.1', 411 => ['ptch',"\xa9fpt"] }, - 'pitchangle' => { 65 => 0x5, 255 => 0x4, 326 => 0x904, 340 => 'PitchAngle', 350 => 0x91, 384 => 0x2, 385 => 0x5, 423 => 0x1 }, - 'pitchshift' => { 405 => 'player.movie.audio.pitchshift' }, - 'pixelaspectratio' => { 404 => 'pasp' }, + 'pitch' => { 120 => 0x6, 308 => '4.1', 320 => '4.1', 413 => ['ptch',"\xa9fpt"] }, + 'pitchangle' => { 65 => 0x5, 256 => 0x4, 328 => 0x904, 342 => 'PitchAngle', 352 => 0x91, 386 => 0x2, 387 => 0x5, 425 => 0x1 }, + 'pitchshift' => { 407 => 'player.movie.audio.pitchshift' }, + 'pixelaspectratio' => { 406 => 'pasp' }, 'pixelclockfrequency' => { 143 => 0x40b }, 'pixelcorrectionoffset' => { 143 => 0x972 }, 'pixelcorrectionscale' => { 143 => 0x971 }, 'pixelscale' => { 124 => 0x830e }, - 'pixelshiftdelay' => { 247 => 0x802 }, - 'pixelshiftinfo' => { 452 => 0x202f }, - 'pixelshiftnumbershots' => { 247 => 0x800 }, + 'pixelshiftdelay' => { 245 => 0x38c, 248 => 0x802 }, + 'pixelshiftinfo' => { 454 => 0x202f }, + 'pixelshiftinterval' => { 245 => 0x38e }, + 'pixelshiftnumbershots' => { 245 => 0x38a, 248 => 0x800 }, 'pixelshiftoffset' => { 132 => 0x1106 }, - 'pixelshiftresolution' => { 387 => 0x0 }, - 'pixelshiftshooting' => { 247 => 0x7fe }, + 'pixelshiftresolution' => { 389 => 0x0 }, + 'pixelshiftshooting' => { 245 => 0x388, 248 => 0x7fe }, 'pixelshiftshots' => { 132 => 0x1105 }, - 'pixelsperunitx' => { 338 => 0x0 }, - 'pixelsperunity' => { 338 => 0x4 }, - 'pixelunits' => { 338 => 0x8 }, - 'planarconfiguration' => { 124 => 0x11c, 540 => 'PlanarConfiguration' }, - 'plane' => { 493 => [\'Planes','PlanesPlane'] }, - 'planeboundary' => { 493 => [\'Planes','PlanesPlaneBoundary'] }, - 'planeboundaryvertexcount' => { 493 => [\'Planes','PlanesPlaneBoundaryVertexCount'] }, - 'planeextentx' => { 493 => [\'Planes','PlanesPlaneExtentX'] }, - 'planeextentz' => { 493 => [\'Planes','PlanesPlaneExtentZ'] }, - 'planepose' => { 493 => [\'Planes','PlanesPlanePose'] }, - 'planeposepositionx' => { 493 => [\'Planes','PlanesPlanePosePositionX'] }, - 'planeposepositiony' => { 493 => [\'Planes','PlanesPlanePosePositionY'] }, - 'planeposepositionz' => { 493 => [\'Planes','PlanesPlanePosePositionZ'] }, - 'planeposerotationw' => { 493 => [\'Planes','PlanesPlanePoseRotationW'] }, - 'planeposerotationx' => { 493 => [\'Planes','PlanesPlanePoseRotationX'] }, - 'planeposerotationy' => { 493 => [\'Planes','PlanesPlanePoseRotationY'] }, - 'planeposerotationz' => { 493 => [\'Planes','PlanesPlanePoseRotationZ'] }, - 'planeposetimestamp' => { 493 => [\'Planes','PlanesPlanePoseTimestamp'] }, - 'planes' => { 493 => 'Planes' }, - 'planningref' => { 529 => 'PlanningRef' }, - 'planningrefidentifier' => { 529 => [\'PlanningRef','PlanningRefIdentifier'] }, - 'planningrefname' => { 529 => [\'PlanningRef','PlanningRefName'] }, - 'planningrefrole' => { 529 => [\'PlanningRef','PlanningRefRole'] }, - 'platenames' => { 549 => 'PlateNames' }, - 'platform' => { 534 => 'platform' }, - 'playallframes' => { 411 => 'AllF' }, - 'playbackbutton' => { 247 => 0x804, 250 => 0x808 }, - 'playbackbuttonplaybackmode' => { 247 => 0x80e, 250 => 0x814 }, - 'playbackflickdown' => { 322 => 0x159, 323 => 0x159, 324 => 0x171 }, - 'playbackflickup' => { 322 => 0x155, 323 => 0x155, 324 => 0x16d }, - 'playbackmenustime' => { 311 => '20.1', 312 => '21.1', 313 => '21.1' }, - 'playbackmonitorofftime' => { 306 => '25.2', 307 => '36.1', 309 => '36.1', 310 => '36.1', 314 => '35.1', 315 => '8.1', 316 => '35.1', 319 => '36.1', 320 => '36.1', 321 => '21.1', 322 => 0x33, 323 => 0x33, 324 => 0x33 }, - 'playbackzoom' => { 307 => '37.1' }, + 'pixelsperunitx' => { 340 => 0x0 }, + 'pixelsperunity' => { 340 => 0x4 }, + 'pixelunits' => { 340 => 0x8 }, + 'planarconfiguration' => { 124 => 0x11c, 542 => 'PlanarConfiguration' }, + 'plane' => { 495 => [\'Planes','PlanesPlane'] }, + 'planeboundary' => { 495 => [\'Planes','PlanesPlaneBoundary'] }, + 'planeboundaryvertexcount' => { 495 => [\'Planes','PlanesPlaneBoundaryVertexCount'] }, + 'planeextentx' => { 495 => [\'Planes','PlanesPlaneExtentX'] }, + 'planeextentz' => { 495 => [\'Planes','PlanesPlaneExtentZ'] }, + 'planepose' => { 495 => [\'Planes','PlanesPlanePose'] }, + 'planeposepositionx' => { 495 => [\'Planes','PlanesPlanePosePositionX'] }, + 'planeposepositiony' => { 495 => [\'Planes','PlanesPlanePosePositionY'] }, + 'planeposepositionz' => { 495 => [\'Planes','PlanesPlanePosePositionZ'] }, + 'planeposerotationw' => { 495 => [\'Planes','PlanesPlanePoseRotationW'] }, + 'planeposerotationx' => { 495 => [\'Planes','PlanesPlanePoseRotationX'] }, + 'planeposerotationy' => { 495 => [\'Planes','PlanesPlanePoseRotationY'] }, + 'planeposerotationz' => { 495 => [\'Planes','PlanesPlanePoseRotationZ'] }, + 'planeposetimestamp' => { 495 => [\'Planes','PlanesPlanePoseTimestamp'] }, + 'planes' => { 495 => 'Planes' }, + 'planningref' => { 531 => 'PlanningRef' }, + 'planningrefidentifier' => { 531 => [\'PlanningRef','PlanningRefIdentifier'] }, + 'planningrefname' => { 531 => [\'PlanningRef','PlanningRefName'] }, + 'planningrefrole' => { 531 => [\'PlanningRef','PlanningRefRole'] }, + 'platenames' => { 551 => 'PlateNames' }, + 'platform' => { 536 => 'platform' }, + 'playallframes' => { 413 => 'AllF' }, + 'playbackbutton' => { 248 => 0x804, 251 => 0x808 }, + 'playbackbuttonplaybackmode' => { 248 => 0x80e, 251 => 0x814 }, + 'playbackflickdown' => { 323 => 0x149, 324 => 0x159, 325 => 0x159, 326 => 0x171 }, + 'playbackflickup' => { 323 => 0x145, 324 => 0x155, 325 => 0x155, 326 => 0x16d }, + 'playbackmenustime' => { 312 => '20.1', 313 => '21.1', 314 => '21.1' }, + 'playbackmonitorofftime' => { 307 => '25.2', 308 => '36.1', 310 => '36.1', 311 => '36.1', 315 => '35.1', 316 => '8.1', 317 => '35.1', 320 => '36.1', 321 => '36.1', 322 => '21.1', 323 => 0x37, 324 => 0x33, 325 => 0x33, 326 => 0x33 }, + 'playbackzoom' => { 308 => '37.1' }, 'playdisplay' => { 189 => 0x4e }, - 'playerversion' => { 405 => 'player.version' }, - 'playgap' => { 403 => 'pgap' }, - 'playmode' => { 411 => 'SDLN' }, - 'playselection' => { 411 => 'SelO' }, - 'plusversion' => { 336 => 'Version' }, - 'pmversion' => { 398 => 'PMVersion' }, - 'pngwarning' => { 339 => 'Warning' }, - 'podcast' => { 403 => 'pcst' }, - 'podcasturl' => { 403 => 'purl' }, + 'playerversion' => { 407 => 'player.version' }, + 'playgap' => { 405 => 'pgap' }, + 'playmode' => { 413 => 'SDLN' }, + 'playselection' => { 413 => 'SelO' }, + 'plusversion' => { 338 => 'Version' }, + 'pmversion' => { 400 => 'PMVersion' }, + 'pngwarning' => { 341 => 'Warning' }, + 'podcast' => { 405 => 'pcst' }, + 'podcasturl' => { 405 => 'purl' }, 'poilevel' => { 240 => 0x8 }, - 'portraitimpressionbalance' => { 246 => 0x26e, 247 => 0x26e, 260 => 0xa0 }, - 'portraitnote' => { 497 => 'PortraitNote' }, + 'portraitimpressionbalance' => { 245 => 0x378, 247 => 0x26e, 248 => 0x26e, 261 => 0xa0 }, + 'portraitnote' => { 499 => 'PortraitNote' }, 'portraitoutputhighlightpoint' => { 114 => 0x1d }, 'portraitoutputshadowpoint' => { 114 => 0x1e }, 'portraitrawcolortone' => { 114 => 0x16 }, @@ -5716,113 +5720,113 @@ my %tagLookup = ( 'portraitrawshadowpoint' => { 114 => 0x1c }, 'portraitrawsharpness' => { 114 => 0x1a }, 'portraitrefiner' => { 118 => 0x302b }, - 'portraitrequest' => { 497 => 'PortraitRequest' }, + 'portraitrequest' => { 499 => 'PortraitRequest' }, 'portraitunsharpmaskfineness' => { 114 => 0x9a }, 'portraitunsharpmaskstrength' => { 114 => 0x98 }, 'portraitunsharpmaskthreshold' => { 114 => 0x9c }, - 'portraitversion' => { 497 => 'PortraitVersion' }, - 'pose' => { 493 => 'Pose' }, - 'poseheadingdegrees' => { 503 => 'PoseHeadingDegrees' }, - 'posepitchdegrees' => { 503 => 'PosePitchDegrees' }, - 'posepositionx' => { 493 => [\'Pose','PosePositionX'] }, - 'posepositiony' => { 493 => [\'Pose','PosePositionY'] }, - 'posepositionz' => { 493 => [\'Pose','PosePositionZ'] }, - 'poserolldegrees' => { 503 => 'PoseRollDegrees' }, - 'poserotationw' => { 493 => [\'Pose','PoseRotationW'] }, - 'poserotationx' => { 493 => [\'Pose','PoseRotationX'] }, - 'poserotationy' => { 493 => [\'Pose','PoseRotationY'] }, - 'poserotationz' => { 493 => [\'Pose','PoseRotationZ'] }, - 'posetimestamp' => { 493 => [\'Pose','PoseTimestamp'] }, - 'positiondescriptor' => { 533 => 'positionDescriptor' }, + 'portraitversion' => { 499 => 'PortraitVersion' }, + 'pose' => { 495 => 'Pose' }, + 'poseheadingdegrees' => { 505 => 'PoseHeadingDegrees' }, + 'posepitchdegrees' => { 505 => 'PosePitchDegrees' }, + 'posepositionx' => { 495 => [\'Pose','PosePositionX'] }, + 'posepositiony' => { 495 => [\'Pose','PosePositionY'] }, + 'posepositionz' => { 495 => [\'Pose','PosePositionZ'] }, + 'poserolldegrees' => { 505 => 'PoseRollDegrees' }, + 'poserotationw' => { 495 => [\'Pose','PoseRotationW'] }, + 'poserotationx' => { 495 => [\'Pose','PoseRotationX'] }, + 'poserotationy' => { 495 => [\'Pose','PoseRotationY'] }, + 'poserotationz' => { 495 => [\'Pose','PoseRotationZ'] }, + 'posetimestamp' => { 495 => [\'Pose','PoseTimestamp'] }, + 'positiondescriptor' => { 535 => 'positionDescriptor' }, 'postalcode' => { 166 => 'PostalCode' }, - 'postcropvignetteamount' => { 515 => 'PostCropVignetteAmount', 517 => 'PostCropVignetteAmount' }, - 'postcropvignettefeather' => { 515 => 'PostCropVignetteFeather', 517 => 'PostCropVignetteFeather' }, - 'postcropvignettehighlightcontrast' => { 515 => 'PostCropVignetteHighlightContrast', 517 => 'PostCropVignetteHighlightContrast' }, - 'postcropvignettemidpoint' => { 515 => 'PostCropVignetteMidpoint', 517 => 'PostCropVignetteMidpoint' }, - 'postcropvignetteroundness' => { 515 => 'PostCropVignetteRoundness', 517 => 'PostCropVignetteRoundness' }, - 'postcropvignettestyle' => { 515 => 'PostCropVignetteStyle', 517 => 'PostCropVignetteStyle' }, - 'postfocusmerging' => { 350 => 0xbf }, - 'postreleaseburstlength' => { 249 => 0x714, 250 => 0x784, 322 => 0x289 }, - 'potentialface1position' => { 448 => 0xb }, - 'potentialface2position' => { 448 => 0x15 }, - 'potentialface3position' => { 448 => 0x1f }, - 'potentialface4position' => { 448 => 0x29 }, - 'potentialface5position' => { 448 => 0x33 }, - 'potentialface6position' => { 448 => 0x3d }, - 'potentialface7position' => { 448 => 0x47 }, - 'potentialface8position' => { 448 => 0x51 }, - 'poweravailable' => { 364 => '0.2' }, - 'powersource' => { 364 => '0.1' }, + 'postcropvignetteamount' => { 517 => 'PostCropVignetteAmount', 519 => 'PostCropVignetteAmount' }, + 'postcropvignettefeather' => { 517 => 'PostCropVignetteFeather', 519 => 'PostCropVignetteFeather' }, + 'postcropvignettehighlightcontrast' => { 517 => 'PostCropVignetteHighlightContrast', 519 => 'PostCropVignetteHighlightContrast' }, + 'postcropvignettemidpoint' => { 517 => 'PostCropVignetteMidpoint', 519 => 'PostCropVignetteMidpoint' }, + 'postcropvignetteroundness' => { 517 => 'PostCropVignetteRoundness', 519 => 'PostCropVignetteRoundness' }, + 'postcropvignettestyle' => { 517 => 'PostCropVignetteStyle', 519 => 'PostCropVignetteStyle' }, + 'postfocusmerging' => { 352 => 0xbf }, + 'postreleaseburstlength' => { 250 => 0x714, 251 => 0x784, 324 => 0x289 }, + 'potentialface1position' => { 450 => 0xb }, + 'potentialface2position' => { 450 => 0x15 }, + 'potentialface3position' => { 450 => 0x1f }, + 'potentialface4position' => { 450 => 0x29 }, + 'potentialface5position' => { 450 => 0x33 }, + 'potentialface6position' => { 450 => 0x3d }, + 'potentialface7position' => { 450 => 0x47 }, + 'potentialface8position' => { 450 => 0x51 }, + 'poweravailable' => { 366 => '0.2' }, + 'powersource' => { 366 => '0.1' }, 'poweruptime' => { 241 => 0xb6 }, 'preaf' => { 131 => '0.2' }, - 'precaptureframes' => { 331 => 0x300 }, + 'precaptureframes' => { 333 => 0x300 }, 'predictor' => { 124 => 0x13d }, - 'preflashreturnstrength' => { 277 => 0x28a }, - 'prefs' => { 136 => 0xdd, 398 => 'Prefs' }, + 'preflashreturnstrength' => { 278 => 0x28a }, + 'prefs' => { 136 => 0xdd, 400 => 'Prefs' }, 'prereadfastresetcount' => { 143 => 0x187e }, - 'prereleaseburstlength' => { 249 => 0x712, 250 => 0x782, 322 => 0x287 }, - 'preservedfilename' => { 545 => 'PreservedFileName' }, + 'prereleaseburstlength' => { 250 => 0x712, 251 => 0x782, 324 => 0x287 }, + 'preservedfilename' => { 547 => 'PreservedFileName' }, 'preservedspecimen' => { 123 => 'PreservedSpecimen' }, 'preservedspecimenmaterialsampleid' => { 123 => [\'PreservedSpecimen','PreservedSpecimenMaterialSampleID'] }, - 'presettype' => { 515 => 'PresetType', 517 => 'PresetType' }, - 'presetwhitebalance' => { 189 => 0x24, 489 => 0x8002 }, - 'presetwhitebalanceadj' => { 489 => 0x8014 }, - 'pressure' => { 124 => 0x9402, 522 => 'Pressure' }, + 'presettype' => { 517 => 'PresetType', 519 => 'PresetType' }, + 'presetwhitebalance' => { 189 => 0x24, 491 => 0x8002 }, + 'presetwhitebalanceadj' => { 491 => 0x8014 }, + 'pressure' => { 124 => 0x9402, 524 => 'Pressure' }, 'previewapplicationname' => { 124 => 0xc716 }, 'previewapplicationversion' => { 124 => 0xc717 }, - 'previewbutton' => { 306 => ['14.1','15.1'], 307 => '15.1', 309 => '15.1', 310 => '15.1', 315 => '29.1', 316 => '14.1', 319 => '15.1', 320 => '15.1' }, - 'previewbuttonplusdials' => { 306 => ['14.2','15.2'], 307 => '15.2', 309 => '43.1', 310 => '43.1', 315 => '31.2', 319 => '43.1', 320 => '43.1' }, + 'previewbutton' => { 307 => ['14.1','15.1'], 308 => '15.1', 310 => '15.1', 311 => '15.1', 316 => '29.1', 317 => '14.1', 320 => '15.1', 321 => '15.1' }, + 'previewbuttonplusdials' => { 307 => ['14.2','15.2'], 308 => '15.2', 310 => '43.1', 311 => '43.1', 316 => '31.2', 320 => '43.1', 321 => '43.1' }, 'previewcolorspace' => { 124 => 0xc71a }, - 'previewcropbottom' => { 397 => 0xef }, - 'previewcropleft' => { 397 => 0xec }, - 'previewcropright' => { 397 => 0xee }, - 'previewcroptop' => { 397 => 0xed }, - 'previewdate' => { 409 => 0x0 }, + 'previewcropbottom' => { 399 => 0xef }, + 'previewcropleft' => { 399 => 0xec }, + 'previewcropright' => { 399 => 0xee }, + 'previewcroptop' => { 399 => 0xed }, + 'previewdate' => { 411 => 0x0 }, 'previewdatetime' => { 124 => 0xc71b }, - 'previewimage' => { 118 => 0x2000, 119 => 'Exif-PreviewImage', 125 => 'PreviewImage', 127 => 0x4, 171 => 'data', 191 => 0x81, 331 => 0x280, 348 => 0x300, 403 => 'snal', 411 => 'mcvr', 452 => 0x2001 }, - 'previewimageborders' => { 386 => 0x3e }, + 'previewimage' => { 118 => 0x2000, 119 => 'Exif-PreviewImage', 125 => 'PreviewImage', 127 => 0x4, 171 => 'data', 191 => 0x81, 333 => 0x280, 350 => 0x300, 405 => 'snal', 413 => 'mcvr', 454 => 0x2001 }, + 'previewimageborders' => { 388 => 0x3e }, 'previewimageheight' => { 77 => 0x4, 147 => 0xfa58 }, - 'previewimagelength' => { 77 => 0x2, 118 => 0x3, 124 => [0x117,0x202], 191 => 0x89, 261 => 0x202, 326 => 0x102, 331 => 0x1037, 386 => 0x3, 417 => 0x1e, 422 => 0x3, 428 => [0x1b,0x1d], 441 => 0x202 }, + 'previewimagelength' => { 77 => 0x2, 118 => 0x3, 124 => [0x117,0x202], 191 => 0x89, 262 => 0x202, 328 => 0x102, 333 => 0x1037, 388 => 0x3, 419 => 0x1e, 424 => 0x3, 430 => [0x1b,0x1d], 443 => 0x202 }, 'previewimagename' => { 171 => '1Name' }, - 'previewimagesize' => { 118 => 0x2, 152 => 0x2, 171 => 'ImageSize', 386 => 0x2, 428 => [0x1c,0x1e], 452 => 0xb02c, 489 => 0x9012 }, - 'previewimagestart' => { 77 => 0x5, 118 => 0x4, 124 => [0x111,0x201], 191 => 0x88, 261 => 0x201, 326 => 0x101, 331 => 0x1036, 386 => 0x4, 417 => 0x1c, 422 => 0x2, 428 => [0x1a,0x1c], 441 => 0x201 }, + 'previewimagesize' => { 118 => 0x2, 152 => 0x2, 171 => 'ImageSize', 388 => 0x2, 430 => [0x1c,0x1e], 454 => 0xb02c, 491 => 0x9012 }, + 'previewimagestart' => { 77 => 0x5, 118 => 0x4, 124 => [0x111,0x201], 191 => 0x88, 262 => 0x201, 328 => 0x101, 333 => 0x1036, 388 => 0x4, 419 => 0x1c, 424 => 0x2, 430 => [0x1a,0x1c], 443 => 0x201 }, 'previewimagetype' => { 171 => '0Type' }, - 'previewimagevalid' => { 326 => 0x100, 331 => 0x1035 }, + 'previewimagevalid' => { 328 => 0x100, 333 => 0x1035 }, 'previewimagewidth' => { 77 => 0x3, 147 => 0xfa57 }, 'previewquality' => { 77 => 0x1 }, 'previewsettingsdigest' => { 124 => 0xc719 }, 'previewsettingsname' => { 124 => 0xc718 }, 'primaryafpoint' => { 198 => [0x38,0x44,0x7,0x8] }, - 'primarychromaticities' => { 124 => 0x13f, 540 => 'PrimaryChromaticities' }, - 'primaryftp' => { 505 => 'PrimaryFTP' }, - 'primaryslot' => { 251 => 0x25, 269 => 0x2 }, + 'primarychromaticities' => { 124 => 0x13f, 542 => 'PrimaryChromaticities' }, + 'primaryftp' => { 507 => 'PrimaryFTP' }, + 'primaryslot' => { 252 => 0x25, 270 => 0x2 }, 'printim' => { 124 => 0xc4a5 }, - 'prioritysetinawb' => { 452 => 0x202b }, - 'prioritysetupshutterrelease' => { 189 => 0x1d, 438 => 0x28 }, - 'privatertkinfo' => { 507 => 'privateRTKInfo' }, + 'prioritysetinawb' => { 454 => 0x202b }, + 'prioritysetupshutterrelease' => { 189 => 0x1d, 440 => 0x28 }, + 'privatertkinfo' => { 509 => 'privateRTKInfo' }, 'processbordercolsleft' => { 143 => 0xc61 }, 'processbordercolsright' => { 143 => 0xc62 }, 'processborderrowsbottom' => { 143 => 0xc64 }, 'processborderrowstop' => { 143 => 0xc63 }, 'processingsoftware' => { 124 => 0xb }, - 'processversion' => { 515 => 'ProcessVersion', 517 => 'ProcessVersion' }, - 'producer' => { 184 => 'WM/Producer', 335 => 'Producer', 403 => "\xa9prd", 405 => 'producer', 411 => "\xa9prd", 531 => 'Producer' }, - 'producerkeywords' => { 411 => "\xa9pdk" }, - 'productcode' => { 534 => 'productCode' }, - 'productid' => { 137 => 0x32, 403 => 'prID', 533 => 'productID' }, - 'productidtype' => { 533 => 'productIDType' }, - 'productinimage' => { 529 => 'ProductInImage' }, - 'productinimagedescription' => { 529 => [\'ProductInImage','ProductInImageProductDescription'] }, - 'productinimagegtin' => { 529 => [\'ProductInImage','ProductInImageProductGTIN'] }, - 'productinimagename' => { 529 => [\'ProductInImage','ProductInImageProductName'] }, - 'productinimageproductid' => { 529 => [\'ProductInImage','ProductInImageProductId'] }, - 'productioncode' => { 365 => 0x2 }, - 'productorserviceconstraints' => { 336 => 'ProductOrServiceConstraints' }, - 'productversion' => { 403 => 'VERS' }, - 'profession' => { 534 => 'profession' }, - 'profile' => { 493 => [\'Profiles','ProfilesProfile'] }, + 'processversion' => { 517 => 'ProcessVersion', 519 => 'ProcessVersion' }, + 'producer' => { 184 => 'WM/Producer', 337 => 'Producer', 405 => "\xa9prd", 407 => 'producer', 413 => "\xa9prd", 533 => 'Producer' }, + 'producerkeywords' => { 413 => "\xa9pdk" }, + 'productcode' => { 536 => 'productCode' }, + 'productid' => { 137 => 0x32, 405 => 'prID', 535 => 'productID' }, + 'productidtype' => { 535 => 'productIDType' }, + 'productinimage' => { 531 => 'ProductInImage' }, + 'productinimagedescription' => { 531 => [\'ProductInImage','ProductInImageProductDescription'] }, + 'productinimagegtin' => { 531 => [\'ProductInImage','ProductInImageProductGTIN'] }, + 'productinimagename' => { 531 => [\'ProductInImage','ProductInImageProductName'] }, + 'productinimageproductid' => { 531 => [\'ProductInImage','ProductInImageProductId'] }, + 'productioncode' => { 367 => 0x2 }, + 'productorserviceconstraints' => { 338 => 'ProductOrServiceConstraints' }, + 'productversion' => { 405 => 'VERS' }, + 'profession' => { 536 => 'profession' }, + 'profile' => { 495 => [\'Profiles','ProfilesProfile'] }, 'profilecalibrationsig' => { 124 => 0xc6f4 }, - 'profilecameraindices' => { 493 => [\'Profiles','ProfilesProfileCameraIndices'] }, + 'profilecameraindices' => { 495 => [\'Profiles','ProfilesProfileCameraIndices'] }, 'profilecopyright' => { 124 => 0xc6fe }, 'profiledynamicrange' => { 124 => 0xcd47 }, 'profileembedpolicy' => { 124 => 0xc6fd }, @@ -5837,174 +5841,174 @@ my %tagLookup = ( 'profilelooktabledata' => { 124 => 0xc726 }, 'profilelooktabledims' => { 124 => 0xc725 }, 'profilelooktableencoding' => { 124 => 0xc7a4 }, - 'profilename' => { 124 => 0xc6f8, 337 => 'iCCP-name' }, - 'profiles' => { 493 => 'Profiles' }, + 'profilename' => { 124 => 0xc6f8, 339 => 'iCCP-name' }, + 'profiles' => { 495 => 'Profiles' }, 'profiletonecurve' => { 124 => 0xc6fc }, - 'profiletype' => { 493 => [\'Profiles','ProfilesProfileType'] }, - 'programiso' => { 350 => 0x3c }, - 'programline' => { 366 => '1.1' }, + 'profiletype' => { 495 => [\'Profiles','ProfilesProfileType'] }, + 'programiso' => { 352 => 0x3c }, + 'programline' => { 368 => '1.1' }, 'programmode' => { 194 => 0x5 }, 'programshift' => { 241 => 0xd }, 'programversion' => { 136 => 0x46 }, - 'prohibits' => { 513 => 'prohibits' }, - 'projectiontype' => { 503 => 'ProjectionType', 504 => 'ProjectionType' }, - 'projectname' => { 544 => 'projectName' }, - 'projectref' => { 544 => 'projectRef' }, - 'projectrefpath' => { 544 => [\'projectRef','projectRefPath'] }, - 'projectreftype' => { 544 => [\'projectRef','projectRefType'] }, + 'prohibits' => { 515 => 'prohibits' }, + 'projectiontype' => { 505 => 'ProjectionType', 506 => 'ProjectionType' }, + 'projectname' => { 546 => 'projectName' }, + 'projectref' => { 546 => 'projectRef' }, + 'projectrefpath' => { 546 => [\'projectRef','projectRefPath'] }, + 'projectreftype' => { 546 => [\'projectRef','projectRefType'] }, 'promotionurl' => { 184 => 'WM/PromotionURL' }, - 'propertyreleaseid' => { 336 => 'PropertyReleaseID' }, - 'propertyreleasestatus' => { 336 => 'PropertyReleaseStatus' }, + 'propertyreleaseid' => { 338 => 'PropertyReleaseID' }, + 'propertyreleasestatus' => { 338 => 'PropertyReleaseStatus' }, 'provider' => { 184 => 'WM/Provider' }, 'province-state' => { 136 => 0x5f }, - 'publicationdate' => { 534 => 'publicationDate' }, - 'publicationdatea-platform' => { 534 => [\'publicationDate','publicationDateA-platform'] }, - 'publicationdatedate' => { 534 => [\'publicationDate','publicationDateDate'] }, - 'publicationdisplaydate' => { 534 => 'publicationDisplayDate' }, - 'publicationdisplaydatea-platform' => { 534 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] }, - 'publicationdisplaydatedate' => { 534 => [\'publicationDisplayDate','publicationDisplayDateDate'] }, - 'publicationevent' => { 529 => 'PublicationEvent' }, - 'publicationeventdate' => { 529 => [\'PublicationEvent','PublicationEventDate'] }, - 'publicationeventidentifier' => { 529 => [\'PublicationEvent','PublicationEventIdentifier'] }, - 'publicationeventname' => { 529 => [\'PublicationEvent','PublicationEventName'] }, - 'publicationname' => { 534 => 'publicationName' }, - 'publisher' => { 184 => 'WM/Publisher', 403 => "\xa9pub", 405 => 'publisher', 518 => 'publisher' }, - 'publishingfrequency' => { 534 => 'publishingFrequency' }, - 'pulldown' => { 544 => 'pullDown' }, - 'purchasedate' => { 403 => 'purd' }, + 'publicationdate' => { 536 => 'publicationDate' }, + 'publicationdatea-platform' => { 536 => [\'publicationDate','publicationDateA-platform'] }, + 'publicationdatedate' => { 536 => [\'publicationDate','publicationDateDate'] }, + 'publicationdisplaydate' => { 536 => 'publicationDisplayDate' }, + 'publicationdisplaydatea-platform' => { 536 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] }, + 'publicationdisplaydatedate' => { 536 => [\'publicationDisplayDate','publicationDisplayDateDate'] }, + 'publicationevent' => { 531 => 'PublicationEvent' }, + 'publicationeventdate' => { 531 => [\'PublicationEvent','PublicationEventDate'] }, + 'publicationeventidentifier' => { 531 => [\'PublicationEvent','PublicationEventIdentifier'] }, + 'publicationeventname' => { 531 => [\'PublicationEvent','PublicationEventName'] }, + 'publicationname' => { 536 => 'publicationName' }, + 'publisher' => { 184 => 'WM/Publisher', 405 => "\xa9pub", 407 => 'publisher', 520 => 'publisher' }, + 'publishingfrequency' => { 536 => 'publishingFrequency' }, + 'pulldown' => { 546 => 'pullDown' }, + 'purchasedate' => { 405 => 'purd' }, 'purplehsl' => { 108 => 0x20916 }, - 'pxshiftperiphedgenr' => { 489 => 0x9013 }, - 'pxshiftperiphedgenrvalue' => { 489 => 0x9014 }, - 'quality' => { 0 => 0x1, 36 => 0x3, 117 => 0x2, 118 => 0x3002, 132 => 0x1000, 145 => 0x9, 241 => 0x4, 288 => 0x3, 331 => 0x201, 345 => 0x300, 386 => 0x8, 393 => 0x2, 428 => 0x16, 438 => 0x56, 439 => 0x56, 440 => 0xb, 452 => [0x102,0x202e] }, - 'quality2' => { 461 => 0x1170, 462 => 0x1174, 463 => 0x1150, 465 => 0x11a8, 466 => 0x1060, 467 => 0x258, 468 => 0x258, 469 => 0x247, 475 => 0x29, 476 => 0x25, 477 => 0x2a }, - 'qualitybutton' => { 323 => 0x17d, 324 => 0x195 }, - 'qualitybuttonplaybackmode' => { 323 => 0x1bf, 324 => 0x1d7 }, + 'pxshiftperiphedgenr' => { 491 => 0x9013 }, + 'pxshiftperiphedgenrvalue' => { 491 => 0x9014 }, + 'quality' => { 0 => 0x1, 36 => 0x3, 117 => 0x2, 118 => 0x3002, 132 => 0x1000, 145 => 0x9, 241 => 0x4, 289 => 0x3, 333 => 0x201, 347 => 0x300, 388 => 0x8, 395 => 0x2, 430 => 0x16, 440 => 0x56, 441 => 0x56, 442 => 0xb, 454 => [0x102,0x202e] }, + 'quality2' => { 463 => 0x1170, 464 => 0x1174, 465 => 0x1150, 467 => 0x11a8, 468 => 0x1060, 469 => 0x258, 470 => 0x258, 471 => 0x247, 477 => 0x29, 478 => 0x25, 479 => 0x2a }, + 'qualitybutton' => { 325 => 0x17d, 326 => 0x195 }, + 'qualitybuttonplaybackmode' => { 325 => 0x1bf, 326 => 0x1d7 }, 'qualityhint' => { 1 => 0x1a }, 'qualitymode' => { 118 => 0x8 }, 'quantizationmethod' => { 138 => 0x78 }, - 'quickadjust' => { 302 => 0x2a }, + 'quickadjust' => { 303 => 0x2a }, 'quickcontroldialinmeter' => { 89 => 0x703 }, - 'quickfix' => { 299 => 0x416391c6 }, - 'quickshot' => { 427 => 0x213 }, + 'quickfix' => { 300 => 0x416391c6 }, + 'quickshot' => { 429 => 0x213 }, 'quiettime' => { 143 => 0x188a }, 'radialdistortioncoefficient1' => { 216 => 0x14 }, 'radialdistortioncoefficient2' => { 216 => 0x1c }, 'radialdistortioncoefficient3' => { 216 => 0x24 }, - 'rads' => { 411 => 'rads' }, - 'rangefinder' => { 311 => '4.1', 312 => '5.1', 313 => '5.1' }, - 'rangemask' => { 515 => 'RangeMaskMapInfo', 517 => 'RangeMaskMapInfo' }, - 'rangemaskmapinfo' => { 515 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'], 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'] }, - 'rangemaskmapinfolabmax' => { 515 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'], 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'] }, - 'rangemaskmapinfolabmin' => { 515 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'], 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'] }, - 'rangemaskmapinfolumeq' => { 515 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'], 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'] }, - 'rangemaskmapinforgbmax' => { 515 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'], 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'] }, - 'rangemaskmapinforgbmin' => { 515 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'], 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'] }, + 'rads' => { 413 => 'rads' }, + 'rangefinder' => { 312 => '4.1', 313 => '5.1', 314 => '5.1' }, + 'rangemask' => { 517 => 'RangeMaskMapInfo', 519 => 'RangeMaskMapInfo' }, + 'rangemaskmapinfo' => { 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'], 519 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfo'] }, + 'rangemaskmapinfolabmax' => { 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'], 519 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMax'] }, + 'rangemaskmapinfolabmin' => { 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'], 519 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLabMin'] }, + 'rangemaskmapinfolumeq' => { 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'], 519 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoLumEq'] }, + 'rangemaskmapinforgbmax' => { 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'], 519 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMax'] }, + 'rangemaskmapinforgbmin' => { 517 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'], 519 => [\'RangeMaskMapInfo','RangeMaskMapInfoRangeMaskMapInfoRGBMin'] }, 'rasterizedcaption' => { 136 => 0x7d }, - 'rating' => { 108 => 0x10100, 124 => 0x4746, 132 => 0x1431, 397 => 0xdf, 403 => 'rtng', 411 => 'rtng', 452 => 0x2002, 510 => 'rating', 519 => 'rating', 529 => 'Rating', 534 => 'rating', 542 => 'Rating' }, - 'ratingpercent' => { 124 => 0x4749, 183 => 'Rating', 403 => 'rate', 542 => 'RatingPercent' }, - 'ratingregion' => { 529 => [\'Rating','RatingRatingRegion'] }, - 'ratingregioncity' => { 529 => [\'Rating','RatingRatingRegionCity'] }, - 'ratingregioncountrycode' => { 529 => [\'Rating','RatingRatingRegionCountryCode'] }, - 'ratingregioncountryname' => { 529 => [\'Rating','RatingRatingRegionCountryName'] }, - 'ratingregiongpsaltitude' => { 529 => [\'Rating','RatingRatingRegionGPSAltitude'] }, - 'ratingregiongpsaltituderef' => { 529 => [\'Rating','RatingRatingRegionGPSAltitudeRef'] }, - 'ratingregiongpslatitude' => { 529 => [\'Rating','RatingRatingRegionGPSLatitude'] }, - 'ratingregiongpslongitude' => { 529 => [\'Rating','RatingRatingRegionGPSLongitude'] }, - 'ratingregionidentifier' => { 529 => [\'Rating','RatingRatingRegionIdentifier'] }, - 'ratingregionlocationid' => { 529 => [\'Rating','RatingRatingRegionLocationId'] }, - 'ratingregionlocationname' => { 529 => [\'Rating','RatingRatingRegionLocationName'] }, - 'ratingregionprovincestate' => { 529 => [\'Rating','RatingRatingRegionProvinceState'] }, - 'ratingregionsublocation' => { 529 => [\'Rating','RatingRatingRegionSublocation'] }, - 'ratingregionworldregion' => { 529 => [\'Rating','RatingRatingRegionWorldRegion'] }, - 'ratingscalemaxvalue' => { 529 => [\'Rating','RatingRatingScaleMaxValue'] }, - 'ratingscaleminvalue' => { 529 => [\'Rating','RatingRatingScaleMinValue'] }, - 'ratingsourcelink' => { 529 => [\'Rating','RatingRatingSourceLink'] }, - 'ratingvalue' => { 529 => [\'Rating','RatingRatingValue'] }, - 'ratingvaluelogolink' => { 529 => [\'Rating','RatingRatingValueLogoLink'] }, - 'rawandjpgrecording' => { 87 => 0x8, 191 => 0x109, 366 => 0xd }, + 'rating' => { 108 => 0x10100, 124 => 0x4746, 132 => 0x1431, 399 => 0xdf, 405 => 'rtng', 413 => 'rtng', 454 => 0x2002, 512 => 'rating', 521 => 'rating', 531 => 'Rating', 536 => 'rating', 544 => 'Rating' }, + 'ratingpercent' => { 124 => 0x4749, 183 => 'Rating', 405 => 'rate', 544 => 'RatingPercent' }, + 'ratingregion' => { 531 => [\'Rating','RatingRatingRegion'] }, + 'ratingregioncity' => { 531 => [\'Rating','RatingRatingRegionCity'] }, + 'ratingregioncountrycode' => { 531 => [\'Rating','RatingRatingRegionCountryCode'] }, + 'ratingregioncountryname' => { 531 => [\'Rating','RatingRatingRegionCountryName'] }, + 'ratingregiongpsaltitude' => { 531 => [\'Rating','RatingRatingRegionGPSAltitude'] }, + 'ratingregiongpsaltituderef' => { 531 => [\'Rating','RatingRatingRegionGPSAltitudeRef'] }, + 'ratingregiongpslatitude' => { 531 => [\'Rating','RatingRatingRegionGPSLatitude'] }, + 'ratingregiongpslongitude' => { 531 => [\'Rating','RatingRatingRegionGPSLongitude'] }, + 'ratingregionidentifier' => { 531 => [\'Rating','RatingRatingRegionIdentifier'] }, + 'ratingregionlocationid' => { 531 => [\'Rating','RatingRatingRegionLocationId'] }, + 'ratingregionlocationname' => { 531 => [\'Rating','RatingRatingRegionLocationName'] }, + 'ratingregionprovincestate' => { 531 => [\'Rating','RatingRatingRegionProvinceState'] }, + 'ratingregionsublocation' => { 531 => [\'Rating','RatingRatingRegionSublocation'] }, + 'ratingregionworldregion' => { 531 => [\'Rating','RatingRatingRegionWorldRegion'] }, + 'ratingscalemaxvalue' => { 531 => [\'Rating','RatingRatingScaleMaxValue'] }, + 'ratingscaleminvalue' => { 531 => [\'Rating','RatingRatingScaleMinValue'] }, + 'ratingsourcelink' => { 531 => [\'Rating','RatingRatingSourceLink'] }, + 'ratingvalue' => { 531 => [\'Rating','RatingRatingValue'] }, + 'ratingvaluelogolink' => { 531 => [\'Rating','RatingRatingValueLogoLink'] }, + 'rawandjpgrecording' => { 87 => 0x8, 191 => 0x109, 368 => 0xd }, 'rawbrightnessadj' => { 108 => 0x20001, 113 => 0x38 }, 'rawburstimagecount' => { 79 => 0x2 }, 'rawburstimagenum' => { 79 => 0x1 }, 'rawcoloradj' => { 113 => 0x2e }, - 'rawcropbottom' => { 397 => 0xd4 }, - 'rawcropleft' => { 397 => 0xd1 }, - 'rawcropright' => { 397 => 0xd3 }, - 'rawcroptop' => { 397 => 0xd2 }, + 'rawcropbottom' => { 399 => 0xd4 }, + 'rawcropleft' => { 399 => 0xd1 }, + 'rawcropright' => { 399 => 0xd3 }, + 'rawcroptop' => { 399 => 0xd2 }, 'rawcustomsaturation' => { 113 => 0x30 }, 'rawcustomtone' => { 113 => 0x34 }, - 'rawdata' => { 425 => 0xa048 }, - 'rawdatabyteorder' => { 425 => 0x40 }, - 'rawdatacfapattern' => { 425 => 0x50 }, + 'rawdata' => { 427 => 0xa048 }, + 'rawdatabyteorder' => { 427 => 0x40 }, + 'rawdatacfapattern' => { 427 => 0x50 }, 'rawdatauniqueid' => { 124 => 0xc65d }, 'rawdepth' => { 193 => 0x10 }, - 'rawdevartfilter' => { 333 => 0x121 }, - 'rawdevautogradation' => { 333 => 0x119 }, - 'rawdevcolorspace' => { 332 => 0x108, 333 => 0x109 }, - 'rawdevcontrastvalue' => { 332 => 0x106, 333 => 0x105 }, - 'rawdeveditstatus' => { 332 => 0x10b }, + 'rawdevartfilter' => { 335 => 0x121 }, + 'rawdevautogradation' => { 335 => 0x119 }, + 'rawdevcolorspace' => { 334 => 0x108, 335 => 0x109 }, + 'rawdevcontrastvalue' => { 334 => 0x106, 335 => 0x105 }, + 'rawdeveditstatus' => { 334 => 0x10b }, 'rawdevelopingsoftware' => { 124 => 0xa43a }, - 'rawdevelopmentprocess' => { 386 => 0x62 }, - 'rawdevengine' => { 332 => 0x109, 333 => 0x10b }, - 'rawdevexposurebiasvalue' => { 332 => 0x100, 333 => 0x100 }, - 'rawdevgradation' => { 333 => 0x112 }, - 'rawdevgraypoint' => { 332 => 0x103, 333 => 0x104 }, - 'rawdevmemorycoloremphasis' => { 332 => 0x105, 333 => 0x108 }, - 'rawdevnoisereduction' => { 332 => 0x10a, 333 => 0x10a }, - 'rawdevpicturemode' => { 333 => 0x10c }, - 'rawdevpm_bwfilter' => { 333 => 0x110 }, - 'rawdevpmcontrast' => { 333 => 0x10e }, - 'rawdevpmnoisefilter' => { 333 => 0x120 }, - 'rawdevpmpicturetone' => { 333 => 0x111 }, - 'rawdevpmsaturation' => { 333 => 0x10d }, - 'rawdevpmsharpness' => { 333 => 0x10f }, - 'rawdevsaturation3' => { 333 => 0x113 }, - 'rawdevsaturationemphasis' => { 332 => 0x104, 333 => 0x107 }, - 'rawdevsettings' => { 332 => 0x10c }, - 'rawdevsharpnessvalue' => { 332 => 0x107, 333 => 0x106 }, - 'rawdevversion' => { 332 => 0x0, 333 => 0x0 }, - 'rawdevwbfineadjustment' => { 332 => 0x102, 333 => 0x103 }, - 'rawdevwhitebalance' => { 333 => 0x101 }, - 'rawdevwhitebalancevalue' => { 332 => 0x101, 333 => 0x102 }, + 'rawdevelopmentprocess' => { 388 => 0x62 }, + 'rawdevengine' => { 334 => 0x109, 335 => 0x10b }, + 'rawdevexposurebiasvalue' => { 334 => 0x100, 335 => 0x100 }, + 'rawdevgradation' => { 335 => 0x112 }, + 'rawdevgraypoint' => { 334 => 0x103, 335 => 0x104 }, + 'rawdevmemorycoloremphasis' => { 334 => 0x105, 335 => 0x108 }, + 'rawdevnoisereduction' => { 334 => 0x10a, 335 => 0x10a }, + 'rawdevpicturemode' => { 335 => 0x10c }, + 'rawdevpm_bwfilter' => { 335 => 0x110 }, + 'rawdevpmcontrast' => { 335 => 0x10e }, + 'rawdevpmnoisefilter' => { 335 => 0x120 }, + 'rawdevpmpicturetone' => { 335 => 0x111 }, + 'rawdevpmsaturation' => { 335 => 0x10d }, + 'rawdevpmsharpness' => { 335 => 0x10f }, + 'rawdevsaturation3' => { 335 => 0x113 }, + 'rawdevsaturationemphasis' => { 334 => 0x104, 335 => 0x107 }, + 'rawdevsettings' => { 334 => 0x10c }, + 'rawdevsharpnessvalue' => { 334 => 0x107, 335 => 0x106 }, + 'rawdevversion' => { 334 => 0x0, 335 => 0x0 }, + 'rawdevwbfineadjustment' => { 334 => 0x102, 335 => 0x103 }, + 'rawdevwhitebalance' => { 335 => 0x101 }, + 'rawdevwhitebalancevalue' => { 334 => 0x101, 335 => 0x102 }, 'rawfile' => { 124 => 0xfe4c }, - 'rawfilename' => { 515 => 'RawFileName', 517 => 'RawFileName' }, - 'rawfiletype' => { 452 => 0x2029 }, - 'rawformat' => { 355 => 0x2d, 395 => 0x10e }, + 'rawfilename' => { 517 => 'RawFileName', 519 => 'RawFileName' }, + 'rawfiletype' => { 454 => 0x2029 }, + 'rawformat' => { 357 => 0x2d, 397 => 0x10e }, 'rawimagecenter' => { 241 => 0x99 }, 'rawimagedigest' => { 124 => 0xc71c }, - 'rawimagesize' => { 386 => 0x39 }, - 'rawinfoversion' => { 334 => 0x0 }, + 'rawimagesize' => { 388 => 0x39 }, + 'rawinfoversion' => { 336 => 0x0 }, 'rawjpgheight' => { 104 => 0x4 }, 'rawjpgquality' => { 60 => 0x6, 104 => 0x1 }, 'rawjpgsize' => { 60 => 0x7, 104 => 0x2 }, 'rawjpgwidth' => { 104 => 0x3 }, 'rawmeasuredrggb' => { 46 => 0x26a, 48 => 0x280, 50 => 0x194, 51 => [0x1ad,0x26b] }, - 'rawrppused' => { 510 => 'rawrppused' }, + 'rawrppused' => { 512 => 'rawrppused' }, 'rawtopreviewgain' => { 124 => 0xc7a8 }, 'readouttypeactual' => { 143 => 0x1903 }, 'readouttyperequested' => { 143 => 0x1902 }, - 'reardisplay' => { 306 => '12.3', 307 => '6.2' }, - 'recdevice' => { 529 => 'RecDevice' }, - 'recdeviceattlensdescription' => { 529 => [\'RecDevice','RecDeviceAttLensDescription'] }, - 'recdevicemanufacturer' => { 529 => [\'RecDevice','RecDeviceManufacturer'] }, - 'recdevicemodelname' => { 529 => [\'RecDevice','RecDeviceModelName'] }, - 'recdeviceownersdeviceid' => { 529 => [\'RecDevice','RecDeviceOwnersDeviceId'] }, - 'recdeviceserialnumber' => { 529 => [\'RecDevice','RecDeviceSerialNumber'] }, - 'recipeendingpage' => { 536 => 'recipeEndingPage' }, - 'recipepagerange' => { 536 => 'recipePageRange' }, - 'recipesource' => { 536 => 'recipeSource' }, - 'recipestartingpage' => { 536 => 'recipeStartingPage' }, - 'recipetitle' => { 536 => 'recipeTitle' }, - 'recognizedface1age' => { 343 => 0x20 }, - 'recognizedface1name' => { 343 => 0x4 }, - 'recognizedface1position' => { 343 => 0x18 }, - 'recognizedface2age' => { 343 => 0x50 }, - 'recognizedface2name' => { 343 => 0x34 }, - 'recognizedface2position' => { 343 => 0x48 }, - 'recognizedface3age' => { 343 => 0x80 }, - 'recognizedface3name' => { 343 => 0x64 }, - 'recognizedface3position' => { 343 => 0x78 }, - 'recognizedfaceflags' => { 350 => 0x63 }, - 'recommendedexposureindex' => { 124 => 0x8832, 522 => 'RecommendedExposureIndex' }, + 'reardisplay' => { 307 => '12.3', 308 => '6.2' }, + 'recdevice' => { 531 => 'RecDevice' }, + 'recdeviceattlensdescription' => { 531 => [\'RecDevice','RecDeviceAttLensDescription'] }, + 'recdevicemanufacturer' => { 531 => [\'RecDevice','RecDeviceManufacturer'] }, + 'recdevicemodelname' => { 531 => [\'RecDevice','RecDeviceModelName'] }, + 'recdeviceownersdeviceid' => { 531 => [\'RecDevice','RecDeviceOwnersDeviceId'] }, + 'recdeviceserialnumber' => { 531 => [\'RecDevice','RecDeviceSerialNumber'] }, + 'recipeendingpage' => { 538 => 'recipeEndingPage' }, + 'recipepagerange' => { 538 => 'recipePageRange' }, + 'recipesource' => { 538 => 'recipeSource' }, + 'recipestartingpage' => { 538 => 'recipeStartingPage' }, + 'recipetitle' => { 538 => 'recipeTitle' }, + 'recognizedface1age' => { 345 => 0x20 }, + 'recognizedface1name' => { 345 => 0x4 }, + 'recognizedface1position' => { 345 => 0x18 }, + 'recognizedface2age' => { 345 => 0x50 }, + 'recognizedface2name' => { 345 => 0x34 }, + 'recognizedface2position' => { 345 => 0x48 }, + 'recognizedface3age' => { 345 => 0x80 }, + 'recognizedface3name' => { 345 => 0x64 }, + 'recognizedface3position' => { 345 => 0x78 }, + 'recognizedfaceflags' => { 352 => 0x63 }, + 'recommendedexposureindex' => { 124 => 0x8832, 524 => 'RecommendedExposureIndex' }, 'record' => { 123 => 'Record' }, 'recordbasisofrecord' => { 123 => [\'Record','RecordBasisOfRecord'] }, 'recordcollectioncode' => { 123 => [\'Record','RecordCollectionCode'] }, @@ -6016,38 +6020,38 @@ my %tagLookup = ( 'recorddynamicproperties' => { 123 => [\'Record','RecordDynamicProperties'] }, 'recordid' => { 102 => 0x1804 }, 'recordinformationwithheld' => { 123 => [\'Record','RecordInformationWithheld'] }, - 'recordingcopyright' => { 411 => "\xa9phg" }, - 'recordingformat' => { 418 => 0x1000 }, - 'recordingmode' => { 117 => 0x1, 393 => 0x1 }, + 'recordingcopyright' => { 413 => "\xa9phg" }, + 'recordingformat' => { 420 => 0x1000 }, + 'recordingmode' => { 117 => 0x1, 395 => 0x1 }, 'recordinstitutioncode' => { 123 => [\'Record','RecordInstitutionCode'] }, 'recordinstitutionid' => { 123 => [\'Record','RecordInstitutionID'] }, - 'recordlabelname' => { 411 => "\xa9lab" }, - 'recordlabelurl' => { 411 => "\xa9lal" }, - 'recordlocationdata' => { 248 => 0x660, 249 => 0x690, 250 => 0x6f8 }, + 'recordlabelname' => { 413 => "\xa9lab" }, + 'recordlabelurl' => { 413 => "\xa9lal" }, + 'recordlocationdata' => { 249 => 0x660, 250 => 0x690, 251 => 0x6f8 }, 'recordmode' => { 36 => 0x9, 118 => 0x3000 }, 'recordownerinstitutioncode' => { 123 => [\'Record','RecordOwnerInstitutionCode'] }, - 'recordshutterrelease' => { 427 => 0x217 }, - 'redbalance' => { 331 => 0x1017, 355 => 0x11, 386 => 0x1c }, + 'recordshutterrelease' => { 429 => 0x217 }, + 'redbalance' => { 333 => 0x1017, 357 => 0x11, 388 => 0x1c }, 'redcurvelimits' => { 113 => 0x18a }, 'redcurvepoints' => { 112 => 0x2d, 113 => 0x160 }, - 'redeyecorrection' => { 303 => 0x0 }, - 'redeyeinfo' => { 515 => 'RedEyeInfo', 517 => 'RedEyeInfo' }, - 'redeyereduction' => { 189 => 0x41, 438 => 0x6a, 440 => 0x28 }, - 'redeyeremoval' => { 350 => 0xb9 }, + 'redeyecorrection' => { 304 => 0x0 }, + 'redeyeinfo' => { 517 => 'RedEyeInfo', 519 => 'RedEyeInfo' }, + 'redeyereduction' => { 189 => 0x41, 440 => 0x6a, 442 => 0x28 }, + 'redeyeremoval' => { 352 => 0xb9 }, 'redhsl' => { 108 => 0x20910 }, - 'redhue' => { 515 => 'RedHue', 517 => 'RedHue' }, - 'redsaturation' => { 515 => 'RedSaturation', 517 => 'RedSaturation' }, + 'redhue' => { 517 => 'RedHue', 519 => 'RedHue' }, + 'redsaturation' => { 517 => 'RedSaturation', 519 => 'RedSaturation' }, 'reductionmatrix1' => { 124 => 0xc625 }, 'reductionmatrix2' => { 124 => 0xc626 }, 'reductionmatrix3' => { 124 => 0xcd3a }, - 'reelname' => { 124 => 0xc789, 411 => 'reel' }, - 'reference1' => { 527 => [\'TagStructure','TagStructureReference'] }, - 'reference2' => { 527 => [\'TagStructure','TagStructureSubLabelsReference'] }, - 'reference3' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] }, - 'reference4' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] }, - 'reference5' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, - 'reference6' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, - 'referenceblackwhite' => { 124 => 0x214, 540 => 'ReferenceBlackWhite' }, + 'reelname' => { 124 => 0xc789, 413 => 'reel' }, + 'reference1' => { 529 => [\'TagStructure','TagStructureReference'] }, + 'reference2' => { 529 => [\'TagStructure','TagStructureSubLabelsReference'] }, + 'reference3' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] }, + 'reference4' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] }, + 'reference5' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, + 'reference6' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] }, + 'referenceblackwhite' => { 124 => 0x214, 542 => 'ReferenceBlackWhite' }, 'referencedate' => { 136 => 0x2f }, 'referencenumber' => { 136 => 0x32 }, 'references' => { 162 => 'References' }, @@ -6064,12 +6068,12 @@ my %tagLookup = ( 'regionareax' => { 177 => [\'Regions','RegionsRegionListAreaX'] }, 'regionareay' => { 177 => [\'Regions','RegionsRegionListAreaY'] }, 'regionbarcodevalue' => { 177 => [\'Regions','RegionsRegionListBarCodeValue'] }, - 'regionconstraints' => { 336 => 'RegionConstraints' }, + 'regionconstraints' => { 338 => 'RegionConstraints' }, 'regiondescription' => { 177 => [\'Regions','RegionsRegionListDescription'] }, 'regionextensions' => { 177 => [\'Regions','RegionsRegionListExtensions'] }, 'regionfocususage' => { 177 => [\'Regions','RegionsRegionListFocusUsage'] }, 'regioninfo' => { 177 => 'Regions' }, - 'regioninfoacdsee' => { 490 => 'Regions' }, + 'regioninfoacdsee' => { 492 => 'Regions' }, 'regioninfodateregionsvalid' => { 180 => [\'RegionInfo','RegionInfoDateRegionsValid'] }, 'regioninfomp' => { 180 => 'RegionInfo' }, 'regioninforegions' => { 180 => [\'RegionInfo','RegionInfoRegions'] }, @@ -6083,10 +6087,10 @@ my %tagLookup = ( 'regionrotation' => { 177 => [\'Regions','RegionsRegionListRotation'] }, 'regionseealso' => { 177 => [\'Regions','RegionsRegionListSeeAlso'] }, 'regiontype' => { 177 => [\'Regions','RegionsRegionListType'] }, - 'registryentryrole' => { 529 => [\'RegistryId','RegistryIdRegEntryRole'] }, - 'registryid' => { 529 => 'RegistryId' }, - 'registryitemid' => { 529 => [\'RegistryId','RegistryIdRegItemId'] }, - 'registryorganisationid' => { 529 => [\'RegistryId','RegistryIdRegOrgId'] }, + 'registryentryrole' => { 531 => [\'RegistryId','RegistryIdRegEntryRole'] }, + 'registryid' => { 531 => 'RegistryId' }, + 'registryitemid' => { 531 => [\'RegistryId','RegistryIdRegItemId'] }, + 'registryorganisationid' => { 531 => [\'RegistryId','RegistryIdRegOrgId'] }, 'relatedaudiofile' => { 160 => 'data' }, 'relatedaudiofilename' => { 160 => '1Name' }, 'relatedaudiofiletype' => { 160 => '0Type' }, @@ -6094,224 +6098,224 @@ my %tagLookup = ( 'relatedimageheight' => { 124 => 0x1002 }, 'relatedimagewidth' => { 124 => 0x1001 }, 'relatedresourceid' => { 123 => [\'ResourceRelationship','ResourceRelationshipRelatedResourceID'] }, - 'relatedsoundfile' => { 124 => 0xa004, 521 => 'RelatedSoundFile' }, + 'relatedsoundfile' => { 124 => 0xa004, 523 => 'RelatedSoundFile' }, 'relatedvideofile' => { 174 => 'data' }, 'relatedvideofilename' => { 174 => '1Name' }, 'relatedvideofiletype' => { 174 => '0Type' }, - 'relation' => { 518 => 'relation' }, + 'relation' => { 520 => 'relation' }, 'relationshipaccordingto' => { 123 => [\'ResourceRelationship','ResourceRelationshipRelationshipAccordingTo'] }, 'relationshipestablisheddate' => { 123 => [\'ResourceRelationship','ResourceRelationshipRelationshipEstablishedDate'] }, 'relationshipofresource' => { 123 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResource'] }, 'relationshipofresourceid' => { 123 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResourceID'] }, 'relationshipremarks' => { 123 => [\'ResourceRelationship','ResourceRelationshipRelationshipRemarks'] }, 'relativealtitude' => { 121 => 'RelativeAltitude' }, - 'relativepeakaudiofilepath' => { 544 => 'relativePeakAudioFilePath' }, - 'relativetimestamp' => { 544 => 'relativeTimestamp' }, - 'relativetimestampscale' => { 544 => [\'relativeTimestamp','relativeTimestampScale'] }, - 'relativetimestampvalue' => { 544 => [\'relativeTimestamp','relativeTimestampValue'] }, - 'releasebuttontousedial' => { 306 => '17.8', 307 => '18.5', 309 => '18.4', 310 => '18.4', 315 => '33.8', 316 => '17.6', 319 => '18.5', 320 => '18.4' }, - 'releasedate' => { 136 => 0x1e, 403 => 'rldt', 510 => 'ReleaseDate', 544 => 'releaseDate' }, - 'releasemode' => { 118 => 0x3001, 245 => 0x5c, 279 => 0x184d, 452 => 0xb049 }, - 'releasemode2' => { 461 => 0x112c, 462 => [0x112c,0x8], 463 => [0x1108,0x8], 464 => [0x1184,0x8], 465 => [0x1160,0x8], 466 => [0x4,0x1018], 467 => [0x4,0x210], 468 => [0x4,0x210], 469 => [0x4,0x208], 471 => [0x67,0x3f], 472 => [0x6b,0x6d,0x73,0x4b], 473 => [0x6b,0x4b], 474 => 0x1f, 475 => 0x10, 476 => 0x10, 477 => 0x9, 484 => 0x34 }, - 'releasemode3' => { 461 => 0x1128, 462 => 0x1128, 463 => 0x1104, 464 => 0x1180, 465 => 0x115c, 466 => 0x1014, 467 => 0x20c, 468 => 0x20c, 469 => 0x204 }, - 'releaseready' => { 529 => 'ReleaseReady' }, + 'relativepeakaudiofilepath' => { 546 => 'relativePeakAudioFilePath' }, + 'relativetimestamp' => { 546 => 'relativeTimestamp' }, + 'relativetimestampscale' => { 546 => [\'relativeTimestamp','relativeTimestampScale'] }, + 'relativetimestampvalue' => { 546 => [\'relativeTimestamp','relativeTimestampValue'] }, + 'releasebuttontousedial' => { 307 => '17.8', 308 => '18.5', 310 => '18.4', 311 => '18.4', 316 => '33.8', 317 => '17.6', 320 => '18.5', 321 => '18.4' }, + 'releasedate' => { 136 => 0x1e, 405 => 'rldt', 512 => 'ReleaseDate', 546 => 'releaseDate' }, + 'releasemode' => { 118 => 0x3001, 246 => 0x5c, 280 => 0x184d, 454 => 0xb049 }, + 'releasemode2' => { 463 => 0x112c, 464 => [0x112c,0x8], 465 => [0x1108,0x8], 466 => [0x1184,0x8], 467 => [0x1160,0x8], 468 => [0x4,0x1018], 469 => [0x4,0x210], 470 => [0x4,0x210], 471 => [0x4,0x208], 473 => [0x67,0x3f], 474 => [0x6b,0x6d,0x73,0x4b], 475 => [0x6b,0x4b], 476 => 0x1f, 477 => 0x10, 478 => 0x10, 479 => 0x9, 486 => 0x34 }, + 'releasemode3' => { 463 => 0x1128, 464 => 0x1128, 465 => 0x1104, 466 => 0x1180, 467 => 0x115c, 468 => 0x1014, 469 => 0x20c, 470 => 0x20c, 471 => 0x204 }, + 'releaseready' => { 531 => 'ReleaseReady' }, 'releasesetting' => { 102 => 0x1016 }, - 'releasetime' => { 136 => 0x23, 510 => 'ReleaseTime' }, - 'remoteonduration' => { 308 => '3.4', 311 => '17.2', 312 => '18.2', 313 => '18.2', 314 => '18.2', 316 => '18.2', 317 => '4.3', 321 => '19.2' }, - 'renditionclass' => { 545 => 'RenditionClass' }, - 'renditionof' => { 545 => 'RenditionOf' }, - 'renditionofalternatepaths' => { 545 => [\'RenditionOf','RenditionOfAlternatePaths'] }, - 'renditionofdocumentid' => { 545 => [\'RenditionOf','RenditionOfDocumentID'] }, - 'renditionoffilepath' => { 545 => [\'RenditionOf','RenditionOfFilePath'] }, - 'renditionoffrompart' => { 545 => [\'RenditionOf','RenditionOfFromPart'] }, - 'renditionofinstanceid' => { 545 => [\'RenditionOf','RenditionOfInstanceID'] }, - 'renditionoflastmodifydate' => { 545 => [\'RenditionOf','RenditionOfLastModifyDate'] }, - 'renditionoflasturl' => { 545 => [\'RenditionOf','RenditionOfLastURL'] }, - 'renditionoflinkcategory' => { 545 => [\'RenditionOf','RenditionOfLinkCategory'] }, - 'renditionoflinkform' => { 545 => [\'RenditionOf','RenditionOfLinkForm'] }, - 'renditionofmanager' => { 545 => [\'RenditionOf','RenditionOfManager'] }, - 'renditionofmanagervariant' => { 545 => [\'RenditionOf','RenditionOfManagerVariant'] }, - 'renditionofmanageto' => { 545 => [\'RenditionOf','RenditionOfManageTo'] }, - 'renditionofmanageui' => { 545 => [\'RenditionOf','RenditionOfManageUI'] }, - 'renditionofmaskmarkers' => { 545 => [\'RenditionOf','RenditionOfMaskMarkers'] }, - 'renditionoforiginaldocumentid' => { 545 => [\'RenditionOf','RenditionOfOriginalDocumentID'] }, - 'renditionofpartmapping' => { 545 => [\'RenditionOf','RenditionOfPartMapping'] }, - 'renditionofplacedresolutionunit' => { 545 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] }, - 'renditionofplacedxresolution' => { 545 => [\'RenditionOf','RenditionOfPlacedXResolution'] }, - 'renditionofplacedyresolution' => { 545 => [\'RenditionOf','RenditionOfPlacedYResolution'] }, - 'renditionofrenditionclass' => { 545 => [\'RenditionOf','RenditionOfRenditionClass'] }, - 'renditionofrenditionparams' => { 545 => [\'RenditionOf','RenditionOfRenditionParams'] }, - 'renditionoftopart' => { 545 => [\'RenditionOf','RenditionOfToPart'] }, - 'renditionofversionid' => { 545 => [\'RenditionOf','RenditionOfVersionID'] }, - 'renditionparams' => { 545 => 'RenditionParams' }, - 'repeatingflashcount' => { 219 => 0xd, 220 => 0xe, 221 => 0xe, 222 => 0xe, 223 => 0xe, 224 => 0xe, 315 => '17.2', 316 => '24.2', 317 => '9.2', 318 => '24.2', 321 => '25.2' }, - 'repeatingflashcountbuilt-in' => { 286 => 0x4db }, - 'repeatingflashcountexternal' => { 286 => 0x4c3 }, - 'repeatingflashoutput' => { 315 => '17.1', 316 => '24.1', 317 => '9.1', 318 => '24.1', 321 => '25.1' }, - 'repeatingflashoutputexternal' => { 286 => 0x4c0 }, - 'repeatingflashrate' => { 219 => 0xc, 220 => 0xd, 221 => 0xd, 222 => 0xd, 223 => 0xd, 224 => 0xd, 315 => '18.1', 316 => '25.1', 317 => '10.1', 318 => '25.1', 321 => '26.1' }, - 'repeatingflashratebuilt-in' => { 286 => 0x4da }, - 'repeatingflashrateexternal' => { 286 => 0x4c2 }, - 'requirements' => { 411 => "\xa9req" }, - 'requires' => { 513 => 'requires' }, - 'resampleparams' => { 544 => 'resampleParams' }, - 'resampleparamsquality' => { 544 => [\'resampleParams','resampleParamsQuality'] }, + 'releasetime' => { 136 => 0x23, 512 => 'ReleaseTime' }, + 'remoteonduration' => { 309 => '3.4', 312 => '17.2', 313 => '18.2', 314 => '18.2', 315 => '18.2', 317 => '18.2', 318 => '4.3', 322 => '19.2' }, + 'renditionclass' => { 547 => 'RenditionClass' }, + 'renditionof' => { 547 => 'RenditionOf' }, + 'renditionofalternatepaths' => { 547 => [\'RenditionOf','RenditionOfAlternatePaths'] }, + 'renditionofdocumentid' => { 547 => [\'RenditionOf','RenditionOfDocumentID'] }, + 'renditionoffilepath' => { 547 => [\'RenditionOf','RenditionOfFilePath'] }, + 'renditionoffrompart' => { 547 => [\'RenditionOf','RenditionOfFromPart'] }, + 'renditionofinstanceid' => { 547 => [\'RenditionOf','RenditionOfInstanceID'] }, + 'renditionoflastmodifydate' => { 547 => [\'RenditionOf','RenditionOfLastModifyDate'] }, + 'renditionoflasturl' => { 547 => [\'RenditionOf','RenditionOfLastURL'] }, + 'renditionoflinkcategory' => { 547 => [\'RenditionOf','RenditionOfLinkCategory'] }, + 'renditionoflinkform' => { 547 => [\'RenditionOf','RenditionOfLinkForm'] }, + 'renditionofmanager' => { 547 => [\'RenditionOf','RenditionOfManager'] }, + 'renditionofmanagervariant' => { 547 => [\'RenditionOf','RenditionOfManagerVariant'] }, + 'renditionofmanageto' => { 547 => [\'RenditionOf','RenditionOfManageTo'] }, + 'renditionofmanageui' => { 547 => [\'RenditionOf','RenditionOfManageUI'] }, + 'renditionofmaskmarkers' => { 547 => [\'RenditionOf','RenditionOfMaskMarkers'] }, + 'renditionoforiginaldocumentid' => { 547 => [\'RenditionOf','RenditionOfOriginalDocumentID'] }, + 'renditionofpartmapping' => { 547 => [\'RenditionOf','RenditionOfPartMapping'] }, + 'renditionofplacedresolutionunit' => { 547 => [\'RenditionOf','RenditionOfPlacedResolutionUnit'] }, + 'renditionofplacedxresolution' => { 547 => [\'RenditionOf','RenditionOfPlacedXResolution'] }, + 'renditionofplacedyresolution' => { 547 => [\'RenditionOf','RenditionOfPlacedYResolution'] }, + 'renditionofrenditionclass' => { 547 => [\'RenditionOf','RenditionOfRenditionClass'] }, + 'renditionofrenditionparams' => { 547 => [\'RenditionOf','RenditionOfRenditionParams'] }, + 'renditionoftopart' => { 547 => [\'RenditionOf','RenditionOfToPart'] }, + 'renditionofversionid' => { 547 => [\'RenditionOf','RenditionOfVersionID'] }, + 'renditionparams' => { 547 => 'RenditionParams' }, + 'repeatingflashcount' => { 219 => 0xd, 220 => 0xe, 221 => 0xe, 222 => 0xe, 223 => 0xe, 224 => 0xe, 316 => '17.2', 317 => '24.2', 318 => '9.2', 319 => '24.2', 322 => '25.2' }, + 'repeatingflashcountbuilt-in' => { 287 => 0x4db }, + 'repeatingflashcountexternal' => { 287 => 0x4c3 }, + 'repeatingflashoutput' => { 316 => '17.1', 317 => '24.1', 318 => '9.1', 319 => '24.1', 322 => '25.1' }, + 'repeatingflashoutputexternal' => { 287 => 0x4c0 }, + 'repeatingflashrate' => { 219 => 0xc, 220 => 0xd, 221 => 0xd, 222 => 0xd, 223 => 0xd, 224 => 0xd, 316 => '18.1', 317 => '25.1', 318 => '10.1', 319 => '25.1', 322 => '26.1' }, + 'repeatingflashratebuilt-in' => { 287 => 0x4da }, + 'repeatingflashrateexternal' => { 287 => 0x4c2 }, + 'requirements' => { 413 => "\xa9req" }, + 'requires' => { 515 => 'requires' }, + 'resampleparams' => { 546 => 'resampleParams' }, + 'resampleparamsquality' => { 546 => [\'resampleParams','resampleParamsQuality'] }, 'resamplingkerneldenominators050' => { 143 => 0xe50 }, 'resamplingkerneldenominators067' => { 143 => 0xe4f }, 'resamplingkerneldenominators100' => { 143 => 0xe51 }, - 'resaved' => { 427 => 0x21e }, + 'resaved' => { 429 => 0x21e }, 'resetblacksegrows' => { 143 => 0x181a }, 'resolution' => { 167 => 'Resolution' }, - 'resolutionmode' => { 428 => [0x87,0x4] }, - 'resolutionunit' => { 124 => 0x128, 139 => 0x2, 540 => 'ResolutionUnit' }, + 'resolutionmode' => { 430 => [0x87,0x4] }, + 'resolutionunit' => { 124 => 0x128, 139 => 0x2, 542 => 'ResolutionUnit' }, 'resourceid' => { 123 => [\'ResourceRelationship','ResourceRelationshipResourceID'] }, 'resourcerelationship' => { 123 => 'ResourceRelationship' }, 'resourcerelationshipid' => { 123 => [\'ResourceRelationship','ResourceRelationshipResourceRelationshipID'] }, 'restrictdrivemodes' => { 89 => 0x612 }, - 'restrictions' => { 537 => 'restrictions' }, - 'retouchareafeather' => { 515 => [\'RetouchAreas','RetouchAreasFeather'], 517 => [\'RetouchAreas','RetouchAreasFeather'] }, - 'retouchareamaskalpha' => { 515 => [\'RetouchAreas','RetouchAreasMasksAlpha'], 517 => [\'RetouchAreas','RetouchAreasMasksAlpha'] }, - 'retouchareamaskangle' => { 515 => [\'RetouchAreas','RetouchAreasMasksAngle'], 517 => [\'RetouchAreas','RetouchAreasMasksAngle'] }, - 'retouchareamaskbottom' => { 515 => [\'RetouchAreas','RetouchAreasMasksBottom'], 517 => [\'RetouchAreas','RetouchAreasMasksBottom'] }, - 'retouchareamaskcentervalue' => { 515 => [\'RetouchAreas','RetouchAreasMasksCenterValue'], 517 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] }, - 'retouchareamaskcenterweight' => { 515 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'], 517 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] }, - 'retouchareamaskdabs' => { 515 => [\'RetouchAreas','RetouchAreasMasksDabs'], 517 => [\'RetouchAreas','RetouchAreasMasksDabs'] }, - 'retouchareamaskfeather' => { 515 => [\'RetouchAreas','RetouchAreasMasksFeather'], 517 => [\'RetouchAreas','RetouchAreasMasksFeather'] }, - 'retouchareamaskflipped' => { 515 => [\'RetouchAreas','RetouchAreasMasksFlipped'], 517 => [\'RetouchAreas','RetouchAreasMasksFlipped'] }, - 'retouchareamaskflow' => { 515 => [\'RetouchAreas','RetouchAreasMasksFlow'], 517 => [\'RetouchAreas','RetouchAreasMasksFlow'] }, - 'retouchareamaskfullx' => { 515 => [\'RetouchAreas','RetouchAreasMasksFullX'], 517 => [\'RetouchAreas','RetouchAreasMasksFullX'] }, - 'retouchareamaskfully' => { 515 => [\'RetouchAreas','RetouchAreasMasksFullY'], 517 => [\'RetouchAreas','RetouchAreasMasksFullY'] }, - 'retouchareamaskinputdigest' => { 515 => [\'RetouchAreas','RetouchAreasMasksInputDigest'], 517 => [\'RetouchAreas','RetouchAreasMasksInputDigest'] }, - 'retouchareamaskleft' => { 515 => [\'RetouchAreas','RetouchAreasMasksLeft'], 517 => [\'RetouchAreas','RetouchAreasMasksLeft'] }, - 'retouchareamaskmaskactive' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskActive'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskActive'] }, - 'retouchareamaskmaskblendmode' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'] }, - 'retouchareamaskmaskdigest' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'] }, - 'retouchareamaskmaskinverted' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'] }, - 'retouchareamaskmaskname' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskName'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskName'] }, - 'retouchareamaskmasks' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasks'], 517 => [\'RetouchAreas','RetouchAreasMasksMasks'] }, - 'retouchareamaskmasksalpha' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'] }, - 'retouchareamaskmasksangle' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'] }, - 'retouchareamaskmasksbottom' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'] }, - 'retouchareamaskmaskscentervalue' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'] }, - 'retouchareamaskmaskscenterweight' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'] }, - 'retouchareamaskmasksdabs' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'] }, - 'retouchareamaskmasksfeather' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'] }, - 'retouchareamaskmasksflipped' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'] }, - 'retouchareamaskmasksflow' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'] }, - 'retouchareamaskmasksfullx' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'] }, - 'retouchareamaskmasksfully' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'] }, - 'retouchareamaskmasksinputdigest' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'] }, - 'retouchareamaskmasksleft' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'] }, - 'retouchareamaskmasksmaskactive' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'] }, - 'retouchareamaskmasksmaskblendmode' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'] }, - 'retouchareamaskmasksmaskdigest' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'] }, - 'retouchareamaskmasksmaskinverted' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'] }, - 'retouchareamaskmasksmaskname' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'] }, - 'retouchareamaskmasksmasksubtype' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'] }, - 'retouchareamaskmasksmasksyncid' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'] }, - 'retouchareamaskmasksmaskversion' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'] }, - 'retouchareamaskmasksmidpoint' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'] }, - 'retouchareamaskmasksorigin' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'] }, - 'retouchareamaskmasksperimetervalue' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'] }, - 'retouchareamaskmasksradius' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'] }, - 'retouchareamaskmasksreferencepoint' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'] }, - 'retouchareamaskmasksright' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksRight'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksRight'] }, - 'retouchareamaskmasksroundness' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'] }, - 'retouchareamaskmaskssizex' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'] }, - 'retouchareamaskmaskssizey' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'] }, - 'retouchareamaskmaskstop' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksTop'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksTop'] }, - 'retouchareamaskmasksubtype' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'] }, - 'retouchareamaskmasksvalue' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'] }, - 'retouchareamaskmasksversion' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'] }, - 'retouchareamaskmaskswhat' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'] }, - 'retouchareamaskmaskswholeimagearea' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'] }, - 'retouchareamaskmasksx' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksX'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksX'] }, - 'retouchareamaskmasksy' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksY'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksY'] }, - 'retouchareamaskmasksyncid' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'] }, - 'retouchareamaskmaskszerox' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'] }, - 'retouchareamaskmaskszeroy' => { 515 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'], 517 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'] }, - 'retouchareamaskmaskversion' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'] }, - 'retouchareamaskmidpoint' => { 515 => [\'RetouchAreas','RetouchAreasMasksMidpoint'], 517 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] }, - 'retouchareamaskorigin' => { 515 => [\'RetouchAreas','RetouchAreasMasksOrigin'], 517 => [\'RetouchAreas','RetouchAreasMasksOrigin'] }, - 'retouchareamaskperimetervalue' => { 515 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'], 517 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] }, - 'retouchareamaskradius' => { 515 => [\'RetouchAreas','RetouchAreasMasksRadius'], 517 => [\'RetouchAreas','RetouchAreasMasksRadius'] }, - 'retouchareamaskrange' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'] }, - 'retouchareamaskrangeareamodels' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'] }, - 'retouchareamaskrangeareamodelscolorsampleinfo' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, - 'retouchareamaskrangeareamodelscomponents' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, - 'retouchareamaskrangecoloramount' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'] }, - 'retouchareamaskrangedepthfeather' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'] }, - 'retouchareamaskrangedepthmax' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'] }, - 'retouchareamaskrangedepthmin' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'] }, - 'retouchareamaskrangeinvert' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'] }, - 'retouchareamaskrangelumfeather' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'] }, - 'retouchareamaskrangeluminancedepthsampleinfo' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, - 'retouchareamaskrangelummax' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'] }, - 'retouchareamaskrangelummin' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'] }, - 'retouchareamaskrangelumrange' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'] }, - 'retouchareamaskrangesampletype' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'] }, - 'retouchareamaskrangetype' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'] }, - 'retouchareamaskrangeversion' => { 515 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'], 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'] }, - 'retouchareamaskreferencepoint' => { 515 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'], 517 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'] }, - 'retouchareamaskright' => { 515 => [\'RetouchAreas','RetouchAreasMasksRight'], 517 => [\'RetouchAreas','RetouchAreasMasksRight'] }, - 'retouchareamaskroundness' => { 515 => [\'RetouchAreas','RetouchAreasMasksRoundness'], 517 => [\'RetouchAreas','RetouchAreasMasksRoundness'] }, - 'retouchareamasks' => { 515 => [\'RetouchAreas','RetouchAreasMasks'], 517 => [\'RetouchAreas','RetouchAreasMasks'] }, - 'retouchareamasksizex' => { 515 => [\'RetouchAreas','RetouchAreasMasksSizeX'], 517 => [\'RetouchAreas','RetouchAreasMasksSizeX'] }, - 'retouchareamasksizey' => { 515 => [\'RetouchAreas','RetouchAreasMasksSizeY'], 517 => [\'RetouchAreas','RetouchAreasMasksSizeY'] }, - 'retouchareamasktop' => { 515 => [\'RetouchAreas','RetouchAreasMasksTop'], 517 => [\'RetouchAreas','RetouchAreasMasksTop'] }, - 'retouchareamaskvalue' => { 515 => [\'RetouchAreas','RetouchAreasMasksMaskValue'], 517 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] }, - 'retouchareamaskversion' => { 515 => [\'RetouchAreas','RetouchAreasMasksVersion'], 517 => [\'RetouchAreas','RetouchAreasMasksVersion'] }, - 'retouchareamaskwhat' => { 515 => [\'RetouchAreas','RetouchAreasMasksWhat'], 517 => [\'RetouchAreas','RetouchAreasMasksWhat'] }, - 'retouchareamaskwholeimagearea' => { 515 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'], 517 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'] }, - 'retouchareamaskx' => { 515 => [\'RetouchAreas','RetouchAreasMasksX'], 517 => [\'RetouchAreas','RetouchAreasMasksX'] }, - 'retouchareamasky' => { 515 => [\'RetouchAreas','RetouchAreasMasksY'], 517 => [\'RetouchAreas','RetouchAreasMasksY'] }, - 'retouchareamaskzerox' => { 515 => [\'RetouchAreas','RetouchAreasMasksZeroX'], 517 => [\'RetouchAreas','RetouchAreasMasksZeroX'] }, - 'retouchareamaskzeroy' => { 515 => [\'RetouchAreas','RetouchAreasMasksZeroY'], 517 => [\'RetouchAreas','RetouchAreasMasksZeroY'] }, - 'retouchareamethod' => { 515 => [\'RetouchAreas','RetouchAreasMethod'], 517 => [\'RetouchAreas','RetouchAreasMethod'] }, - 'retouchareaoffsety' => { 515 => [\'RetouchAreas','RetouchAreasOffsetY'], 517 => [\'RetouchAreas','RetouchAreasOffsetY'] }, - 'retouchareaopacity' => { 515 => [\'RetouchAreas','RetouchAreasOpacity'], 517 => [\'RetouchAreas','RetouchAreasOpacity'] }, - 'retouchareas' => { 515 => 'RetouchAreas', 517 => 'RetouchAreas' }, - 'retouchareaseed' => { 515 => [\'RetouchAreas','RetouchAreasSeed'], 517 => [\'RetouchAreas','RetouchAreasSeed'] }, - 'retouchareasourcestate' => { 515 => [\'RetouchAreas','RetouchAreasSourceState'], 517 => [\'RetouchAreas','RetouchAreasSourceState'] }, - 'retouchareasourcex' => { 515 => [\'RetouchAreas','RetouchAreasSourceX'], 517 => [\'RetouchAreas','RetouchAreasSourceX'] }, - 'retouchareaspottype' => { 515 => [\'RetouchAreas','RetouchAreasSpotType'], 517 => [\'RetouchAreas','RetouchAreasSpotType'] }, + 'restrictions' => { 539 => 'restrictions' }, + 'retouchareafeather' => { 517 => [\'RetouchAreas','RetouchAreasFeather'], 519 => [\'RetouchAreas','RetouchAreasFeather'] }, + 'retouchareamaskalpha' => { 517 => [\'RetouchAreas','RetouchAreasMasksAlpha'], 519 => [\'RetouchAreas','RetouchAreasMasksAlpha'] }, + 'retouchareamaskangle' => { 517 => [\'RetouchAreas','RetouchAreasMasksAngle'], 519 => [\'RetouchAreas','RetouchAreasMasksAngle'] }, + 'retouchareamaskbottom' => { 517 => [\'RetouchAreas','RetouchAreasMasksBottom'], 519 => [\'RetouchAreas','RetouchAreasMasksBottom'] }, + 'retouchareamaskcentervalue' => { 517 => [\'RetouchAreas','RetouchAreasMasksCenterValue'], 519 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] }, + 'retouchareamaskcenterweight' => { 517 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'], 519 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] }, + 'retouchareamaskdabs' => { 517 => [\'RetouchAreas','RetouchAreasMasksDabs'], 519 => [\'RetouchAreas','RetouchAreasMasksDabs'] }, + 'retouchareamaskfeather' => { 517 => [\'RetouchAreas','RetouchAreasMasksFeather'], 519 => [\'RetouchAreas','RetouchAreasMasksFeather'] }, + 'retouchareamaskflipped' => { 517 => [\'RetouchAreas','RetouchAreasMasksFlipped'], 519 => [\'RetouchAreas','RetouchAreasMasksFlipped'] }, + 'retouchareamaskflow' => { 517 => [\'RetouchAreas','RetouchAreasMasksFlow'], 519 => [\'RetouchAreas','RetouchAreasMasksFlow'] }, + 'retouchareamaskfullx' => { 517 => [\'RetouchAreas','RetouchAreasMasksFullX'], 519 => [\'RetouchAreas','RetouchAreasMasksFullX'] }, + 'retouchareamaskfully' => { 517 => [\'RetouchAreas','RetouchAreasMasksFullY'], 519 => [\'RetouchAreas','RetouchAreasMasksFullY'] }, + 'retouchareamaskinputdigest' => { 517 => [\'RetouchAreas','RetouchAreasMasksInputDigest'], 519 => [\'RetouchAreas','RetouchAreasMasksInputDigest'] }, + 'retouchareamaskleft' => { 517 => [\'RetouchAreas','RetouchAreasMasksLeft'], 519 => [\'RetouchAreas','RetouchAreasMasksLeft'] }, + 'retouchareamaskmaskactive' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskActive'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskActive'] }, + 'retouchareamaskmaskblendmode' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskBlendMode'] }, + 'retouchareamaskmaskdigest' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskDigest'] }, + 'retouchareamaskmaskinverted' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskInverted'] }, + 'retouchareamaskmaskname' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskName'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskName'] }, + 'retouchareamaskmasks' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasks'], 519 => [\'RetouchAreas','RetouchAreasMasksMasks'] }, + 'retouchareamaskmasksalpha' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksAlpha'] }, + 'retouchareamaskmasksangle' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksAngle'] }, + 'retouchareamaskmasksbottom' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksBottom'] }, + 'retouchareamaskmaskscentervalue' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksCenterValue'] }, + 'retouchareamaskmaskscenterweight' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksCenterWeight'] }, + 'retouchareamaskmasksdabs' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksDabs'] }, + 'retouchareamaskmasksfeather' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksFeather'] }, + 'retouchareamaskmasksflipped' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksFlipped'] }, + 'retouchareamaskmasksflow' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksFlow'] }, + 'retouchareamaskmasksfullx' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksFullX'] }, + 'retouchareamaskmasksfully' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksFullY'] }, + 'retouchareamaskmasksinputdigest' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksInputDigest'] }, + 'retouchareamaskmasksleft' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksLeft'] }, + 'retouchareamaskmasksmaskactive' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskActive'] }, + 'retouchareamaskmasksmaskblendmode' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskBlendMode'] }, + 'retouchareamaskmasksmaskdigest' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskDigest'] }, + 'retouchareamaskmasksmaskinverted' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskInverted'] }, + 'retouchareamaskmasksmaskname' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskName'] }, + 'retouchareamaskmasksmasksubtype' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSubType'] }, + 'retouchareamaskmasksmasksyncid' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskSyncID'] }, + 'retouchareamaskmasksmaskversion' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskVersion'] }, + 'retouchareamaskmasksmidpoint' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMidpoint'] }, + 'retouchareamaskmasksorigin' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksOrigin'] }, + 'retouchareamaskmasksperimetervalue' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksPerimeterValue'] }, + 'retouchareamaskmasksradius' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksRadius'] }, + 'retouchareamaskmasksreferencepoint' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksReferencePoint'] }, + 'retouchareamaskmasksright' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksRight'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksRight'] }, + 'retouchareamaskmasksroundness' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksRoundness'] }, + 'retouchareamaskmaskssizex' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksSizeX'] }, + 'retouchareamaskmaskssizey' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksSizeY'] }, + 'retouchareamaskmaskstop' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksTop'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksTop'] }, + 'retouchareamaskmasksubtype' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskSubType'] }, + 'retouchareamaskmasksvalue' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksMaskValue'] }, + 'retouchareamaskmasksversion' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksVersion'] }, + 'retouchareamaskmaskswhat' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksWhat'] }, + 'retouchareamaskmaskswholeimagearea' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksWholeImageArea'] }, + 'retouchareamaskmasksx' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksX'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksX'] }, + 'retouchareamaskmasksy' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksY'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksY'] }, + 'retouchareamaskmasksyncid' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskSyncID'] }, + 'retouchareamaskmaskszerox' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksZeroX'] }, + 'retouchareamaskmaskszeroy' => { 517 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'], 519 => [\'RetouchAreas','RetouchAreasMasksMasksZeroY'] }, + 'retouchareamaskmaskversion' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskVersion'] }, + 'retouchareamaskmidpoint' => { 517 => [\'RetouchAreas','RetouchAreasMasksMidpoint'], 519 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] }, + 'retouchareamaskorigin' => { 517 => [\'RetouchAreas','RetouchAreasMasksOrigin'], 519 => [\'RetouchAreas','RetouchAreasMasksOrigin'] }, + 'retouchareamaskperimetervalue' => { 517 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'], 519 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] }, + 'retouchareamaskradius' => { 517 => [\'RetouchAreas','RetouchAreasMasksRadius'], 519 => [\'RetouchAreas','RetouchAreasMasksRadius'] }, + 'retouchareamaskrange' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMask'] }, + 'retouchareamaskrangeareamodels' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModels'] }, + 'retouchareamaskrangeareamodelscolorsampleinfo' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsColorRangeMaskAreaSampleInfo'] }, + 'retouchareamaskrangeareamodelscomponents' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskAreaModelsAreaComponents'] }, + 'retouchareamaskrangecoloramount' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskColorAmount'] }, + 'retouchareamaskrangedepthfeather' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthFeather'] }, + 'retouchareamaskrangedepthmax' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMax'] }, + 'retouchareamaskrangedepthmin' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskDepthMin'] }, + 'retouchareamaskrangeinvert' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskInvert'] }, + 'retouchareamaskrangelumfeather' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumFeather'] }, + 'retouchareamaskrangeluminancedepthsampleinfo' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLuminanceDepthSampleInfo'] }, + 'retouchareamaskrangelummax' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMax'] }, + 'retouchareamaskrangelummin' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumMin'] }, + 'retouchareamaskrangelumrange' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskLumRange'] }, + 'retouchareamaskrangesampletype' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskSampleType'] }, + 'retouchareamaskrangetype' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskType'] }, + 'retouchareamaskrangeversion' => { 517 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'], 519 => [\'RetouchAreas','RetouchAreasMasksCorrectionRangeMaskVersion'] }, + 'retouchareamaskreferencepoint' => { 517 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'], 519 => [\'RetouchAreas','RetouchAreasMasksReferencePoint'] }, + 'retouchareamaskright' => { 517 => [\'RetouchAreas','RetouchAreasMasksRight'], 519 => [\'RetouchAreas','RetouchAreasMasksRight'] }, + 'retouchareamaskroundness' => { 517 => [\'RetouchAreas','RetouchAreasMasksRoundness'], 519 => [\'RetouchAreas','RetouchAreasMasksRoundness'] }, + 'retouchareamasks' => { 517 => [\'RetouchAreas','RetouchAreasMasks'], 519 => [\'RetouchAreas','RetouchAreasMasks'] }, + 'retouchareamasksizex' => { 517 => [\'RetouchAreas','RetouchAreasMasksSizeX'], 519 => [\'RetouchAreas','RetouchAreasMasksSizeX'] }, + 'retouchareamasksizey' => { 517 => [\'RetouchAreas','RetouchAreasMasksSizeY'], 519 => [\'RetouchAreas','RetouchAreasMasksSizeY'] }, + 'retouchareamasktop' => { 517 => [\'RetouchAreas','RetouchAreasMasksTop'], 519 => [\'RetouchAreas','RetouchAreasMasksTop'] }, + 'retouchareamaskvalue' => { 517 => [\'RetouchAreas','RetouchAreasMasksMaskValue'], 519 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] }, + 'retouchareamaskversion' => { 517 => [\'RetouchAreas','RetouchAreasMasksVersion'], 519 => [\'RetouchAreas','RetouchAreasMasksVersion'] }, + 'retouchareamaskwhat' => { 517 => [\'RetouchAreas','RetouchAreasMasksWhat'], 519 => [\'RetouchAreas','RetouchAreasMasksWhat'] }, + 'retouchareamaskwholeimagearea' => { 517 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'], 519 => [\'RetouchAreas','RetouchAreasMasksWholeImageArea'] }, + 'retouchareamaskx' => { 517 => [\'RetouchAreas','RetouchAreasMasksX'], 519 => [\'RetouchAreas','RetouchAreasMasksX'] }, + 'retouchareamasky' => { 517 => [\'RetouchAreas','RetouchAreasMasksY'], 519 => [\'RetouchAreas','RetouchAreasMasksY'] }, + 'retouchareamaskzerox' => { 517 => [\'RetouchAreas','RetouchAreasMasksZeroX'], 519 => [\'RetouchAreas','RetouchAreasMasksZeroX'] }, + 'retouchareamaskzeroy' => { 517 => [\'RetouchAreas','RetouchAreasMasksZeroY'], 519 => [\'RetouchAreas','RetouchAreasMasksZeroY'] }, + 'retouchareamethod' => { 517 => [\'RetouchAreas','RetouchAreasMethod'], 519 => [\'RetouchAreas','RetouchAreasMethod'] }, + 'retouchareaoffsety' => { 517 => [\'RetouchAreas','RetouchAreasOffsetY'], 519 => [\'RetouchAreas','RetouchAreasOffsetY'] }, + 'retouchareaopacity' => { 517 => [\'RetouchAreas','RetouchAreasOpacity'], 519 => [\'RetouchAreas','RetouchAreasOpacity'] }, + 'retouchareas' => { 517 => 'RetouchAreas', 519 => 'RetouchAreas' }, + 'retouchareaseed' => { 517 => [\'RetouchAreas','RetouchAreasSeed'], 519 => [\'RetouchAreas','RetouchAreasSeed'] }, + 'retouchareasourcestate' => { 517 => [\'RetouchAreas','RetouchAreasSourceState'], 519 => [\'RetouchAreas','RetouchAreasSourceState'] }, + 'retouchareasourcex' => { 517 => [\'RetouchAreas','RetouchAreasSourceX'], 519 => [\'RetouchAreas','RetouchAreasSourceX'] }, + 'retouchareaspottype' => { 517 => [\'RetouchAreas','RetouchAreasSpotType'], 519 => [\'RetouchAreas','RetouchAreasSpotType'] }, 'retouchhistory' => { 241 => 0x9e }, - 'retouchinfo' => { 515 => 'RetouchInfo', 517 => 'RetouchInfo' }, - 'retouchnefprocessing' => { 263 => 0x5 }, + 'retouchinfo' => { 517 => 'RetouchInfo', 519 => 'RetouchInfo' }, + 'retouchnefprocessing' => { 264 => 0x5 }, 'retractlensonpoweroff' => { 89 => 0x814 }, - 'reuse' => { 336 => 'Reuse' }, - 'reuseallowed' => { 547 => 'ReuseAllowed' }, - 'reuseprohibited' => { 537 => 'reuseProhibited' }, - 'reverseexposurecompdial' => { 313 => '5.2' }, - 'reversefocusring' => { 322 => 0x163, 323 => 0x163, 324 => 0x17b }, - 'reverseindicators' => { 306 => '12.1', 307 => '6.1', 309 => '6.1', 310 => '6.1', 311 => '4.3', 312 => '5.2', 313 => '5.4', 315 => '33.5', 316 => '5.1', 319 => '6.1', 320 => '6.1', 321 => '6.2', 322 => 0xc1, 323 => 0xc1, 324 => 0xc1 }, - 'reverseshutterspeedaperture' => { 313 => '5.3' }, - 'revision' => { 519 => 'revision' }, + 'reuse' => { 338 => 'Reuse' }, + 'reuseallowed' => { 549 => 'ReuseAllowed' }, + 'reuseprohibited' => { 539 => 'reuseProhibited' }, + 'reverseexposurecompdial' => { 314 => '5.2' }, + 'reversefocusring' => { 324 => 0x163, 325 => 0x163, 326 => 0x17b }, + 'reverseindicators' => { 307 => '12.1', 308 => '6.1', 310 => '6.1', 311 => '6.1', 312 => '4.3', 313 => '5.2', 314 => '5.4', 316 => '33.5', 317 => '5.1', 320 => '6.1', 321 => '6.1', 322 => '6.2', 323 => 0xc5, 324 => 0xc1, 325 => 0xc1, 326 => 0xc1 }, + 'reverseshutterspeedaperture' => { 314 => '5.3' }, + 'revision' => { 521 => 'revision' }, 'rflensmffocusringsensitivity' => { 89 => 0x714 }, 'rflenstype' => { 60 => 0x3d }, 'rgbcurvelimits' => { 113 => 0x238 }, 'rgbcurvepoints' => { 112 => 0x7, 113 => 0x20e }, 'rgbtables' => { 124 => 0xcd3f }, - 'richtextcomment' => { 524 => 'RichTextComment' }, - 'ricohdate' => { 417 => 0x6 }, - 'ricohimageheight' => { 417 => 0x2 }, - 'ricohimagewidth' => { 417 => 0x0 }, - 'rightalbedo' => { 506 => 'RightAlbedo' }, + 'richtextcomment' => { 526 => 'RichTextComment' }, + 'ricohdate' => { 419 => 0x6 }, + 'ricohimageheight' => { 419 => 0x2 }, + 'ricohimagewidth' => { 419 => 0x0 }, + 'rightalbedo' => { 508 => 'RightAlbedo' }, 'rightascension' => { 170 => 'RightAscension' }, - 'rights' => { 518 => 'rights' }, - 'rightsagent' => { 537 => 'rightsAgent' }, - 'rightsowner' => { 537 => 'rightsOwner' }, - 'roll' => { 120 => 0x8, 411 => ['roll',"\xa9frl"] }, - 'rollangle' => { 65 => 0x4, 132 => 0x144d, 255 => 0x0, 326 => 0x903, 340 => 'RollAngle', 350 => 0x90, 384 => 0x1, 385 => 0x3, 423 => 0x2 }, + 'rights' => { 520 => 'rights' }, + 'rightsagent' => { 539 => 'rightsAgent' }, + 'rightsowner' => { 539 => 'rightsOwner' }, + 'roll' => { 120 => 0x8, 413 => ['roll',"\xa9frl"] }, + 'rollangle' => { 65 => 0x4, 132 => 0x144d, 256 => 0x0, 328 => 0x903, 342 => 'RollAngle', 352 => 0x90, 386 => 0x1, 387 => 0x3, 425 => 0x2 }, 'romoperationmode' => { 102 => 0x80d }, - 'rotation' => { 31 => 0x17, 32 => 0x18, 101 => 0x3, 108 => 0x10002, 113 => 0x26e, 119 => 'QuickTime-Rotation', 128 => 0x4, 170 => 'Rotation', 187 => [0x65,0x50], 188 => 0x46, 189 => 0x5a, 192 => 0x10, 264 => 0x1a, 279 => 0x3693, 285 => '590.1', 299 => 0x76a43207, 350 => 0x30, 366 => '17.2', 397 => 0xd8, 404 => 'irot', 438 => 0x3f, 439 => 0x3f, 449 => 0x10 }, - 'routedto' => { 523 => 'RoutedTo' }, - 'routing' => { 402 => 'Routing' }, - 'routingdestinations' => { 505 => 'RoutingDestinations' }, - 'routingexclusions' => { 505 => 'RoutingExclusions' }, - 'routingnotes' => { 523 => 'RoutingNotes' }, + 'rotation' => { 31 => 0x17, 32 => 0x18, 101 => 0x3, 108 => 0x10002, 113 => 0x26e, 119 => 'QuickTime-Rotation', 128 => 0x4, 170 => 'Rotation', 187 => [0x65,0x50], 188 => 0x46, 189 => 0x5a, 192 => 0x10, 265 => 0x1a, 280 => 0x3693, 286 => '590.1', 300 => 0x76a43207, 352 => 0x30, 368 => '17.2', 399 => 0xd8, 406 => 'irot', 440 => 0x3f, 441 => 0x3f, 451 => 0x10 }, + 'routedto' => { 525 => 'RoutedTo' }, + 'routing' => { 404 => 'Routing' }, + 'routingdestinations' => { 507 => 'RoutingDestinations' }, + 'routingexclusions' => { 507 => 'RoutingExclusions' }, + 'routingnotes' => { 525 => 'RoutingNotes' }, 'rowsperstrip' => { 124 => 0x116 }, - 'rpp' => { 510 => 'rpp' }, + 'rpp' => { 512 => 'rpp' }, 'rtkflag' => { 121 => 'RtkFlag' }, 'rtkstdhgt' => { 121 => 'RtkStdHgt' }, 'rtkstdlat' => { 121 => 'RtkStdLat' }, @@ -6320,35 +6324,36 @@ my %tagLookup = ( 'safetyshiftinavortv' => { 87 => 0x10, 88 => 0x10, 90 => 0xf, 91 => 0x10, 94 => 0x10 }, 'sameexposurefornewaperture' => { 89 => 0x112 }, 'samplebits' => { 160 => 'SampleBits' }, - 'samplepagerange' => { 534 => 'samplePageRange' }, + 'samplepagerange' => { 536 => 'samplePageRange' }, 'samplerate' => { 160 => 'SampleRate' }, - 'samplesperpixel' => { 124 => 0x115, 355 => 0x8, 540 => 'SamplesPerPixel' }, + 'samplesperpixel' => { 124 => 0x115, 357 => 0x8, 542 => 'SamplesPerPixel' }, 'samplestructure' => { 138 => 0x5a }, - 'samsungmodelid' => { 425 => 0x3 }, - 'sanyoquality' => { 427 => 0x201 }, - 'sanyothumbnail' => { 427 => 0x100 }, - 'saturation' => { 10 => 0x6e, 12 => 0x76, 36 => 0xe, 54 => 0x1, 67 => 0x7, 117 => 0xd, 118 => [0x3013,0x1f], 124 => [0xa409,0xfe55], 132 => 0x1003, 161 => 'Saturation', 186 => 0x1f, 187 => 0x32, 188 => 0x28, 189 => 0x1a, 194 => 0x1, 241 => 0xaa, 257 => 0x35, 258 => 0x3b, 259 => 0x43, 350 => 0x40, 352 => 0x300d, 386 => 0x1f, 393 => 0xd, 412 => 0x27, 414 => 0x58, 417 => 0x28, 418 => 0x1013, 428 => 0x10, 438 => 0x1e, 439 => 0x1b, 452 => 0x2005, 515 => 'Saturation', 517 => 'Saturation', 521 => 'Saturation' }, - 'saturationadj' => { 108 => 0x20901, 113 => 0x116, 241 => 0x94, 298 => 0x1, 302 => 0x2e, 489 => 0x8016 }, - 'saturationadjustmentaqua' => { 515 => 'SaturationAdjustmentAqua', 517 => 'SaturationAdjustmentAqua' }, - 'saturationadjustmentblue' => { 515 => 'SaturationAdjustmentBlue', 517 => 'SaturationAdjustmentBlue' }, - 'saturationadjustmentgreen' => { 515 => 'SaturationAdjustmentGreen', 517 => 'SaturationAdjustmentGreen' }, - 'saturationadjustmentmagenta' => { 515 => 'SaturationAdjustmentMagenta', 517 => 'SaturationAdjustmentMagenta' }, - 'saturationadjustmentorange' => { 515 => 'SaturationAdjustmentOrange', 517 => 'SaturationAdjustmentOrange' }, - 'saturationadjustmentpurple' => { 515 => 'SaturationAdjustmentPurple', 517 => 'SaturationAdjustmentPurple' }, - 'saturationadjustmentred' => { 515 => 'SaturationAdjustmentRed', 517 => 'SaturationAdjustmentRed' }, - 'saturationadjustmentyellow' => { 515 => 'SaturationAdjustmentYellow', 517 => 'SaturationAdjustmentYellow' }, + 'samsungmodelid' => { 427 => 0x3 }, + 'sanyoquality' => { 429 => 0x201 }, + 'sanyothumbnail' => { 429 => 0x100 }, + 'saturation' => { 10 => 0x6e, 12 => 0x76, 36 => 0xe, 54 => 0x1, 67 => 0x7, 117 => 0xd, 118 => [0x3013,0x1f], 124 => [0xa409,0xfe55], 132 => 0x1003, 161 => 'Saturation', 186 => 0x1f, 187 => 0x32, 188 => 0x28, 189 => 0x1a, 194 => 0x1, 241 => 0xaa, 258 => 0x35, 259 => 0x3b, 260 => 0x43, 352 => 0x40, 354 => 0x300d, 388 => 0x1f, 395 => 0xd, 414 => 0x27, 416 => 0x58, 419 => 0x28, 420 => 0x1013, 430 => 0x10, 440 => 0x1e, 441 => 0x1b, 454 => 0x2005, 517 => 'Saturation', 519 => 'Saturation', 523 => 'Saturation' }, + 'saturationadj' => { 108 => 0x20901, 113 => 0x116, 241 => 0x94, 299 => 0x1, 303 => 0x2e, 491 => 0x8016 }, + 'saturationadjustmentaqua' => { 517 => 'SaturationAdjustmentAqua', 519 => 'SaturationAdjustmentAqua' }, + 'saturationadjustmentblue' => { 517 => 'SaturationAdjustmentBlue', 519 => 'SaturationAdjustmentBlue' }, + 'saturationadjustmentgreen' => { 517 => 'SaturationAdjustmentGreen', 519 => 'SaturationAdjustmentGreen' }, + 'saturationadjustmentmagenta' => { 517 => 'SaturationAdjustmentMagenta', 519 => 'SaturationAdjustmentMagenta' }, + 'saturationadjustmentorange' => { 517 => 'SaturationAdjustmentOrange', 519 => 'SaturationAdjustmentOrange' }, + 'saturationadjustmentpurple' => { 517 => 'SaturationAdjustmentPurple', 519 => 'SaturationAdjustmentPurple' }, + 'saturationadjustmentred' => { 517 => 'SaturationAdjustmentRed', 519 => 'SaturationAdjustmentRed' }, + 'saturationadjustmentyellow' => { 517 => 'SaturationAdjustmentYellow', 519 => 'SaturationAdjustmentYellow' }, 'saturationauto' => { 75 => 0x98 }, 'saturationfaithful' => { 19 => 0xfe, 74 => 0x68, 75 => 0x68 }, 'saturationlandscape' => { 19 => 0xfc, 74 => 0x38, 75 => 0x38 }, 'saturationmonochrome' => { 74 => 0x80, 75 => 0x80 }, 'saturationneutral' => { 19 => 0xfd, 74 => 0x50, 75 => 0x50 }, 'saturationportrait' => { 19 => 0xfb, 74 => 0x20, 75 => 0x20 }, - 'saturationsetting' => { 334 => 0x1010, 440 => 0x11, 457 => 0x9 }, + 'saturationsetting' => { 336 => 0x1010, 442 => 0x11, 459 => 0x9 }, 'saturationstandard' => { 19 => 0xfa, 74 => 0x8, 75 => 0x8 }, 'saturationuserdef1' => { 19 => 0x100, 74 => 0x98, 75 => 0xb0 }, 'saturationuserdef2' => { 19 => 0x101, 74 => 0xb0, 75 => 0xc8 }, 'saturationuserdef3' => { 19 => 0x102, 74 => 0xc8, 75 => 0xe0 }, - 'saveid' => { 545 => 'SaveID' }, + 'savefocusposition' => { 245 => 0x9b0 }, + 'saveid' => { 547 => 'SaveID' }, 'sbaanalysiscomplete' => { 143 => 0xc35 }, 'sbablack' => { 143 => 0xc25 }, 'sbagmoffset' => { 143 => 0xc4a }, @@ -6360,320 +6365,320 @@ my %tagLookup = ( 'sbalowgray' => { 143 => 0xc47 }, 'sbaneutralbal' => { 143 => 0xc32 }, 'sbawhite' => { 143 => 0xc27 }, - 'scaletype' => { 544 => 'scaleType' }, - 'scalingfactorheight' => { 340 => 'ScalingFactorHeight' }, - 'scanimageenhancer' => { 265 => 0x60 }, + 'scaletype' => { 546 => 'scaleType' }, + 'scalingfactorheight' => { 342 => 'ScalingFactorHeight' }, + 'scanimageenhancer' => { 266 => 0x60 }, 'scanningdirection' => { 138 => 0x64 }, - 'scene' => { 411 => 'scen', 528 => 'Scene', 544 => 'scene' }, - 'scenearea' => { 329 => 0x211, 331 => 0x1031 }, + 'scene' => { 413 => 'scen', 530 => 'Scene', 546 => 'scene' }, + 'scenearea' => { 331 => 0x211, 333 => 0x1031 }, 'sceneassist' => { 241 => 0x9c }, - 'scenecapturetype' => { 124 => 0xa406, 521 => 'SceneCaptureType' }, - 'scenedetect' => { 329 => 0x210, 331 => 0x1030 }, - 'scenedetectdata' => { 329 => 0x212, 331 => 0x1033 }, + 'scenecapturetype' => { 124 => 0xa406, 523 => 'SceneCaptureType' }, + 'scenedetect' => { 331 => 0x210, 333 => 0x1030 }, + 'scenedetectdata' => { 331 => 0x212, 333 => 0x1033 }, 'sceneflags' => { 1 => 0x25 }, - 'scenemode' => { 147 => 0xfa02, 191 => 0x100, 241 => 0x8f, 326 => 0x509, 331 => 0x403, 350 => 0x8001, 359 => 0xf, 452 => 0xb023 }, + 'scenemode' => { 147 => 0xfa02, 191 => 0x100, 241 => 0x8f, 328 => 0x509, 333 => 0x403, 352 => 0x8001, 361 => 0xf, 454 => 0xb023 }, 'scenemodeused' => { 149 => [0x6002,0xf002] }, 'scenerecognition' => { 132 => 0x1425 }, - 'scenereferred' => { 525 => 'scene_referred' }, - 'sceneselect' => { 427 => 0x21f }, - 'scenetype' => { 124 => 0xa301, 521 => 'SceneType' }, - 'screentips' => { 306 => '12.7', 307 => '5.3', 315 => '13.1', 316 => '4.4', 319 => '5.4', 321 => '5.1' }, + 'scenereferred' => { 527 => 'scene_referred' }, + 'sceneselect' => { 429 => 0x21f }, + 'scenetype' => { 124 => 0xa301, 523 => 'SceneType' }, + 'screentips' => { 307 => '12.7', 308 => '5.3', 316 => '13.1', 317 => '4.4', 320 => '5.4', 322 => '5.1' }, 'scriptversion' => { 143 => 0x1770 }, - 'sdrblend' => { 515 => 'SDRBlend', 517 => 'SDRBlend' }, - 'sdrbrightness' => { 515 => 'SDRBrightness', 517 => 'SDRBrightness' }, - 'sdrcontrast' => { 515 => 'SDRContrast', 517 => 'SDRContrast' }, - 'sdrhighlights' => { 515 => 'SDRHighlights', 517 => 'SDRHighlights' }, - 'sdrshadows' => { 515 => 'SDRShadows', 517 => 'SDRShadows' }, - 'sdrwhites' => { 515 => 'SDRWhites', 517 => 'SDRWhites' }, - 'season' => { 529 => 'Season', 533 => 'season' }, - 'seasonidentifier' => { 529 => [\'Season','SeasonIdentifier'] }, - 'seasonname' => { 529 => [\'Season','SeasonName'] }, - 'seasonnumber' => { 529 => [\'Season','SeasonNumber'] }, - 'secondaryftp' => { 505 => 'SecondaryFTP' }, - 'secondaryslotfunction' => { 246 => 0x240, 247 => 0x240, 248 => 0x22c, 249 => 0x240, 250 => 0x240, 268 => 0x13c, 279 => 0x1d0 }, - 'section' => { 534 => 'section' }, + 'sdrblend' => { 517 => 'SDRBlend', 519 => 'SDRBlend' }, + 'sdrbrightness' => { 517 => 'SDRBrightness', 519 => 'SDRBrightness' }, + 'sdrcontrast' => { 517 => 'SDRContrast', 519 => 'SDRContrast' }, + 'sdrhighlights' => { 517 => 'SDRHighlights', 519 => 'SDRHighlights' }, + 'sdrshadows' => { 517 => 'SDRShadows', 519 => 'SDRShadows' }, + 'sdrwhites' => { 517 => 'SDRWhites', 519 => 'SDRWhites' }, + 'season' => { 531 => 'Season', 535 => 'season' }, + 'seasonidentifier' => { 531 => [\'Season','SeasonIdentifier'] }, + 'seasonname' => { 531 => [\'Season','SeasonName'] }, + 'seasonnumber' => { 531 => [\'Season','SeasonNumber'] }, + 'secondaryftp' => { 507 => 'SecondaryFTP' }, + 'secondaryslotfunction' => { 245 => 0x35a, 247 => 0x240, 248 => 0x240, 249 => 0x22c, 250 => 0x240, 251 => 0x240, 269 => 0x13c, 280 => 0x1d0 }, + 'section' => { 536 => 'section' }, 'securityclassification' => { 124 => 0x9212 }, 'selectableafpoint' => { 89 => 0x509 }, 'selectafareaselectionmode' => { 2 => 0xc }, 'selectafareaselectmode' => { 89 => 0x512 }, 'selfdata' => { 121 => 'SelfData' }, - 'selftimer' => { 36 => 0x2, 350 => 0x2e, 427 => 0x214, 461 => 0x1134, 462 => 0x1134, 463 => 0x1110, 464 => 0x118c, 465 => 0x1168, 466 => 0x1020, 467 => 0x218, 468 => 0x218, 469 => 0x210 }, + 'selftimer' => { 36 => 0x2, 352 => 0x2e, 429 => 0x214, 463 => 0x1134, 464 => 0x1134, 465 => 0x1110, 466 => 0x118c, 467 => 0x1168, 468 => 0x1020, 469 => 0x218, 470 => 0x218, 471 => 0x210 }, 'selftimer2' => { 81 => 0x1d }, - 'selftimerinterval' => { 316 => '19.2' }, + 'selftimerinterval' => { 317 => '19.2' }, 'selftimermode' => { 124 => 0x882b }, - 'selftimershotcount' => { 307 => '20.2', 309 => '20.3', 310 => '20.3', 311 => '18.2', 312 => '19.2', 313 => '19.2', 314 => '19.3', 316 => '19.3', 319 => '20.3', 320 => '20.3', 321 => '20.2', 322 => 0x2d, 323 => 0x2d, 324 => 0x2d }, - 'selftimershotinterval' => { 307 => '20.3', 309 => '20.2', 310 => '20.2', 314 => '19.2', 319 => '20.2', 320 => '20.2', 322 => 0x31, 323 => 0x31, 324 => 0x31 }, - 'selftimertime' => { 102 => 0x1806, 189 => 0x1f, 306 => '18.1', 307 => '20.1', 308 => '3.3', 309 => '20.1', 310 => '20.1', 311 => '18.1', 312 => '19.1', 313 => '19.1', 314 => '19.1', 315 => '7.2', 316 => '19.1', 317 => '3.3', 319 => '20.1', 320 => '20.1', 321 => '20.1', 322 => 0x2b, 323 => 0x2b, 324 => 0x2b }, - 'sellingagency' => { 534 => 'sellingAgency' }, + 'selftimershotcount' => { 308 => '20.2', 310 => '20.3', 311 => '20.3', 312 => '18.2', 313 => '19.2', 314 => '19.2', 315 => '19.3', 317 => '19.3', 320 => '20.3', 321 => '20.3', 322 => '20.2', 323 => 0x31, 324 => 0x2d, 325 => 0x2d, 326 => 0x2d }, + 'selftimershotinterval' => { 308 => '20.3', 310 => '20.2', 311 => '20.2', 315 => '19.2', 320 => '20.2', 321 => '20.2', 323 => 0x35, 324 => 0x31, 325 => 0x31, 326 => 0x31 }, + 'selftimertime' => { 102 => 0x1806, 189 => 0x1f, 307 => '18.1', 308 => '20.1', 309 => '3.3', 310 => '20.1', 311 => '20.1', 312 => '18.1', 313 => '19.1', 314 => '19.1', 315 => '19.1', 316 => '7.2', 317 => '19.1', 318 => '3.3', 320 => '20.1', 321 => '20.1', 322 => '20.1', 323 => 0x2d, 324 => 0x2b, 325 => 0x2b, 326 => 0x2b }, + 'sellingagency' => { 536 => 'sellingAgency' }, 'semanticstyle' => { 1 => 0x40 }, 'semanticstylepreset' => { 1 => 0x42 }, 'semanticstylerenderingver' => { 1 => 0x41 }, 'seminfo' => { 124 => 0x8546 }, - 'sensingmethod' => { 124 => 0xa217, 521 => 'SensingMethod' }, - 'sensitivityadjust' => { 386 => 0x40 }, - 'sensitivitysteps' => { 366 => ['14.3','17.4'], 368 => 0x1 }, - 'sensitivitytype' => { 124 => 0x8830, 522 => 'SensitivityType' }, + 'sensingmethod' => { 124 => 0xa217, 523 => 'SensingMethod' }, + 'sensitivityadjust' => { 388 => 0x40 }, + 'sensitivitysteps' => { 368 => ['14.3','17.4'], 370 => 0x1 }, + 'sensitivitytype' => { 124 => 0x8830, 524 => 'SensitivityType' }, 'sensor' => { 196 => 0x665e }, - 'sensorarea' => { 331 => 0x400 }, - 'sensorareas' => { 425 => 0xa010 }, - 'sensorbitdepth' => { 352 => 0x312d }, + 'sensorarea' => { 333 => 0x400 }, + 'sensorareas' => { 427 => 0xa010 }, + 'sensorbitdepth' => { 354 => 0x312d }, 'sensorbluelevel' => { 78 => 0x5 }, - 'sensorcalibration' => { 330 => 0x805 }, + 'sensorcalibration' => { 332 => 0x805 }, 'sensorcleaning' => { 95 => 0xd }, 'sensorfullheight' => { 142 => 0xf904 }, 'sensorfullwidth' => { 142 => 0xf903 }, - 'sensorheight' => { 142 => 0xf901, 147 => 0xfa21, 193 => 0x8, 352 => 0x312c, 395 => 0x109, 418 => 0x1602 }, + 'sensorheight' => { 142 => 0xf901, 147 => 0xfa21, 193 => 0x8, 354 => 0x312c, 397 => 0x109, 420 => 0x1602 }, 'sensorimageheight' => { 143 => 0x3ee }, 'sensorimagewidth' => { 143 => 0x3ed }, 'sensorleftborder' => { 143 => 0x3eb }, - 'sensorleftmargin' => { 395 => 0x10a }, + 'sensorleftmargin' => { 397 => 0x10a }, 'sensorpixelsize' => { 241 => 0x9a }, 'sensorredlevel' => { 78 => 0x4 }, 'sensorserialnumber' => { 143 => 0x9ce }, - 'sensorshield' => { 246 => 0x76b, 247 => 0x77b, 248 => 0x66d, 249 => 0x69d, 250 => 0x705 }, - 'sensorsize' => { 161 => 'SensorSize', 386 => 0x35 }, - 'sensortemperature' => { 329 => 0x1500, 331 => 0x1007, 391 => 0xc, 395 => 0x210, 428 => [0x39,0x55] }, - 'sensortemperature2' => { 391 => 0xe, 395 => 0x211 }, + 'sensorshield' => { 247 => 0x76b, 248 => 0x77b, 249 => 0x66d, 250 => 0x69d, 251 => 0x705 }, + 'sensorsize' => { 161 => 'SensorSize', 388 => 0x35 }, + 'sensortemperature' => { 331 => 0x1500, 333 => 0x1007, 393 => 0xc, 397 => 0x210, 430 => [0x39,0x55] }, + 'sensortemperature2' => { 393 => 0xe, 397 => 0x211 }, 'sensortopborder' => { 143 => 0x3ec }, - 'sensortopmargin' => { 395 => 0x10b }, - 'sensortype' => { 350 => 0xca }, - 'sensorwidth' => { 142 => 0xf900, 147 => 0xfa20, 193 => 0xa, 352 => 0x312b, 395 => 0x108, 418 => 0x1601 }, - 'sequence' => { 412 => 0x7, 413 => 0x35, 414 => 0x36 }, - 'sequencefilenumber' => { 462 => 0x4, 463 => 0x4, 464 => 0x4, 465 => 0x4, 475 => 0xc, 476 => 0xc, 477 => 0x1a }, - 'sequenceimagenumber' => { 462 => 0x0, 463 => 0x0, 464 => 0x0, 465 => 0x0, 475 => 0x8, 476 => 0x8, 477 => 0x12, 484 => 0x24 }, - 'sequencelength' => { 475 => 0x22, 476 => 0x1e, 477 => [0x16,0x1e] }, - 'sequencename' => { 533 => 'sequenceName' }, - 'sequencenumber' => { 81 => 0x9, 118 => 0x301c, 132 => 0x1101, 145 => 0x1d, 286 => 0x51c, 350 => 0x2b, 440 => [0x10c,0x30c], 452 => 0xb04a, 533 => 'sequenceNumber' }, - 'sequenceshotinterval' => { 427 => 0x224 }, - 'sequencetotalnumber' => { 533 => 'sequenceTotalNumber' }, - 'sequentialshot' => { 427 => 0x20e }, - 'serialnumber' => { 68 => 0xc, 102 => 0x180b, 124 => [0xa431,0xfde9], 142 => 0xfa04, 144 => 0xfa00, 146 => 0xc354, 147 => 0xfa19, 158 => 0x0, 161 => 'SerialNumber', 196 => 0x5501, 241 => [0xa0,0x1d], 327 => 0x101, 331 => [0x404,0x101a], 345 => 0x303, 347 => 0x305, 352 => 0x3103, 386 => 0x229, 395 => 0x102, 396 => 0x407, 411 => ['SNum','slno'], 412 => 0x15, 413 => 0x4b, 414 => 0x7e, 418 => 0x5, 425 => 0xa002, 428 => 0x2, 452 => 0x2031, 512 => 'SerialNumber', 522 => 'BodySerialNumber' }, + 'sensortopmargin' => { 397 => 0x10b }, + 'sensortype' => { 352 => 0xca }, + 'sensorwidth' => { 142 => 0xf900, 147 => 0xfa20, 193 => 0xa, 354 => 0x312b, 397 => 0x108, 420 => 0x1601 }, + 'sequence' => { 414 => 0x7, 415 => 0x35, 416 => 0x36 }, + 'sequencefilenumber' => { 464 => 0x4, 465 => 0x4, 466 => 0x4, 467 => 0x4, 477 => 0xc, 478 => 0xc, 479 => 0x1a }, + 'sequenceimagenumber' => { 464 => 0x0, 465 => 0x0, 466 => 0x0, 467 => 0x0, 477 => 0x8, 478 => 0x8, 479 => 0x12, 486 => 0x24 }, + 'sequencelength' => { 477 => 0x22, 478 => 0x1e, 479 => [0x16,0x1e] }, + 'sequencename' => { 535 => 'sequenceName' }, + 'sequencenumber' => { 81 => 0x9, 118 => 0x301c, 132 => 0x1101, 145 => 0x1d, 287 => 0x51c, 352 => 0x2b, 442 => [0x10c,0x30c], 454 => 0xb04a, 535 => 'sequenceNumber' }, + 'sequenceshotinterval' => { 429 => 0x224 }, + 'sequencetotalnumber' => { 535 => 'sequenceTotalNumber' }, + 'sequentialshot' => { 429 => 0x20e }, + 'serialnumber' => { 68 => 0xc, 102 => 0x180b, 124 => [0xa431,0xfde9], 142 => 0xfa04, 144 => 0xfa00, 146 => 0xc354, 147 => 0xfa19, 158 => 0x0, 161 => 'SerialNumber', 196 => 0x5501, 241 => [0xa0,0x1d], 329 => 0x101, 333 => [0x404,0x101a], 347 => 0x303, 349 => 0x305, 354 => 0x3103, 388 => 0x229, 397 => 0x102, 398 => 0x407, 413 => ['SNum','slno'], 414 => 0x15, 415 => 0x4b, 416 => 0x7e, 420 => 0x5, 427 => 0xa002, 430 => 0x2, 454 => 0x2031, 514 => 'SerialNumber', 524 => 'BodySerialNumber' }, 'serialnumberformat' => { 68 => 0x15, 102 => 0x183b }, - 'serialnumberhash' => { 411 => 'CAME' }, - 'series' => { 529 => 'Series' }, - 'seriesdatetime' => { 492 => 'SeriesDateTime' }, - 'seriesdescription' => { 492 => 'SeriesDescription' }, - 'seriesidentifier' => { 529 => [\'Series','SeriesIdentifier'] }, - 'seriesmodality' => { 492 => 'SeriesModality' }, - 'seriesname' => { 529 => [\'Series','SeriesName'] }, - 'seriesnumber' => { 492 => 'SeriesNumber', 534 => 'seriesNumber' }, - 'seriestitle' => { 534 => 'seriesTitle' }, + 'serialnumberhash' => { 413 => 'CAME' }, + 'series' => { 531 => 'Series' }, + 'seriesdatetime' => { 494 => 'SeriesDateTime' }, + 'seriesdescription' => { 494 => 'SeriesDescription' }, + 'seriesidentifier' => { 531 => [\'Series','SeriesIdentifier'] }, + 'seriesmodality' => { 494 => 'SeriesModality' }, + 'seriesname' => { 531 => [\'Series','SeriesName'] }, + 'seriesnumber' => { 494 => 'SeriesNumber', 536 => 'seriesNumber' }, + 'seriestitle' => { 536 => 'seriesTitle' }, 'serviceidentifier' => { 137 => 0x1e }, - 'servingsize' => { 536 => 'servingSize' }, + 'servingsize' => { 538 => 'servingSize' }, 'setbuttoncrosskeysfunc' => { 92 => 0x0, 93 => 0x0 }, 'setbuttonwhenshooting' => { 87 => 0x1, 89 => 0x704, 95 => 0xc }, - 'setclockfromlocationdata' => { 248 => 0x61d, 249 => 0x64d, 250 => 0x6b5 }, + 'setclockfromlocationdata' => { 249 => 0x61d, 250 => 0x64d, 251 => 0x6b5 }, 'setfunctionwhenshooting' => { 90 => 0x0, 91 => 0x1, 94 => 0x1 }, - 'setting' => { 533 => 'setting' }, - 'shadingcompensation' => { 326 => 0x50c, 350 => 0x8a }, - 'shadingcompensation2' => { 330 => 0x1012 }, - 'shadow' => { 428 => 0xe }, + 'setting' => { 535 => 'setting' }, + 'shadingcompensation' => { 328 => 0x50c, 352 => 0x8a }, + 'shadingcompensation2' => { 332 => 0x1012 }, + 'shadow' => { 430 => 0xe }, 'shadowadj' => { 108 => 0x2030b }, - 'shadowcorrection' => { 386 => 0x79 }, - 'shadowprotection' => { 298 => 0x0 }, - 'shadows' => { 124 => 0xfe52, 452 => 0x2032, 509 => 'Shadows', 515 => 'Shadows', 517 => 'Shadows' }, - 'shadows2012' => { 515 => 'Shadows2012', 517 => 'Shadows2012' }, - 'shadowsadj' => { 489 => 0x901a }, + 'shadowcorrection' => { 388 => 0x79 }, + 'shadowprotection' => { 299 => 0x0 }, + 'shadows' => { 124 => 0xfe52, 454 => 0x2032, 511 => 'Shadows', 517 => 'Shadows', 519 => 'Shadows' }, + 'shadows2012' => { 517 => 'Shadows2012', 519 => 'Shadows2012' }, + 'shadowsadj' => { 491 => 0x901a }, 'shadowscale' => { 124 => 0xc633 }, - 'shadowtint' => { 515 => 'ShadowTint', 517 => 'ShadowTint' }, + 'shadowtint' => { 517 => 'ShadowTint', 519 => 'ShadowTint' }, 'shadowtone' => { 132 => 0x1040 }, - 'shakereduction' => { 388 => 0x1, 389 => 0x1 }, + 'shakereduction' => { 390 => 0x1, 391 => 0x1 }, 'shareduserrating' => { 184 => 'WM/SharedUserRating' }, - 'sharpendetail' => { 515 => 'SharpenDetail', 517 => 'SharpenDetail' }, - 'sharpenedgemasking' => { 515 => 'SharpenEdgeMasking', 517 => 'SharpenEdgeMasking' }, - 'sharpening' => { 352 => 0x300b }, - 'sharpeningadj' => { 302 => 0x2b }, + 'sharpendetail' => { 517 => 'SharpenDetail', 519 => 'SharpenDetail' }, + 'sharpenedgemasking' => { 517 => 'SharpenEdgeMasking', 519 => 'SharpenEdgeMasking' }, + 'sharpening' => { 354 => 0x300b }, + 'sharpeningadj' => { 303 => 0x2b }, 'sharpeningkernel' => { 143 => 0x92f }, - 'sharpenradius' => { 515 => 'SharpenRadius', 517 => 'SharpenRadius' }, - 'sharpness' => { 8 => [0x42,0x48], 10 => 0x72, 12 => 0x74, 36 => 0xf, 67 => 0x6, 78 => 0x2, 117 => 0xb, 118 => [0x3011,0x21], 124 => [0xa40a,0xfe56], 132 => 0x1001, 145 => 0x6b, 154 => 0x37, 161 => 'Sharpness', 186 => 0x21, 187 => 0x30, 188 => 0x26, 189 => 0x18, 194 => 0x3, 241 => 0x6, 257 => 0x32, 258 => 0x33, 259 => 0x39, 331 => 0x100f, 350 => 0x41, 386 => 0x21, 393 => 0xb, 412 => 0x26, 414 => 0x56, 417 => 0x22, 418 => [0x1003,0x1014], 428 => 0x11, 438 => 0x1c, 439 => 0x19, 452 => 0x2006, 484 => 0x52, 515 => 'Sharpness', 517 => 'Sharpness', 521 => 'Sharpness' }, - 'sharpnessadj' => { 108 => 0x20310, 113 => 0x25a, 489 => 0x801a }, + 'sharpenradius' => { 517 => 'SharpenRadius', 519 => 'SharpenRadius' }, + 'sharpness' => { 8 => [0x42,0x48], 10 => 0x72, 12 => 0x74, 36 => 0xf, 67 => 0x6, 78 => 0x2, 117 => 0xb, 118 => [0x3011,0x21], 124 => [0xa40a,0xfe56], 132 => 0x1001, 145 => 0x6b, 154 => 0x37, 161 => 'Sharpness', 186 => 0x21, 187 => 0x30, 188 => 0x26, 189 => 0x18, 194 => 0x3, 241 => 0x6, 258 => 0x32, 259 => 0x33, 260 => 0x39, 333 => 0x100f, 352 => 0x41, 388 => 0x21, 395 => 0xb, 414 => 0x26, 416 => 0x56, 419 => 0x22, 420 => [0x1003,0x1014], 430 => 0x11, 440 => 0x1c, 441 => 0x19, 454 => 0x2006, 486 => 0x52, 517 => 'Sharpness', 519 => 'Sharpness', 523 => 'Sharpness' }, + 'sharpnessadj' => { 108 => 0x20310, 113 => 0x25a, 491 => 0x801a }, 'sharpnessadjon' => { 108 => '0x20310.0' }, 'sharpnessauto' => { 75 => 0x94 }, - 'sharpnessfactor' => { 331 => 0x102a }, + 'sharpnessfactor' => { 333 => 0x102a }, 'sharpnessfaithful' => { 19 => 0xf5, 74 => 0x64, 75 => 0x64 }, 'sharpnessfrequency' => { 8 => [0x41,0x47], 78 => 0x3 }, 'sharpnesslandscape' => { 19 => 0xf3, 74 => 0x34, 75 => 0x34 }, 'sharpnessmonochrome' => { 19 => 0xf6, 74 => 0x7c, 75 => 0x7c }, 'sharpnessneutral' => { 19 => 0xf4, 74 => 0x4c, 75 => 0x4c }, - 'sharpnessovershoot' => { 489 => 0x801b }, + 'sharpnessovershoot' => { 491 => 0x801b }, 'sharpnessportrait' => { 19 => 0xf2, 74 => 0x1c, 75 => 0x1c }, - 'sharpnessrange' => { 452 => 0x2035 }, - 'sharpnesssetting' => { 326 => 0x506, 334 => 0x1013, 440 => 0x12, 457 => 0xa }, + 'sharpnessrange' => { 454 => 0x2035 }, + 'sharpnesssetting' => { 328 => 0x506, 336 => 0x1013, 442 => 0x12, 459 => 0xa }, 'sharpnessstandard' => { 19 => 0xf1, 74 => 0x4, 75 => 0x4 }, 'sharpnessstrength' => { 108 => 0x20311 }, - 'sharpnessthreshold' => { 489 => 0x801d }, - 'sharpnessundershoot' => { 489 => 0x801c }, + 'sharpnessthreshold' => { 491 => 0x801d }, + 'sharpnessundershoot' => { 491 => 0x801c }, 'sharpnessuserdef1' => { 19 => 0xf7, 74 => 0x94, 75 => 0xac }, 'sharpnessuserdef2' => { 19 => 0xf8, 74 => 0xac, 75 => 0xc4 }, 'sharpnessuserdef3' => { 19 => 0xf9, 74 => 0xc4, 75 => 0xdc }, 'shiftcols' => { 143 => 0xc70 }, - 'shootid' => { 533 => 'shootID' }, + 'shootid' => { 535 => 'shootID' }, 'shootingdistance' => { 108 => 0x20701 }, - 'shootinginfodisplay' => { 306 => '13.2', 307 => '5.1', 315 => '10.2', 316 => '4.1', 319 => '5.1', 321 => '5.3' }, - 'shootinginfomonitorofftime' => { 306 => '26.2', 307 => '22.2', 309 => '22.2', 310 => '22.2', 314 => '21.2', 315 => '9.1', 316 => '21.2', 319 => '22.2', 320 => '22.2', 321 => '22.2', 322 => 0x37, 323 => 0x37, 324 => 0x37 }, - 'shootingmode' => { 161 => 'ShootingMode', 241 => 0x89, 350 => 0x1f }, - 'shootingmodesetting' => { 308 => '5.1' }, - 'shortdescription' => { 519 => 'shortdescription' }, + 'shootinginfodisplay' => { 307 => '13.2', 308 => '5.1', 316 => '10.2', 317 => '4.1', 320 => '5.1', 322 => '5.3' }, + 'shootinginfomonitorofftime' => { 307 => '26.2', 308 => '22.2', 310 => '22.2', 311 => '22.2', 315 => '21.2', 316 => '9.1', 317 => '21.2', 320 => '22.2', 321 => '22.2', 322 => '22.2', 323 => 0x3d, 324 => 0x37, 325 => 0x37, 326 => 0x37 }, + 'shootingmode' => { 161 => 'ShootingMode', 241 => 0x89, 352 => 0x1f }, + 'shootingmodesetting' => { 309 => '5.1' }, + 'shortdescription' => { 521 => 'shortdescription' }, 'shortdocumentid' => { 136 => 0xba }, - 'shortname' => { 515 => 'ShortName', 517 => 'ShortName' }, + 'shortname' => { 517 => 'ShortName', 519 => 'ShortName' }, 'shortownername' => { 19 => 0xac }, 'shortreleasetimelag' => { 89 => 0x80d }, - 'shorttitle' => { 403 => '@sti' }, - 'shotdate' => { 544 => 'shotDate' }, - 'shotday' => { 544 => 'shotDay' }, - 'shotlocation' => { 544 => 'shotLocation' }, - 'shotlogdata' => { 497 => 'shot_log_data' }, - 'shotname' => { 411 => 'shot', 544 => 'shotName' }, - 'shotnumber' => { 544 => 'shotNumber' }, - 'shotnumbersincepowerup' => { 456 => 0x44e, 475 => 0x1a, 476 => 0x16, 477 => 0xa }, - 'shotnumbersincepowerup2' => { 440 => 0x200 }, - 'shotsize' => { 544 => 'shotSize' }, - 'shotsperinterval' => { 230 => 0x180, 245 => 0xb4, 246 => 0xcc, 247 => 0xcc, 248 => 0xc0, 249 => 0xd0, 250 => 0xd0 }, - 'showmovement' => { 403 => 'shwm' }, - 'shownevent' => { 529 => 'EventExt' }, - 'showneventidentifier' => { 529 => [\'EventExt','EventExtIdentifier'] }, - 'showneventname' => { 529 => [\'EventExt','EventExtName'] }, - 'shutter' => { 471 => 0x20, 472 => 0x26, 473 => 0x26 }, + 'shorttitle' => { 405 => '@sti' }, + 'shotdate' => { 546 => 'shotDate' }, + 'shotday' => { 546 => 'shotDay' }, + 'shotlocation' => { 546 => 'shotLocation' }, + 'shotlogdata' => { 499 => 'shot_log_data' }, + 'shotname' => { 413 => 'shot', 546 => 'shotName' }, + 'shotnumber' => { 546 => 'shotNumber' }, + 'shotnumbersincepowerup' => { 458 => 0x44e, 477 => 0x1a, 478 => 0x16, 479 => 0xa }, + 'shotnumbersincepowerup2' => { 442 => 0x200 }, + 'shotsize' => { 546 => 'shotSize' }, + 'shotsperinterval' => { 230 => 0x180, 245 => 0x1f0, 246 => 0xb4, 247 => 0xcc, 248 => 0xcc, 249 => 0xc0, 250 => 0xd0, 251 => 0xd0 }, + 'showmovement' => { 405 => 'shwm' }, + 'shownevent' => { 531 => 'EventExt' }, + 'showneventidentifier' => { 531 => [\'EventExt','EventExtIdentifier'] }, + 'showneventname' => { 531 => [\'EventExt','EventExtName'] }, + 'shutter' => { 473 => 0x20, 474 => 0x26, 475 => 0x26 }, 'shutter-aelock' => { 87 => 0x4, 89 => 0x701, 90 => 0x3, 91 => 0x4, 92 => 0x3, 93 => 0x3, 94 => 0x4, 95 => 0x2 }, 'shutteraelbutton' => { 88 => 0x4 }, 'shutterbuttonafonbutton' => { 89 => 0x701 }, - 'shuttercount' => { 11 => 0x176, 30 => [0xa95,0x293], 33 => 0xaf1, 60 => 0x1, 241 => 0xa7, 270 => [0x6a,0x157,0x24d], 271 => 0x286, 272 => 0x279, 273 => 0x284, 274 => 0x242, 275 => 0x280, 276 => 0x276, 277 => [0x27d,0x27f], 278 => 0x246, 280 => 0x2d6, 281 => 0x321, 282 => 0xbd8, 283 => 0x287, 284 => 0x320, 285 => 0x24a, 286 => 0x5fb, 287 => 0x2d5, 386 => 0x5d, 449 => 0x846, 455 => [0x125,0x14a], 471 => 0x32, 472 => 0x3a, 473 => 0x3a, 474 => 0xa }, - 'shuttercount2' => { 471 => 0x4c, 472 => [0x50,0x52,0x58], 473 => 0x50 }, - 'shuttercount3' => { 471 => [0x1a0,0x1aa,0x1bd], 472 => [0x19f,0x1cb,0x1cd] }, + 'shuttercount' => { 11 => 0x176, 30 => [0xa95,0x293], 33 => 0xaf1, 60 => 0x1, 241 => 0xa7, 271 => [0x6a,0x157,0x24d], 272 => 0x286, 273 => 0x279, 274 => 0x284, 275 => 0x242, 276 => 0x280, 277 => 0x276, 278 => [0x27d,0x27f], 279 => 0x246, 281 => 0x2d6, 282 => 0x321, 283 => 0xbd8, 284 => 0x287, 285 => 0x320, 286 => 0x24a, 287 => 0x5fb, 288 => 0x2d5, 388 => 0x5d, 451 => 0x846, 457 => [0x125,0x14a], 473 => 0x32, 474 => 0x3a, 475 => 0x3a, 476 => 0xa }, + 'shuttercount2' => { 473 => 0x4c, 474 => [0x50,0x52,0x58], 475 => 0x50 }, + 'shuttercount3' => { 473 => [0x1a0,0x1aa,0x1bd], 474 => [0x19f,0x1cb,0x1cd] }, 'shuttercurtainsync' => { 87 => 0xf, 88 => 0xf, 89 => 0x305, 90 => 0xe, 91 => 0xf, 92 => 0x8, 93 => 0x8, 94 => 0xf, 95 => 0x8 }, 'shuttermode' => { 60 => 0x17, 145 => 0x1b, 241 => 0x34 }, - 'shutterreleasebuttonae-l' => { 306 => '17.7', 307 => '18.4', 309 => '78.4', 310 => '78.4', 311 => '16.1', 312 => '17.1', 313 => '17.1', 314 => '17.1', 315 => '7.1', 316 => '17.5', 319 => '18.4', 320 => '78.4', 321 => '18.2', 322 => 0x29, 323 => 0x29, 324 => 0x29 }, + 'shutterreleasebuttonae-l' => { 307 => '17.7', 308 => '18.4', 310 => '78.4', 311 => '78.4', 312 => '16.1', 313 => '17.1', 314 => '17.1', 315 => '17.1', 316 => '7.1', 317 => '17.5', 320 => '18.4', 321 => '78.4', 322 => '18.2', 323 => 0x2b, 324 => 0x29, 325 => 0x29, 326 => 0x29 }, 'shutterreleasemethod' => { 102 => 0x1010 }, 'shutterreleasenocfcard' => { 87 => 0x2, 88 => 0x2, 95 => 0xf }, 'shutterreleasetiming' => { 102 => 0x1011 }, 'shutterreleasewithoutlens' => { 89 => 0x711 }, - 'shutterspeedlock' => { 307 => '38.1', 309 => '38.1', 310 => '38.1', 319 => '38.1', 320 => '38.1', 322 => 0xb7, 323 => 0xb7, 324 => 0xb7 }, + 'shutterspeedlock' => { 308 => '38.1', 310 => '38.1', 311 => '38.1', 320 => '38.1', 321 => '38.1', 323 => 0xbb, 324 => 0xb7, 325 => 0xb7, 326 => 0xb7 }, 'shutterspeedrange' => { 89 => 0x10c }, - 'shutterspeedsetting' => { 189 => 0x6, 438 => 0x2f, 439 => 0x28, 440 => 0x0 }, - 'shutterspeedvalue' => { 98 => 0x1, 124 => 0x9201, 331 => 0x1000, 395 => 0x400, 521 => 'ShutterSpeedValue' }, - 'shuttertype' => { 132 => 0x1050, 350 => 0x9f, 386 => 0x87, 477 => [0x133,0x139,0x13f] }, - 'sidecarforextension' => { 532 => 'SidecarForExtension' }, + 'shutterspeedsetting' => { 189 => 0x6, 440 => 0x2f, 441 => 0x28, 442 => 0x0 }, + 'shutterspeedvalue' => { 98 => 0x1, 124 => 0x9201, 333 => 0x1000, 397 => 0x400, 523 => 'ShutterSpeedValue' }, + 'shuttertype' => { 132 => 0x1050, 352 => 0x9f, 388 => 0x87, 479 => [0x133,0x139,0x13f] }, + 'sidecarforextension' => { 534 => 'SidecarForExtension' }, 'sigmaimpulseparameters' => { 143 => 0xe0d }, 'sigmascalingfactorcamera' => { 143 => 0xe0c }, 'sigmascalingfactorlowres' => { 143 => 0xe0b }, 'sigmasizetable' => { 143 => 0xe0f }, 'signaltonoiseratio' => { 1 => 0x27 }, 'signaltonoiseratiotype' => { 1 => 0x26 }, - 'silentphotography' => { 241 => 0xbf }, + 'silentphotography' => { 241 => 0xbf, 245 => 0x9b7 }, 'similarityindex' => { 136 => 0xe4 }, 'singleframebracketing' => { 189 => 0x21 }, - 'skilllevel' => { 536 => 'skillLevel' }, - 'skintonecorrection' => { 386 => 0x95 }, + 'skilllevel' => { 538 => 'skillLevel' }, + 'skintonecorrection' => { 388 => 0x95 }, 'skiplinetime' => { 143 => 0x184e }, - 'slaveflashmeteringsegments' => { 386 => 0x20b }, - 'slideshowname' => { 533 => 'slideshowName' }, - 'slideshownumber' => { 533 => 'slideshowNumber' }, - 'slideshowtotalnumber' => { 533 => 'slideshowTotalNumber' }, - 'slot2jpgsize' => { 246 => 0x24a, 247 => 0x24a, 250 => 0x24a }, + 'slaveflashmeteringsegments' => { 388 => 0x20b }, + 'slideshowname' => { 535 => 'slideshowName' }, + 'slideshownumber' => { 535 => 'slideshowNumber' }, + 'slideshowtotalnumber' => { 535 => 'slideshowTotalNumber' }, + 'slot2jpgsize' => { 245 => 0x364, 247 => 0x24a, 248 => 0x24a, 251 => 0x24a }, 'slowshutter' => { 81 => 0x8 }, 'slowsync' => { 132 => 0x1030 }, - 'smartalbumcolor' => { 425 => 0x20 }, - 'smartrange' => { 425 => 0xa012 }, - 'smileshutter' => { 440 => 0x31 }, - 'smileshuttermode' => { 440 => 0x27 }, - 'smoothness' => { 124 => 0xfe57, 515 => 'Smoothness', 517 => 'Smoothness' }, - 'snapshot' => { 529 => 'SnapshotLink' }, - 'snapshotformat' => { 529 => [\'SnapshotLink','SnapshotLinkFormat'] }, - 'snapshotheightpixels' => { 529 => [\'SnapshotLink','SnapshotLinkHeightPixels'] }, - 'snapshotimagerole' => { 529 => [\'SnapshotLink','SnapshotLinkImageRole'] }, - 'snapshotlink' => { 529 => [\'SnapshotLink','SnapshotLinkLink'] }, - 'snapshotlinkqualifier' => { 529 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] }, - 'snapshots' => { 510 => 'Snapshots' }, - 'snapshotusedvideoframe' => { 529 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] }, - 'snapshotusedvideoframetimeformat' => { 529 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] }, - 'snapshotusedvideoframetimevalue' => { 529 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] }, - 'snapshotusedvideoframevalue' => { 529 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] }, - 'snapshotwidthpixels' => { 529 => [\'SnapshotLink','SnapshotLinkWidthPixels'] }, - 'softskineffect' => { 452 => 0x200f }, - 'software' => { 124 => 0x131, 162 => 'Software', 339 => 'Software', 395 => 0x203, 405 => 'software', 428 => 0x18, 500 => 'Software', 540 => 'Software' }, - 'softwareversion' => { 411 => ['@swr',"\xa9swr"], 427 => 0x207 }, - 'soloist' => { 403 => "\xa9sol" }, - 'songwriter' => { 411 => "\xa9swf" }, - 'songwriterkeywords' => { 411 => "\xa9swk" }, + 'smartalbumcolor' => { 427 => 0x20 }, + 'smartrange' => { 427 => 0xa012 }, + 'smileshutter' => { 442 => 0x31 }, + 'smileshuttermode' => { 442 => 0x27 }, + 'smoothness' => { 124 => 0xfe57, 517 => 'Smoothness', 519 => 'Smoothness' }, + 'snapshot' => { 531 => 'SnapshotLink' }, + 'snapshotformat' => { 531 => [\'SnapshotLink','SnapshotLinkFormat'] }, + 'snapshotheightpixels' => { 531 => [\'SnapshotLink','SnapshotLinkHeightPixels'] }, + 'snapshotimagerole' => { 531 => [\'SnapshotLink','SnapshotLinkImageRole'] }, + 'snapshotlink' => { 531 => [\'SnapshotLink','SnapshotLinkLink'] }, + 'snapshotlinkqualifier' => { 531 => [\'SnapshotLink','SnapshotLinkLinkQualifier'] }, + 'snapshots' => { 512 => 'Snapshots' }, + 'snapshotusedvideoframe' => { 531 => [\'SnapshotLink','SnapshotLinkUsedVideoFrame'] }, + 'snapshotusedvideoframetimeformat' => { 531 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeFormat'] }, + 'snapshotusedvideoframetimevalue' => { 531 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameTimeValue'] }, + 'snapshotusedvideoframevalue' => { 531 => [\'SnapshotLink','SnapshotLinkUsedVideoFrameValue'] }, + 'snapshotwidthpixels' => { 531 => [\'SnapshotLink','SnapshotLinkWidthPixels'] }, + 'softskineffect' => { 454 => 0x200f }, + 'software' => { 124 => 0x131, 162 => 'Software', 341 => 'Software', 397 => 0x203, 407 => 'software', 430 => 0x18, 502 => 'Software', 542 => 'Software' }, + 'softwareversion' => { 413 => ['@swr',"\xa9swr"], 429 => 0x207 }, + 'soloist' => { 405 => "\xa9sol" }, + 'songwriter' => { 413 => "\xa9swf" }, + 'songwriterkeywords' => { 413 => "\xa9swk" }, 'sonycropsize' => { 124 => 0x74c8 }, 'sonycroptopleft' => { 124 => 0x74c7 }, - 'sonydatetime' => { 460 => 0x6, 462 => 0x1b6, 463 => 0x210, 464 => 0x1fe, 465 => 0x22c }, - 'sonydatetime2' => { 471 => 0x51 }, - 'sonyexposuretime' => { 471 => 0x3a, 472 => 0x46, 473 => [0x66,0x46], 474 => 0x1a }, - 'sonyexposuretime2' => { 484 => 0xe }, - 'sonyfnumber' => { 471 => 0x3c, 472 => 0x48, 473 => [0x68,0x48], 474 => 0x1c, 484 => 0x14 }, - 'sonyimageheight' => { 460 => 0x1a, 475 => 0x44, 476 => 0x3f }, - 'sonyimageheightmax' => { 484 => 0x40 }, - 'sonyimagesize' => { 189 => 0x3b, 438 => 0x54, 439 => 0x54, 440 => 0x9 }, - 'sonyimagewidth' => { 460 => 0x1c }, - 'sonyimagewidthmax' => { 484 => 0x3e }, - 'sonyiso' => { 462 => 0x1218, 463 => 0x11f4, 464 => 0x1270, 465 => [0x1254,0x1258,0x1280], 466 => 0x113c, 467 => 0x344, 468 => 0x346, 469 => 0x320, 484 => 0x4 }, - 'sonymaxaperture' => { 471 => 0x0, 472 => 0x0 }, - 'sonymaxaperturevalue' => { 484 => 0x16 }, - 'sonyminaperture' => { 471 => 0x1, 472 => 0x1 }, - 'sonymodelid' => { 452 => 0xb001 }, + 'sonydatetime' => { 462 => 0x6, 464 => 0x1b6, 465 => 0x210, 466 => 0x1fe, 467 => 0x22c }, + 'sonydatetime2' => { 473 => 0x51 }, + 'sonyexposuretime' => { 473 => 0x3a, 474 => 0x46, 475 => [0x66,0x46], 476 => 0x1a }, + 'sonyexposuretime2' => { 486 => 0xe }, + 'sonyfnumber' => { 473 => 0x3c, 474 => 0x48, 475 => [0x68,0x48], 476 => 0x1c, 486 => 0x14 }, + 'sonyimageheight' => { 462 => 0x1a, 477 => 0x44, 478 => 0x3f }, + 'sonyimageheightmax' => { 486 => 0x40 }, + 'sonyimagesize' => { 189 => 0x3b, 440 => 0x54, 441 => 0x54, 442 => 0x9 }, + 'sonyimagewidth' => { 462 => 0x1c }, + 'sonyimagewidthmax' => { 486 => 0x3e }, + 'sonyiso' => { 464 => 0x1218, 465 => 0x11f4, 466 => 0x1270, 467 => [0x1254,0x1258,0x1280], 468 => 0x113c, 469 => 0x344, 470 => 0x346, 471 => 0x320, 486 => 0x4 }, + 'sonymaxaperture' => { 473 => 0x0, 474 => 0x0 }, + 'sonymaxaperturevalue' => { 486 => 0x16 }, + 'sonyminaperture' => { 473 => 0x1, 474 => 0x1 }, + 'sonymodelid' => { 454 => 0xb001 }, 'sonyquality' => { 189 => 0x3c }, 'sonyrawimagesize' => { 124 => 0x7038 }, - 'sonytimeminsec' => { 472 => 0x61 }, - 'sortalbum' => { 403 => 'soal' }, - 'sortalbumartist' => { 403 => 'soaa' }, - 'sortartist' => { 403 => 'soar' }, - 'sortcomposer' => { 403 => 'soco' }, - 'sortname' => { 403 => 'sonm', 515 => 'SortName', 517 => 'SortName' }, - 'sortshow' => { 403 => 'sosn' }, - 'soundengineer' => { 403 => "\xa9sne" }, - 'source' => { 136 => 0x73, 339 => 'Source', 518 => 'source', 519 => 'source', 532 => 'Source' }, - 'sourcecount' => { 504 => 'SourceCount' }, - 'sourcecredits' => { 411 => "\xa9src" }, - 'sourcedirectoryindex' => { 372 => 0x0 }, - 'sourcefileindex' => { 372 => 0x2 }, - 'sourcephotoscount' => { 503 => 'SourcePhotosCount' }, + 'sonytimeminsec' => { 474 => 0x61 }, + 'sortalbum' => { 405 => 'soal' }, + 'sortalbumartist' => { 405 => 'soaa' }, + 'sortartist' => { 405 => 'soar' }, + 'sortcomposer' => { 405 => 'soco' }, + 'sortname' => { 405 => 'sonm', 517 => 'SortName', 519 => 'SortName' }, + 'sortshow' => { 405 => 'sosn' }, + 'soundengineer' => { 405 => "\xa9sne" }, + 'source' => { 136 => 0x73, 341 => 'Source', 520 => 'source', 521 => 'source', 534 => 'Source' }, + 'sourcecount' => { 506 => 'SourceCount' }, + 'sourcecredits' => { 413 => "\xa9src" }, + 'sourcedirectoryindex' => { 374 => 0x0 }, + 'sourcefileindex' => { 374 => 0x2 }, + 'sourcephotoscount' => { 505 => 'SourcePhotosCount' }, 'sourceprofileprefix' => { 143 => 0x1390 }, - 'spatialfrequencyresponse' => { 521 => 'SpatialFrequencyResponse' }, - 'spatialfrequencyresponsecolumns' => { 521 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] }, - 'spatialfrequencyresponsenames' => { 521 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] }, - 'spatialfrequencyresponserows' => { 521 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] }, - 'spatialfrequencyresponsevalues' => { 521 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] }, - 'speakerplacement' => { 544 => 'speakerPlacement' }, + 'spatialfrequencyresponse' => { 523 => 'SpatialFrequencyResponse' }, + 'spatialfrequencyresponsecolumns' => { 523 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] }, + 'spatialfrequencyresponsenames' => { 523 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] }, + 'spatialfrequencyresponserows' => { 523 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] }, + 'spatialfrequencyresponsevalues' => { 523 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] }, + 'speakerplacement' => { 546 => 'speakerPlacement' }, 'specialeffectlevel' => { 118 => 0x3030 }, 'specialeffectmode' => { 118 => 0x2076 }, 'specialeffectsetting' => { 118 => 0x3031 }, 'specialinstructions' => { 136 => 0x28 }, - 'specialmode' => { 331 => 0x200, 427 => 0x200 }, - 'specialoccasion' => { 536 => 'specialOccasion' }, - 'specialtypeid' => { 497 => 'SpecialTypeID' }, - 'spectralsensitivity' => { 124 => 0x8824, 521 => 'SpectralSensitivity' }, + 'specialmode' => { 333 => 0x200, 429 => 0x200 }, + 'specialoccasion' => { 538 => 'specialOccasion' }, + 'specialtypeid' => { 499 => 'SpecialTypeID' }, + 'spectralsensitivity' => { 124 => 0x8824, 523 => 'SpectralSensitivity' }, 'specularwhitelevel' => { 43 => 0x32b, 44 => 0x281, 45 => 0x295, 48 => [0x2b9,0x2d0,0x2d4], 49 => [0x56a,0x296], 50 => 0x1e4, 51 => [0x1fd,0x2dd], 52 => [0x231,0x30f], 53 => 0x31d }, - 'speedx' => { 120 => 0x3, 411 => "\xa9xsp" }, - 'speedy' => { 120 => 0x4, 411 => "\xa9ysp" }, - 'speedz' => { 120 => 0x5, 411 => "\xa9zsp" }, - 'spherical' => { 504 => 'Spherical' }, + 'speedx' => { 120 => 0x3, 413 => "\xa9xsp" }, + 'speedy' => { 120 => 0x4, 413 => "\xa9ysp" }, + 'speedz' => { 120 => 0x5, 413 => "\xa9zsp" }, + 'spherical' => { 506 => 'Spherical' }, 'sphericalvideoxml' => { 125 => 'SphericalVideoXML' }, - 'splitcolumn' => { 395 => 0x222 }, - 'splittoningbalance' => { 515 => 'SplitToningBalance', 517 => 'SplitToningBalance' }, - 'splittoninghighlighthue' => { 515 => 'SplitToningHighlightHue', 517 => 'SplitToningHighlightHue' }, - 'splittoninghighlightsaturation' => { 515 => 'SplitToningHighlightSaturation', 517 => 'SplitToningHighlightSaturation' }, - 'splittoningshadowhue' => { 515 => 'SplitToningShadowHue', 517 => 'SplitToningShadowHue' }, - 'splittoningshadowsaturation' => { 515 => 'SplitToningShadowSaturation', 517 => 'SplitToningShadowSaturation' }, - 'sport' => { 534 => 'sport' }, + 'splitcolumn' => { 397 => 0x222 }, + 'splittoningbalance' => { 517 => 'SplitToningBalance', 519 => 'SplitToningBalance' }, + 'splittoninghighlighthue' => { 517 => 'SplitToningHighlightHue', 519 => 'SplitToningHighlightHue' }, + 'splittoninghighlightsaturation' => { 517 => 'SplitToningHighlightSaturation', 519 => 'SplitToningHighlightSaturation' }, + 'splittoningshadowhue' => { 517 => 'SplitToningShadowHue', 519 => 'SplitToningShadowHue' }, + 'splittoningshadowsaturation' => { 517 => 'SplitToningShadowSaturation', 519 => 'SplitToningShadowSaturation' }, + 'sport' => { 536 => 'sport' }, 'spotfocuspointx' => { 186 => 0x2d }, 'spotfocuspointy' => { 186 => 0x2e }, 'spotmeteringmode' => { 36 => 0x27 }, 'spotmeterlinktoafpoint' => { 89 => 0x107 }, - 'sractive' => { 366 => '17.1' }, + 'sractive' => { 368 => '17.1' }, 'srawquality' => { 36 => 0x2e }, - 'srfocallength' => { 388 => 0x3 }, - 'srgbrendering' => { 337 => 'sRGB' }, - 'srhalfpresstime' => { 388 => 0x2 }, - 'srresult' => { 388 => 0x0, 389 => 0x0 }, - 'stackedimage' => { 326 => 0x804 }, + 'srfocallength' => { 390 => 0x3 }, + 'srgbrendering' => { 339 => 'sRGB' }, + 'srhalfpresstime' => { 390 => 0x2 }, + 'srresult' => { 390 => 0x0, 391 => 0x0 }, + 'stackedimage' => { 328 => 0x804 }, 'standardmatrixcustom' => { 143 => 0x7d4 }, 'standardmatrixdaylight' => { 143 => 0x7d0 }, 'standardmatrixflash' => { 143 => 0x7d3 }, 'standardmatrixfluorescent' => { 143 => 0x7d2 }, 'standardmatrixtungsten' => { 143 => 0x7d1 }, 'standardoutputhighlightpoint' => { 114 => 0x14 }, - 'standardoutputsensitivity' => { 124 => 0x8831, 522 => 'StandardOutputSensitivity' }, + 'standardoutputsensitivity' => { 124 => 0x8831, 524 => 'StandardOutputSensitivity' }, 'standardoutputshadowpoint' => { 114 => 0x15 }, 'standardrawcolortone' => { 114 => 0xd }, 'standardrawcontrast' => { 114 => 0xf }, @@ -6692,131 +6697,132 @@ my %tagLookup = ( 'standardwhiteflash' => { 143 => 0x837 }, 'standardwhitefluorescent' => { 143 => 0x836 }, 'standardwhitetungsten' => { 143 => 0x835 }, - 'standbytimer' => { 307 => '19.1', 309 => '19.1', 310 => '19.1', 313 => '18.1', 314 => '18.1', 319 => '19.1', 320 => '19.1' }, - 'starlightview' => { 322 => 0x249, 323 => 0x249, 324 => 0x261 }, - 'startingpage' => { 534 => 'startingPage' }, + 'standbytimer' => { 308 => '19.1', 310 => '19.1', 311 => '19.1', 314 => '18.1', 315 => '18.1', 320 => '19.1', 321 => '19.1' }, + 'starlightview' => { 324 => 0x249, 325 => 0x249, 326 => 0x261 }, + 'startingpage' => { 536 => 'startingPage' }, 'startmovieshooting' => { 89 => 0x70d }, - 'starttimecode' => { 411 => "\xa9TIM", 544 => 'startTimecode' }, - 'starttimecodetimeformat' => { 544 => [\'startTimecode','startTimecodeTimeFormat'] }, - 'starttimecodetimevalue' => { 544 => [\'startTimecode','startTimecodeTimeValue'] }, - 'starttimecodevalue' => { 544 => [\'startTimecode','startTimecodeValue'] }, - 'starttimesamplesize' => { 411 => "\xa9TSZ", 544 => 'startTimeSampleSize' }, - 'starttimescale' => { 411 => "\xa9TSC", 544 => 'startTimeScale' }, - 'state' => { 166 => 'State', 350 => 0x6b, 532 => 'State' }, - 'status' => { 495 => 'Status', 508 => 'Status' }, - 'stereomode' => { 504 => 'StereoMode' }, - 'stitched' => { 504 => 'Stitched' }, - 'stitchingsoftware' => { 503 => 'StitchingSoftware', 504 => 'StitchingSoftware' }, - 'stopsabovebaseiso' => { 461 => 0x113e, 462 => 0x113e, 463 => 0x111a, 464 => 0x1196, 465 => 0x1172, 466 => 0x102a, 467 => 0x222, 468 => 0x222, 469 => 0x217, 484 => 0xa }, + 'starttimecode' => { 413 => "\xa9TIM", 546 => 'startTimecode' }, + 'starttimecodetimeformat' => { 546 => [\'startTimecode','startTimecodeTimeFormat'] }, + 'starttimecodetimevalue' => { 546 => [\'startTimecode','startTimecodeTimeValue'] }, + 'starttimecodevalue' => { 546 => [\'startTimecode','startTimecodeValue'] }, + 'starttimesamplesize' => { 413 => "\xa9TSZ", 546 => 'startTimeSampleSize' }, + 'starttimescale' => { 413 => "\xa9TSC", 546 => 'startTimeScale' }, + 'state' => { 166 => 'State', 352 => 0x6b, 534 => 'State' }, + 'status' => { 497 => 'Status', 510 => 'Status' }, + 'stereomode' => { 506 => 'StereoMode' }, + 'stitched' => { 506 => 'Stitched' }, + 'stitchingsoftware' => { 505 => 'StitchingSoftware', 506 => 'StitchingSoftware' }, + 'stopsabovebaseiso' => { 463 => 0x113e, 464 => 0x113e, 465 => 0x111a, 466 => 0x1196, 467 => 0x1172, 468 => 0x102a, 469 => 0x222, 470 => 0x222, 471 => 0x217, 486 => 0xa }, 'storagemethod' => { 193 => 0x12 }, - 'storebyorientation' => { 307 => '46.3', 309 => '47.3', 310 => '47.3', 319 => '47.3', 320 => '47.3', 322 => 0xd, 323 => 0xd, 324 => 0xd }, - 'storedescription' => { 403 => 'sdes' }, - 'storylineidentifier' => { 529 => 'StorylineIdentifier' }, - 'straightenangle' => { 299 => 0x2fc08431 }, - 'streamready' => { 529 => 'StreamReady' }, + 'storebyorientation' => { 308 => '46.3', 310 => '47.3', 311 => '47.3', 320 => '47.3', 321 => '47.3', 323 => 0xd, 324 => 0xd, 325 => 0xd, 326 => 0xd }, + 'storedescription' => { 405 => 'sdes' }, + 'storylineidentifier' => { 531 => 'StorylineIdentifier' }, + 'straightenangle' => { 300 => 0x2fc08431 }, + 'streamready' => { 531 => 'StreamReady' }, 'streamtype' => { 181 => 'StreamType' }, - 'stretchmode' => { 544 => 'stretchMode' }, - 'studydatetime' => { 492 => 'StudyDateTime' }, - 'studydescription' => { 492 => 'StudyDescription' }, - 'studyid' => { 492 => 'StudyID' }, - 'studyphysician' => { 492 => 'StudyPhysician' }, - 'styleperiod' => { 529 => 'StylePeriod' }, + 'stretchmode' => { 546 => 'stretchMode' }, + 'studydatetime' => { 494 => 'StudyDateTime' }, + 'studydescription' => { 494 => 'StudyDescription' }, + 'studyid' => { 494 => 'StudyID' }, + 'studyphysician' => { 494 => 'StudyPhysician' }, + 'styleperiod' => { 531 => 'StylePeriod' }, 'sub-location' => { 136 => 0x5c }, - 'subcommanddialframeadvancezoom' => { 250 => 0x806 }, - 'subcommanddialplaybackmode' => { 322 => 0x1cf, 323 => 0x1cf, 324 => 0x1e7 }, - 'subcommanddialvideoplaybackmode' => { 322 => 0x1d1, 324 => 0x1e9 }, + 'subcommanddialframeadvancezoom' => { 251 => 0x806 }, + 'subcommanddialplaybackmode' => { 324 => 0x1cf, 325 => 0x1cf, 326 => 0x1e7 }, + 'subcommanddialvideoplaybackmode' => { 324 => 0x1d1, 326 => 0x1e9 }, 'subfiledata' => { 169 => 'data' }, 'subfiledirectory' => { 169 => '1Directory' }, 'subfilemimetype' => { 169 => '2MIME' }, 'subfilename' => { 169 => '1Name' }, 'subfileresource' => { 169 => 'rsrc' }, 'subfiletype' => { 124 => 0xfe, 169 => '0Type' }, - 'subject' => { 335 => 'Subject', 402 => 'Subject', 518 => 'subject', 531 => 'Subject', 545 => 'subject' }, - 'subjectarea' => { 124 => 0x9214, 521 => 'SubjectArea' }, - 'subjectcode' => { 528 => 'SubjectCode' }, - 'subjectdetection' => { 246 => 0x252, 247 => 0x252, 248 => 0x23e, 249 => 0x252, 250 => 0x252 }, - 'subjectdistance' => { 124 => 0x9206, 145 => 0x3e, 521 => 'SubjectDistance' }, - 'subjectdistancerange' => { 124 => 0xa40c, 521 => 'SubjectDistanceRange' }, - 'subjectlocation' => { 124 => 0xa214, 521 => 'SubjectLocation' }, - 'subjectmotion' => { 309 => '78.2', 310 => '78.2', 320 => '78.2', 322 => 0x103, 323 => 0x103, 324 => 0x119 }, + 'subject' => { 337 => 'Subject', 404 => 'Subject', 520 => 'subject', 533 => 'Subject', 547 => 'subject' }, + 'subjectarea' => { 124 => 0x9214, 523 => 'SubjectArea' }, + 'subjectcode' => { 530 => 'SubjectCode' }, + 'subjectdetection' => { 245 => 0x36e, 247 => 0x252, 248 => 0x252, 249 => 0x23e, 250 => 0x252, 251 => 0x252 }, + 'subjectdetectionareamf' => { 245 => 0x3ea }, + 'subjectdistance' => { 124 => 0x9206, 145 => 0x3e, 523 => 'SubjectDistance' }, + 'subjectdistancerange' => { 124 => 0xa40c, 523 => 'SubjectDistanceRange' }, + 'subjectlocation' => { 124 => 0xa214, 523 => 'SubjectLocation' }, + 'subjectmotion' => { 310 => '78.2', 311 => '78.2', 321 => '78.2', 324 => 0x103, 325 => 0x103, 326 => 0x119 }, 'subjectprogram' => { 186 => 0x22 }, 'subjectreference' => { 136 => 0xc }, 'subjecttodetect' => { 2 => 0x14 }, - 'sublabels1' => { 527 => [\'TagStructure','TagStructureSubLabels'] }, - 'sublabels2' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabels'] }, - 'sublabels3' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] }, - 'sublabels4' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] }, - 'sublabels5' => { 527 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] }, + 'sublabels1' => { 529 => [\'TagStructure','TagStructureSubLabels'] }, + 'sublabels2' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabels'] }, + 'sublabels3' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] }, + 'sublabels4' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] }, + 'sublabels5' => { 529 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] }, 'subseccreatedate' => { 119 => 'Exif-SubSecCreateDate' }, 'subsecdatetimeoriginal' => { 119 => 'Exif-SubSecDateTimeOriginal' }, 'subsecmodifydate' => { 119 => 'Exif-SubSecModifyDate' }, 'subsectime' => { 124 => 0x9290 }, 'subsectimedigitized' => { 124 => 0x9292 }, 'subsectimeoriginal' => { 124 => 0x9291 }, - 'subsection1' => { 534 => 'subsection1' }, - 'subsection2' => { 534 => 'subsection2' }, - 'subsection3' => { 534 => 'subsection3' }, - 'subsection4' => { 534 => 'subsection4' }, - 'subselector' => { 307 => '49.1', 309 => '71.1', 310 => '71.1', 320 => '71.1', 322 => 0x8f, 323 => 0x8f, 324 => 0x8f }, - 'subselectorassignment' => { 307 => '48.1' }, - 'subselectorcenter' => { 309 => '72.1', 310 => '72.1', 320 => '72.1' }, - 'subselectorplusdials' => { 307 => '49.2', 309 => '73.1', 310 => '73.1', 320 => '73.1' }, - 'subtitle' => { 184 => 'WM/SubTitle', 403 => "\xa9st3", 411 => "\xa9snm", 534 => 'subtitle' }, - 'subtitlekeywords' => { 411 => "\xa9snk" }, - 'subversionfilename' => { 527 => [\'SubVersions','SubVersionsFileName'] }, - 'subversionreference' => { 527 => [\'SubVersions','SubVersionsVersRef'] }, - 'subversions' => { 527 => 'SubVersions' }, + 'subsection1' => { 536 => 'subsection1' }, + 'subsection2' => { 536 => 'subsection2' }, + 'subsection3' => { 536 => 'subsection3' }, + 'subsection4' => { 536 => 'subsection4' }, + 'subselector' => { 308 => '49.1', 310 => '71.1', 311 => '71.1', 321 => '71.1', 323 => 0x93, 324 => 0x8f, 325 => 0x8f, 326 => 0x8f }, + 'subselectorassignment' => { 308 => '48.1' }, + 'subselectorcenter' => { 310 => '72.1', 311 => '72.1', 321 => '72.1' }, + 'subselectorplusdials' => { 308 => '49.2', 310 => '73.1', 311 => '73.1', 321 => '73.1' }, + 'subtitle' => { 184 => 'WM/SubTitle', 405 => "\xa9st3", 413 => "\xa9snm", 536 => 'subtitle' }, + 'subtitlekeywords' => { 413 => "\xa9snk" }, + 'subversionfilename' => { 529 => [\'SubVersions','SubVersionsFileName'] }, + 'subversionreference' => { 529 => [\'SubVersions','SubVersionsVersRef'] }, + 'subversions' => { 529 => 'SubVersions' }, 'superimposeddisplay' => { 87 => 0xa, 89 => 0x510, 90 => 0x9, 91 => 0xa, 94 => 0xa, 95 => 0xe }, 'supermacro' => { 68 => 0x1a }, - 'supplementalcategories' => { 136 => 0x14, 532 => 'SupplementalCategories' }, + 'supplementalcategories' => { 136 => 0x14, 534 => 'SupplementalCategories' }, 'supplementaltype' => { 138 => 0x37 }, - 'supplementdisplayid' => { 534 => 'supplementDisplayID' }, - 'supplementstartingpage' => { 534 => 'supplementStartingPage' }, - 'supplementtitle' => { 534 => 'supplementTitle' }, - 'supplychainsource' => { 529 => 'SupplyChainSource' }, - 'supplychainsourceidentifier' => { 529 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] }, - 'supplychainsourcename' => { 529 => [\'SupplyChainSource','SupplyChainSourceName'] }, - 'supportsamount' => { 515 => 'SupportsAmount', 517 => 'SupportsAmount' }, - 'supportscolor' => { 515 => 'SupportsColor', 517 => 'SupportsColor' }, - 'supportshighdynamicrange' => { 515 => 'SupportsHighDynamicRange', 517 => 'SupportsHighDynamicRange' }, - 'supportsmonochrome' => { 515 => 'SupportsMonochrome', 517 => 'SupportsMonochrome' }, - 'supportsnormaldynamicrange' => { 515 => 'SupportsNormalDynamicRange', 517 => 'SupportsNormalDynamicRange' }, - 'supportsoutputreferred' => { 515 => 'SupportsOutputReferred', 517 => 'SupportsOutputReferred' }, - 'supportsscenereferred' => { 515 => 'SupportsSceneReferred', 517 => 'SupportsSceneReferred' }, - 'svisosetting' => { 366 => 0x14 }, - 'swatchcoloranta' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsA'] }, - 'swatchcolorantb' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsB'] }, - 'swatchcolorantblack' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] }, - 'swatchcolorantblue' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] }, - 'swatchcolorantcyan' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] }, - 'swatchcolorantgray' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsGray'] }, - 'swatchcolorantgreen' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] }, - 'swatchcolorantl' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsL'] }, - 'swatchcolorantmagenta' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] }, - 'swatchcolorantmode' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsMode'] }, - 'swatchcolorantred' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsRed'] }, - 'swatchcolorantswatchname' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] }, - 'swatchcoloranttint' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsTint'] }, - 'swatchcoloranttype' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsType'] }, - 'swatchcolorantyellow' => { 549 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] }, - 'swatchgroupname' => { 549 => [\'SwatchGroups','SwatchGroupsGroupName'] }, - 'swatchgroups' => { 549 => 'SwatchGroups' }, - 'swatchgroupscolorants' => { 549 => [\'SwatchGroups','SwatchGroupsColorants'] }, - 'swatchgrouptype' => { 549 => [\'SwatchGroups','SwatchGroupsGroupType'] }, - 'sweeppanoramadirection' => { 350 => 0x93, 440 => 0x33 }, - 'sweeppanoramafieldofview' => { 350 => 0x94 }, - 'sweeppanoramasize' => { 440 => 0x32 }, + 'supplementdisplayid' => { 536 => 'supplementDisplayID' }, + 'supplementstartingpage' => { 536 => 'supplementStartingPage' }, + 'supplementtitle' => { 536 => 'supplementTitle' }, + 'supplychainsource' => { 531 => 'SupplyChainSource' }, + 'supplychainsourceidentifier' => { 531 => [\'SupplyChainSource','SupplyChainSourceIdentifier'] }, + 'supplychainsourcename' => { 531 => [\'SupplyChainSource','SupplyChainSourceName'] }, + 'supportsamount' => { 517 => 'SupportsAmount', 519 => 'SupportsAmount' }, + 'supportscolor' => { 517 => 'SupportsColor', 519 => 'SupportsColor' }, + 'supportshighdynamicrange' => { 517 => 'SupportsHighDynamicRange', 519 => 'SupportsHighDynamicRange' }, + 'supportsmonochrome' => { 517 => 'SupportsMonochrome', 519 => 'SupportsMonochrome' }, + 'supportsnormaldynamicrange' => { 517 => 'SupportsNormalDynamicRange', 519 => 'SupportsNormalDynamicRange' }, + 'supportsoutputreferred' => { 517 => 'SupportsOutputReferred', 519 => 'SupportsOutputReferred' }, + 'supportsscenereferred' => { 517 => 'SupportsSceneReferred', 519 => 'SupportsSceneReferred' }, + 'svisosetting' => { 368 => 0x14 }, + 'swatchcoloranta' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsA'] }, + 'swatchcolorantb' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsB'] }, + 'swatchcolorantblack' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsBlack'] }, + 'swatchcolorantblue' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsBlue'] }, + 'swatchcolorantcyan' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsCyan'] }, + 'swatchcolorantgray' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsGray'] }, + 'swatchcolorantgreen' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsGreen'] }, + 'swatchcolorantl' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsL'] }, + 'swatchcolorantmagenta' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsMagenta'] }, + 'swatchcolorantmode' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsMode'] }, + 'swatchcolorantred' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsRed'] }, + 'swatchcolorantswatchname' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsSwatchName'] }, + 'swatchcoloranttint' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsTint'] }, + 'swatchcoloranttype' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsType'] }, + 'swatchcolorantyellow' => { 551 => [\'SwatchGroups','SwatchGroupsColorantsYellow'] }, + 'swatchgroupname' => { 551 => [\'SwatchGroups','SwatchGroupsGroupName'] }, + 'swatchgroups' => { 551 => 'SwatchGroups' }, + 'swatchgroupscolorants' => { 551 => [\'SwatchGroups','SwatchGroupsColorants'] }, + 'swatchgrouptype' => { 551 => [\'SwatchGroups','SwatchGroupsGroupType'] }, + 'sweeppanoramadirection' => { 352 => 0x93, 442 => 0x33 }, + 'sweeppanoramafieldofview' => { 352 => 0x94 }, + 'sweeppanoramasize' => { 442 => 0x32 }, 'switchtoregisteredafpoint' => { 88 => 0x12, 89 => 0x50a }, 'symlink' => { 125 => 'SymLink' }, - 'syncreleasemode' => { 309 => '77.1', 310 => '77.1', 320 => '77.1', 322 => 0x41, 323 => 0x41, 324 => 0x41 }, - 'system' => { 395 => 0x204 }, - 'tagged' => { 397 => 0xdd, 398 => 'Tagged', 510 => 'tagged' }, - 'tagslist' => { 520 => 'TagsList' }, - 'tagstructure' => { 527 => 'TagStructure' }, - 'takenumber' => { 544 => 'takeNumber' }, - 'tapename' => { 544 => 'tapeName' }, + 'syncreleasemode' => { 310 => '77.1', 311 => '77.1', 321 => '77.1', 323 => 0x45, 324 => 0x41, 325 => 0x41, 326 => 0x41 }, + 'system' => { 397 => 0x204 }, + 'tagged' => { 399 => 0xdd, 400 => 'Tagged', 512 => 'tagged' }, + 'tagslist' => { 522 => 'TagsList' }, + 'tagstructure' => { 529 => 'TagStructure' }, + 'takenumber' => { 546 => 'takeNumber' }, + 'tapename' => { 546 => 'tapeName' }, 'targetaperture' => { 81 => 0x4 }, - 'targetaspectratio' => { 340 => 'TargetAspectRatio' }, + 'targetaspectratio' => { 342 => 'TargetAspectRatio' }, 'targetcompressionratio' => { 100 => 0x1 }, 'targetdistancesetting' => { 102 => 0x1807 }, 'targetexposuretime' => { 81 => 0x5 }, @@ -6873,112 +6879,112 @@ my %tagLookup = ( 'tda4edgepolarity' => { 143 => 0x198f }, 'tda4gain' => { 143 => 0x198e }, 'tda4offset' => { 143 => 0x198c }, - 'teaser' => { 534 => 'teaser' }, - 'teleconverter' => { 191 => 0x105, 452 => 0x105 }, + 'teaser' => { 536 => 'teaser' }, + 'teleconverter' => { 191 => 0x105, 454 => 0x105 }, 'tempampgainx100' => { 143 => 0x1914 }, - 'tempo' => { 544 => 'tempo' }, - 'temporalcoverage' => { 529 => 'TemporalCoverage' }, - 'temporalcoveragefrom' => { 529 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] }, - 'temporalcoverageto' => { 529 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] }, - 'termsandconditionstext' => { 336 => 'TermsAndConditionsText' }, - 'termsandconditionsurl' => { 336 => 'TermsAndConditionsURL' }, + 'tempo' => { 546 => 'tempo' }, + 'temporalcoverage' => { 531 => 'TemporalCoverage' }, + 'temporalcoveragefrom' => { 531 => [\'TemporalCoverage','TemporalCoverageTempCoverageFrom'] }, + 'temporalcoverageto' => { 531 => [\'TemporalCoverage','TemporalCoverageTempCoverageTo'] }, + 'termsandconditionstext' => { 338 => 'TermsAndConditionsText' }, + 'termsandconditionsurl' => { 338 => 'TermsAndConditionsURL' }, 'testname' => { 125 => 'TestName' }, 'textencoding' => { 240 => 0x4 }, - 'textlayername' => { 532 => [\'TextLayers','TextLayersLayerName'] }, - 'textlayers' => { 532 => 'TextLayers' }, - 'textlayertext' => { 532 => [\'TextLayers','TextLayersLayerText'] }, - 'textstamp' => { 350 => [0x8008,0x8009,0x3b,0x3e] }, - 'texture' => { 515 => 'Texture', 517 => 'Texture' }, - 'three-dtrackingfacedetection' => { 309 => '1.4', 310 => '1.4', 320 => '1.4' }, - 'three-dtrackingwatcharea' => { 309 => '78.1', 310 => '78.1', 320 => '78.1' }, + 'textlayername' => { 534 => [\'TextLayers','TextLayersLayerName'] }, + 'textlayers' => { 534 => 'TextLayers' }, + 'textlayertext' => { 534 => [\'TextLayers','TextLayersLayerText'] }, + 'textstamp' => { 352 => [0x8008,0x8009,0x3b,0x3e] }, + 'texture' => { 517 => 'Texture', 519 => 'Texture' }, + 'three-dtrackingfacedetection' => { 310 => '1.4', 311 => '1.4', 321 => '1.4' }, + 'three-dtrackingwatcharea' => { 310 => '78.1', 311 => '78.1', 321 => '78.1' }, 'thresholding' => { 124 => 0x107 }, 'thumbnailfilename' => { 102 => 0x817 }, - 'thumbnailformat' => { 542 => [\'Thumbnails','ThumbnailsFormat'] }, - 'thumbnailheight' => { 147 => 0xfa55, 542 => [\'Thumbnails','ThumbnailsHeight'] }, - 'thumbnailimage' => { 6 => 'CNDA', 102 => 0x2008, 119 => 'Exif-ThumbnailImage', 127 => 0x3, 172 => 'data', 331 => 0x100, 403 => 'tnal', 411 => 'thmb', 542 => [\'Thumbnails','ThumbnailsImage'] }, + 'thumbnailformat' => { 544 => [\'Thumbnails','ThumbnailsFormat'] }, + 'thumbnailheight' => { 147 => 0xfa55, 544 => [\'Thumbnails','ThumbnailsHeight'] }, + 'thumbnailimage' => { 6 => 'CNDA', 102 => 0x2008, 119 => 'Exif-ThumbnailImage', 127 => 0x3, 172 => 'data', 333 => 0x100, 405 => 'tnal', 413 => 'thmb', 544 => [\'Thumbnails','ThumbnailsImage'] }, 'thumbnailimagename' => { 172 => '1Name' }, 'thumbnailimagesize' => { 172 => 'ImageSize' }, 'thumbnailimagetype' => { 172 => '0Type' }, 'thumbnailimagevalidarea' => { 68 => 0x13 }, 'thumbnaillength' => { 124 => 0x202 }, 'thumbnailoffset' => { 124 => 0x201 }, - 'thumbnailpng' => { 411 => 'thmb' }, - 'thumbnails' => { 542 => 'Thumbnails' }, - 'thumbnailwidth' => { 147 => 0xfa54, 542 => [\'Thumbnails','ThumbnailsWidth'] }, - 'ticker' => { 534 => 'ticker' }, - 'tiffhandling' => { 515 => 'TIFFHandling', 517 => 'TIFFHandling' }, - 'tiffmeteringimage' => { 192 => 0x104c, 449 => 0x1110 }, + 'thumbnailpng' => { 413 => 'thmb' }, + 'thumbnails' => { 544 => 'Thumbnails' }, + 'thumbnailwidth' => { 147 => 0xfa54, 544 => [\'Thumbnails','ThumbnailsWidth'] }, + 'ticker' => { 536 => 'ticker' }, + 'tiffhandling' => { 517 => 'TIFFHandling', 519 => 'TIFFHandling' }, + 'tiffmeteringimage' => { 192 => 0x104c, 451 => 0x1110 }, 'tilelength' => { 124 => 0x143 }, 'tilewidth' => { 124 => 0x142 }, - 'time' => { 143 => 0x401, 386 => 0x7 }, + 'time' => { 143 => 0x401, 388 => 0x7 }, 'timecodes' => { 124 => 0xc763 }, - 'timecreated' => { 136 => 0x3c, 145 => 0x14, 154 => 0x10, 398 => 'TimeCreated' }, - 'timelapseshotnumber' => { 353 => 0x10 }, - 'timeperiod' => { 534 => 'timePeriod' }, - 'timerfunctionbutton' => { 308 => '5.2', 311 => '12.1', 312 => '13.1' }, + 'timecreated' => { 136 => 0x3c, 145 => 0x14, 154 => 0x10, 400 => 'TimeCreated' }, + 'timelapseshotnumber' => { 355 => 0x10 }, + 'timeperiod' => { 536 => 'timePeriod' }, + 'timerfunctionbutton' => { 309 => '5.2', 312 => '12.1', 313 => '13.1' }, 'timerlength' => { 89 => 0x80c }, - 'timerrecording' => { 350 => 0x96 }, - 'timescaleparams' => { 544 => 'timeScaleParams' }, - 'timescaleparamsframeoverlappingpercentage' => { 544 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] }, - 'timescaleparamsframesize' => { 544 => [\'timeScaleParams','timeScaleParamsFrameSize'] }, - 'timescaleparamsquality' => { 544 => [\'timeScaleParams','timeScaleParamsQuality'] }, + 'timerrecording' => { 352 => 0x96 }, + 'timescaleparams' => { 546 => 'timeScaleParams' }, + 'timescaleparamsframeoverlappingpercentage' => { 546 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] }, + 'timescaleparamsframesize' => { 546 => [\'timeScaleParams','timeScaleParamsFrameSize'] }, + 'timescaleparamsquality' => { 546 => [\'timeScaleParams','timeScaleParamsQuality'] }, 'timesent' => { 137 => 0x50 }, - 'timeshot' => { 505 => 'TimeShot' }, - 'timesignature' => { 544 => 'timeSignature' }, - 'timesincepoweron' => { 350 => 0x29 }, - 'timestamp' => { 11 => 0x45e, 19 => 0x11c, 325 => 0x8, 339 => 'TimeStamp', 350 => 0xaf, 504 => 'Timestamp', 511 => 'Timestamp', 527 => 'TimeStamp' }, + 'timeshot' => { 507 => 'TimeShot' }, + 'timesignature' => { 546 => 'timeSignature' }, + 'timesincepoweron' => { 352 => 0x29 }, + 'timestamp' => { 11 => 0x45e, 19 => 0x11c, 327 => 0x8, 341 => 'TimeStamp', 352 => 0xaf, 506 => 'Timestamp', 513 => 'Timestamp', 529 => 'TimeStamp' }, 'timestamp1' => { 11 => 0x45a }, - 'timezone' => { 82 => 0x1, 246 => 0x694, 247 => 0x6a4, 248 => 0x594, 249 => 0x5c4, 250 => 0x5dc, 291 => 0x0, 421 => 0xa }, + 'timezone' => { 82 => 0x1, 245 => 0x8fe, 247 => 0x694, 248 => 0x6a4, 249 => 0x594, 250 => 0x5c4, 251 => 0x5dc, 292 => 0x0, 423 => 0xa }, 'timezonecity' => { 82 => 0x2 }, 'timezonecode' => { 105 => 0x1 }, 'timezoneinfo' => { 105 => 0x2 }, 'timezoneoffset' => { 124 => 0x882a }, - 'tint' => { 405 => 'player.movie.visual.tint', 515 => 'Tint', 517 => 'Tint' }, - 'title' => { 124 => 0xa436, 162 => 'Title', 335 => 'Title', 339 => 'Title', 350 => 0x65, 402 => 'Title', 403 => ['titl',"\xa9nam"], 405 => 'title', 411 => ['titl',"\xa9nam"], 518 => 'title', 531 => 'Title', 542 => 'Title' }, - 'togglestyleamount' => { 515 => 'ToggleStyleAmount', 517 => 'ToggleStyleAmount' }, - 'togglestyledigest' => { 515 => 'ToggleStyleDigest', 517 => 'ToggleStyleDigest' }, + 'tint' => { 407 => 'player.movie.visual.tint', 517 => 'Tint', 519 => 'Tint' }, + 'title' => { 124 => 0xa436, 162 => 'Title', 337 => 'Title', 341 => 'Title', 352 => 0x65, 404 => 'Title', 405 => ['titl',"\xa9nam"], 407 => 'title', 413 => ['titl',"\xa9nam"], 520 => 'title', 533 => 'Title', 544 => 'Title' }, + 'togglestyleamount' => { 517 => 'ToggleStyleAmount', 519 => 'ToggleStyleAmount' }, + 'togglestyledigest' => { 517 => 'ToggleStyleDigest', 519 => 'ToggleStyleDigest' }, 'tonecomp' => { 241 => 0x81 }, - 'tonecurve' => { 78 => 0x1, 386 => 0x402, 515 => 'ToneCurve', 517 => 'ToneCurve' }, + 'tonecurve' => { 78 => 0x1, 388 => 0x402, 517 => 'ToneCurve', 519 => 'ToneCurve' }, 'tonecurveactive' => { 113 => 0x110 }, - 'tonecurveadobergb' => { 425 => 0xa043 }, - 'tonecurveadobergbdefault' => { 425 => 0xa041 }, - 'tonecurveblue' => { 515 => 'ToneCurveBlue', 517 => 'ToneCurveBlue' }, - 'tonecurvebluex' => { 489 => 0x9003 }, - 'tonecurvebluey' => { 489 => 0x9007 }, + 'tonecurveadobergb' => { 427 => 0xa043 }, + 'tonecurveadobergbdefault' => { 427 => 0xa041 }, + 'tonecurveblue' => { 517 => 'ToneCurveBlue', 519 => 'ToneCurveBlue' }, + 'tonecurvebluex' => { 491 => 0x9003 }, + 'tonecurvebluey' => { 491 => 0x9007 }, 'tonecurvebrightness' => { 108 => 0x20410 }, - 'tonecurvebrightnessx' => { 489 => 0x9000 }, - 'tonecurvebrightnessy' => { 489 => 0x9004 }, + 'tonecurvebrightnessx' => { 491 => 0x9000 }, + 'tonecurvebrightnessy' => { 491 => 0x9004 }, 'tonecurvecolorspace' => { 112 => 0x0 }, 'tonecurvecontrast' => { 108 => 0x20411 }, - 'tonecurvegreen' => { 515 => 'ToneCurveGreen', 517 => 'ToneCurveGreen' }, - 'tonecurvegreenx' => { 489 => 0x9002 }, - 'tonecurvegreeny' => { 489 => 0x9006 }, + 'tonecurvegreen' => { 517 => 'ToneCurveGreen', 519 => 'ToneCurveGreen' }, + 'tonecurvegreenx' => { 491 => 0x9002 }, + 'tonecurvegreeny' => { 491 => 0x9006 }, 'tonecurveinputrange' => { 112 => 0x3 }, 'tonecurveinterpolation' => { 113 => 0x159 }, 'tonecurvemode' => { 113 => 0x113 }, - 'tonecurvename' => { 515 => 'ToneCurveName', 517 => 'ToneCurveName' }, - 'tonecurvename2012' => { 515 => 'ToneCurveName2012', 517 => 'ToneCurveName2012' }, + 'tonecurvename' => { 517 => 'ToneCurveName', 519 => 'ToneCurveName' }, + 'tonecurvename2012' => { 517 => 'ToneCurveName2012', 519 => 'ToneCurveName2012' }, 'tonecurveoriginal' => { 108 => '0x20400.1' }, 'tonecurveoutputrange' => { 112 => 0x5 }, 'tonecurveprofilename' => { 143 => 0x1391 }, 'tonecurveproperty' => { 113 => 0x3c }, - 'tonecurvepv2012' => { 515 => 'ToneCurvePV2012', 517 => 'ToneCurvePV2012' }, - 'tonecurvepv2012blue' => { 515 => 'ToneCurvePV2012Blue', 517 => 'ToneCurvePV2012Blue' }, - 'tonecurvepv2012green' => { 515 => 'ToneCurvePV2012Green', 517 => 'ToneCurvePV2012Green' }, - 'tonecurvepv2012red' => { 515 => 'ToneCurvePV2012Red', 517 => 'ToneCurvePV2012Red' }, - 'tonecurvered' => { 515 => 'ToneCurveRed', 517 => 'ToneCurveRed' }, - 'tonecurveredx' => { 489 => 0x9001 }, - 'tonecurveredy' => { 489 => 0x9005 }, - 'tonecurves' => { 386 => 0x403 }, + 'tonecurvepv2012' => { 517 => 'ToneCurvePV2012', 519 => 'ToneCurvePV2012' }, + 'tonecurvepv2012blue' => { 517 => 'ToneCurvePV2012Blue', 519 => 'ToneCurvePV2012Blue' }, + 'tonecurvepv2012green' => { 517 => 'ToneCurvePV2012Green', 519 => 'ToneCurvePV2012Green' }, + 'tonecurvepv2012red' => { 517 => 'ToneCurvePV2012Red', 519 => 'ToneCurvePV2012Red' }, + 'tonecurvered' => { 517 => 'ToneCurveRed', 519 => 'ToneCurveRed' }, + 'tonecurveredx' => { 491 => 0x9001 }, + 'tonecurveredy' => { 491 => 0x9005 }, + 'tonecurves' => { 388 => 0x403 }, 'tonecurveshape' => { 112 => 0x1 }, - 'tonecurvesrgb' => { 425 => 0xa042 }, - 'tonecurvesrgbdefault' => { 425 => 0xa040 }, + 'tonecurvesrgb' => { 427 => 0xa042 }, + 'tonecurvesrgbdefault' => { 427 => 0xa040 }, 'tonecurvex' => { 112 => 0xa }, 'tonecurvey' => { 112 => 0xb }, - 'tonelevel' => { 326 => 0x52e }, - 'tonemap' => { 246 => 0x26a, 247 => 0x26a }, - 'tonemapstrength' => { 515 => 'ToneMapStrength', 517 => 'ToneMapStrength' }, - 'toningeffect' => { 60 => 0xf, 241 => 0xb3, 257 => 0x38, 258 => 0x40, 259 => 0x48, 418 => 0x1015 }, + 'tonelevel' => { 328 => 0x52e }, + 'tonemap' => { 245 => 0x374, 247 => 0x26a, 248 => 0x26a }, + 'tonemapstrength' => { 517 => 'ToneMapStrength', 519 => 'ToneMapStrength' }, + 'toningeffect' => { 60 => 0xf, 241 => 0xb3, 258 => 0x38, 259 => 0x40, 260 => 0x48, 420 => 0x1015 }, 'toningeffectauto' => { 75 => 0xa4 }, 'toningeffectfaithful' => { 74 => 0x74, 75 => 0x74 }, 'toningeffectlandscape' => { 74 => 0x44, 75 => 0x44 }, @@ -6989,62 +6995,66 @@ my %tagLookup = ( 'toningeffectuserdef1' => { 74 => 0xa4, 75 => 0xbc }, 'toningeffectuserdef2' => { 74 => 0xbc, 75 => 0xd4 }, 'toningeffectuserdef3' => { 74 => 0xd4, 75 => 0xec }, - 'toningsaturation' => { 257 => 0x39, 258 => 0x41, 259 => 0x49 }, + 'toningsaturation' => { 258 => 0x39, 259 => 0x41, 260 => 0x49 }, 'totalzoom' => { 145 => 0x62 }, - 'touchae' => { 350 => 0xab }, - 'track' => { 403 => "\xa9trk", 411 => "\xa9trk" }, - 'trackcreatedate' => { 410 => 0x1 }, - 'trackmodifydate' => { 410 => 0x2 }, - 'tracknumber' => { 403 => 'trkn', 544 => 'trackNumber' }, - 'tracks' => { 544 => 'Tracks' }, - 'tracksframerate' => { 544 => [\'Tracks','TracksFrameRate'] }, - 'tracksmarkers' => { 544 => [\'Tracks','TracksMarkers'] }, - 'tracksmarkerscomment' => { 544 => [\'Tracks','TracksMarkersComment'] }, - 'tracksmarkerscuepointparams' => { 544 => [\'Tracks','TracksMarkersCuePointParams'] }, - 'tracksmarkerscuepointparamskey' => { 544 => [\'Tracks','TracksMarkersCuePointParamsKey'] }, - 'tracksmarkerscuepointparamsvalue' => { 544 => [\'Tracks','TracksMarkersCuePointParamsValue'] }, - 'tracksmarkerscuepointtype' => { 544 => [\'Tracks','TracksMarkersCuePointType'] }, - 'tracksmarkersduration' => { 544 => [\'Tracks','TracksMarkersDuration'] }, - 'tracksmarkerslocation' => { 544 => [\'Tracks','TracksMarkersLocation'] }, - 'tracksmarkersname' => { 544 => [\'Tracks','TracksMarkersName'] }, - 'tracksmarkersprobability' => { 544 => [\'Tracks','TracksMarkersProbability'] }, - 'tracksmarkersspeaker' => { 544 => [\'Tracks','TracksMarkersSpeaker'] }, - 'tracksmarkersstarttime' => { 544 => [\'Tracks','TracksMarkersStartTime'] }, - 'tracksmarkerstarget' => { 544 => [\'Tracks','TracksMarkersTarget'] }, - 'tracksmarkerstype' => { 544 => [\'Tracks','TracksMarkersType'] }, - 'trackstrackname' => { 544 => [\'Tracks','TracksTrackName'] }, - 'trackstracktype' => { 544 => [\'Tracks','TracksTrackType'] }, - 'tracktype' => { 411 => 'kgtt' }, + 'touchae' => { 352 => 0xab }, + 'touchfn' => { 323 => 0x154 }, + 'touchfnareatall' => { 323 => 0x15b }, + 'touchfnareawide' => { 323 => 0x159 }, + 'touchfnrole' => { 323 => 0x155 }, + 'track' => { 405 => "\xa9trk", 413 => "\xa9trk" }, + 'trackcreatedate' => { 412 => 0x1 }, + 'trackmodifydate' => { 412 => 0x2 }, + 'tracknumber' => { 405 => 'trkn', 546 => 'trackNumber' }, + 'tracks' => { 546 => 'Tracks' }, + 'tracksframerate' => { 546 => [\'Tracks','TracksFrameRate'] }, + 'tracksmarkers' => { 546 => [\'Tracks','TracksMarkers'] }, + 'tracksmarkerscomment' => { 546 => [\'Tracks','TracksMarkersComment'] }, + 'tracksmarkerscuepointparams' => { 546 => [\'Tracks','TracksMarkersCuePointParams'] }, + 'tracksmarkerscuepointparamskey' => { 546 => [\'Tracks','TracksMarkersCuePointParamsKey'] }, + 'tracksmarkerscuepointparamsvalue' => { 546 => [\'Tracks','TracksMarkersCuePointParamsValue'] }, + 'tracksmarkerscuepointtype' => { 546 => [\'Tracks','TracksMarkersCuePointType'] }, + 'tracksmarkersduration' => { 546 => [\'Tracks','TracksMarkersDuration'] }, + 'tracksmarkerslocation' => { 546 => [\'Tracks','TracksMarkersLocation'] }, + 'tracksmarkersname' => { 546 => [\'Tracks','TracksMarkersName'] }, + 'tracksmarkersprobability' => { 546 => [\'Tracks','TracksMarkersProbability'] }, + 'tracksmarkersspeaker' => { 546 => [\'Tracks','TracksMarkersSpeaker'] }, + 'tracksmarkersstarttime' => { 546 => [\'Tracks','TracksMarkersStartTime'] }, + 'tracksmarkerstarget' => { 546 => [\'Tracks','TracksMarkersTarget'] }, + 'tracksmarkerstype' => { 546 => [\'Tracks','TracksMarkersType'] }, + 'trackstrackname' => { 546 => [\'Tracks','TracksTrackName'] }, + 'trackstracktype' => { 546 => [\'Tracks','TracksTrackType'] }, + 'tracktype' => { 413 => 'kgtt' }, 'trailer' => { 125 => 'Trailer' }, 'trailersignature' => { 169 => 'zmie' }, - 'transcript' => { 529 => 'Transcript' }, - 'transcriptlink' => { 529 => 'TranscriptLink' }, - 'transcriptlinklink' => { 529 => [\'TranscriptLink','TranscriptLinkLink'] }, - 'transcriptlinklinkqualifier' => { 529 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] }, - 'transferfunction' => { 124 => 0x12d, 540 => 'TransferFunction' }, + 'transcript' => { 531 => 'Transcript' }, + 'transcriptlink' => { 531 => 'TranscriptLink' }, + 'transcriptlinklink' => { 531 => [\'TranscriptLink','TranscriptLinkLink'] }, + 'transcriptlinklinkqualifier' => { 531 => [\'TranscriptLink','TranscriptLinkLinkQualifier'] }, + 'transferfunction' => { 124 => 0x12d, 542 => 'TransferFunction' }, 'transfertimenormal' => { 143 => 0x1888 }, 'transfertimetest' => { 143 => 0x1889 }, - 'transform' => { 350 => [0x8012,0x59] }, - 'transformation' => { 530 => 'Transformation' }, - 'transmissionreference' => { 532 => 'TransmissionReference' }, - 'trapped' => { 335 => 'Trapped', 531 => 'Trapped' }, + 'transform' => { 352 => [0x8012,0x59] }, + 'transformation' => { 532 => 'Transformation' }, + 'transmissionreference' => { 534 => 'TransmissionReference' }, + 'trapped' => { 337 => 'Trapped', 533 => 'Trapped' }, 'trashbuttonfunction' => { 89 => 0x710 }, - 'travelday' => { 350 => 0x36 }, - 'treble' => { 405 => 'player.movie.audio.treble' }, - 'triggermode' => { 412 => 0x6, 413 => 0x34, 414 => 0x34 }, + 'travelday' => { 352 => 0x36 }, + 'treble' => { 407 => 'player.movie.audio.treble' }, + 'triggermode' => { 414 => 0x6, 415 => 0x34, 416 => 0x34 }, 'tstop' => { 124 => 0xc772 }, - 'ttl_da_adown' => { 373 => 0x5 }, - 'ttl_da_aup' => { 373 => 0x4 }, - 'ttl_da_bdown' => { 373 => 0x7 }, - 'ttl_da_bup' => { 373 => 0x6 }, - 'tungstenawb' => { 363 => 0x1 }, - 'tvepisode' => { 403 => 'tves' }, - 'tvepisodeid' => { 403 => 'tven' }, - 'tvexposuretimesetting' => { 366 => 0x12 }, - 'tvnetworkname' => { 403 => 'tvnn' }, - 'tvseason' => { 403 => 'tvsn' }, - 'tvshow' => { 403 => 'tvsh' }, - 'type' => { 499 => 'Type', 518 => 'type', 539 => 'type' }, + 'ttl_da_adown' => { 375 => 0x5 }, + 'ttl_da_aup' => { 375 => 0x4 }, + 'ttl_da_bdown' => { 375 => 0x7 }, + 'ttl_da_bup' => { 375 => 0x6 }, + 'tungstenawb' => { 365 => 0x1 }, + 'tvepisode' => { 405 => 'tves' }, + 'tvepisodeid' => { 405 => 'tven' }, + 'tvexposuretimesetting' => { 368 => 0x12 }, + 'tvnetworkname' => { 405 => 'tvnn' }, + 'tvseason' => { 405 => 'tvsn' }, + 'tvshow' => { 405 => 'tvsh' }, + 'type' => { 501 => 'Type', 520 => 'type', 541 => 'type' }, 'typestatus' => { 123 => [\'Identification','IdentificationTypeStatus'] }, 'uniquecameramodel' => { 124 => 0xc614 }, 'uniquedocumentid' => { 136 => 0xbb }, @@ -7055,17 +7065,17 @@ my %tagLookup = ( 'uniquematrixfluorescent' => { 143 => 0x7e6 }, 'uniquematrixtungsten' => { 143 => 0x7e5 }, 'uniqueobjectname' => { 137 => 0x64 }, - 'units' => { 500 => 'Units' }, - 'unknown_aacr' => { 403 => 'AACR' }, - 'unknown_cdek' => { 403 => 'CDEK' }, - 'unknown_cdet' => { 403 => 'CDET' }, - 'unknownblock' => { 386 => 0x405 }, - 'unknownblock1' => { 330 => 0x635 }, - 'unknownblock2' => { 330 => 0x636 }, - 'unknownblock3' => { 330 => 0x1103 }, - 'unknownblock4' => { 330 => 0x1104 }, + 'units' => { 502 => 'Units' }, + 'unknown_aacr' => { 405 => 'AACR' }, + 'unknown_cdek' => { 405 => 'CDEK' }, + 'unknown_cdet' => { 405 => 'CDET' }, + 'unknownblock' => { 388 => 0x405 }, + 'unknownblock1' => { 332 => 0x635 }, + 'unknownblock2' => { 332 => 0x636 }, + 'unknownblock3' => { 332 => 0x1103 }, + 'unknownblock4' => { 332 => 0x1104 }, 'unknowncontrast' => { 114 => 0x45 }, - 'unknowndate' => { 395 => 0x212 }, + 'unknowndate' => { 397 => 0x212 }, 'unknownev' => { 143 => 0x1 }, 'unknownlinear' => { 114 => 0x46 }, 'unknownnumber' => { 102 => 0x180b }, @@ -7076,205 +7086,205 @@ my %tagLookup = ( 'unknownrawshadow' => { 114 => 0x84 }, 'unknownrawshadowpoint' => { 114 => 0x49 }, 'unknownsharpness' => { 114 => 0x47 }, - 'unknowntags' => { 411 => 'TAGS' }, + 'unknowntags' => { 413 => 'TAGS' }, 'unknowntemperature' => { 126 => 0x4 }, - 'unknownthumbnail' => { 411 => 'thmb' }, - 'unsharp1color' => { 304 => 0x13 }, - 'unsharp1halowidth' => { 304 => 0x19 }, - 'unsharp1intensity' => { 304 => 0x17 }, - 'unsharp1threshold' => { 304 => 0x1b }, - 'unsharp2color' => { 304 => 0x2e }, - 'unsharp2halowidth' => { 304 => 0x34 }, - 'unsharp2intensity' => { 304 => 0x32 }, - 'unsharp2threshold' => { 304 => 0x36 }, - 'unsharp3color' => { 304 => 0x49 }, - 'unsharp3halowidth' => { 304 => 0x4f }, - 'unsharp3intensity' => { 304 => 0x4d }, - 'unsharp3threshold' => { 304 => 0x51 }, - 'unsharp4color' => { 304 => 0x64 }, - 'unsharp4halowidth' => { 304 => 0x6a }, - 'unsharp4intensity' => { 304 => 0x68 }, - 'unsharp4threshold' => { 304 => 0x6c }, - 'unsharpcount' => { 304 => 0x0 }, - 'unsharpmask' => { 114 => 0x90, 299 => 0x76a43200 }, + 'unknownthumbnail' => { 413 => 'thmb' }, + 'unsharp1color' => { 305 => 0x13 }, + 'unsharp1halowidth' => { 305 => 0x19 }, + 'unsharp1intensity' => { 305 => 0x17 }, + 'unsharp1threshold' => { 305 => 0x1b }, + 'unsharp2color' => { 305 => 0x2e }, + 'unsharp2halowidth' => { 305 => 0x34 }, + 'unsharp2intensity' => { 305 => 0x32 }, + 'unsharp2threshold' => { 305 => 0x36 }, + 'unsharp3color' => { 305 => 0x49 }, + 'unsharp3halowidth' => { 305 => 0x4f }, + 'unsharp3intensity' => { 305 => 0x4d }, + 'unsharp3threshold' => { 305 => 0x51 }, + 'unsharp4color' => { 305 => 0x64 }, + 'unsharp4halowidth' => { 305 => 0x6a }, + 'unsharp4intensity' => { 305 => 0x68 }, + 'unsharp4threshold' => { 305 => 0x6c }, + 'unsharpcount' => { 305 => 0x0 }, + 'unsharpmask' => { 114 => 0x90, 300 => 0x76a43200 }, 'unsharpmaskfineness' => { 78 => 0xe, 108 => 0x20309 }, 'unsharpmaskstrength' => { 108 => 0x20308 }, 'unsharpmaskthreshold' => { 78 => 0xf, 108 => 0x2030a }, - 'uprightcentermode' => { 515 => 'UprightCenterMode', 517 => 'UprightCenterMode' }, - 'uprightcenternormx' => { 515 => 'UprightCenterNormX', 517 => 'UprightCenterNormX' }, - 'uprightcenternormy' => { 515 => 'UprightCenterNormY', 517 => 'UprightCenterNormY' }, - 'uprightdependentdigest' => { 515 => 'UprightDependentDigest', 517 => 'UprightDependentDigest' }, - 'uprightfocallength35mm' => { 515 => 'UprightFocalLength35mm', 517 => 'UprightFocalLength35mm' }, - 'uprightfocalmode' => { 515 => 'UprightFocalMode', 517 => 'UprightFocalMode' }, - 'uprightfoursegments_0' => { 515 => 'UprightFourSegments_0', 517 => 'UprightFourSegments_0' }, - 'uprightfoursegments_1' => { 515 => 'UprightFourSegments_1', 517 => 'UprightFourSegments_1' }, - 'uprightfoursegments_2' => { 515 => 'UprightFourSegments_2', 517 => 'UprightFourSegments_2' }, - 'uprightfoursegments_3' => { 515 => 'UprightFourSegments_3', 517 => 'UprightFourSegments_3' }, - 'uprightfoursegmentscount' => { 515 => 'UprightFourSegmentsCount', 517 => 'UprightFourSegmentsCount' }, - 'uprightguideddependentdigest' => { 515 => 'UprightGuidedDependentDigest', 517 => 'UprightGuidedDependentDigest' }, - 'uprightpreview' => { 515 => 'UprightPreview', 517 => 'UprightPreview' }, - 'uprighttransform_0' => { 515 => 'UprightTransform_0', 517 => 'UprightTransform_0' }, - 'uprighttransform_1' => { 515 => 'UprightTransform_1', 517 => 'UprightTransform_1' }, - 'uprighttransform_2' => { 515 => 'UprightTransform_2', 517 => 'UprightTransform_2' }, - 'uprighttransform_3' => { 515 => 'UprightTransform_3', 517 => 'UprightTransform_3' }, - 'uprighttransform_4' => { 515 => 'UprightTransform_4', 517 => 'UprightTransform_4' }, - 'uprighttransform_5' => { 515 => 'UprightTransform_5', 517 => 'UprightTransform_5' }, - 'uprighttransformcount' => { 515 => 'UprightTransformCount', 517 => 'UprightTransformCount' }, - 'uprightversion' => { 515 => 'UprightVersion', 517 => 'UprightVersion' }, - 'urgency' => { 136 => 0xa, 532 => 'Urgency' }, - 'url' => { 162 => 'URL', 339 => 'URL', 400 => 0x40b, 534 => 'url' }, - 'url_list' => { 400 => 0x41e }, - 'urla-platform' => { 534 => [\'url','urlA-platform'] }, - 'urlurl' => { 534 => [\'url','urlUrl'] }, + 'uprightcentermode' => { 517 => 'UprightCenterMode', 519 => 'UprightCenterMode' }, + 'uprightcenternormx' => { 517 => 'UprightCenterNormX', 519 => 'UprightCenterNormX' }, + 'uprightcenternormy' => { 517 => 'UprightCenterNormY', 519 => 'UprightCenterNormY' }, + 'uprightdependentdigest' => { 517 => 'UprightDependentDigest', 519 => 'UprightDependentDigest' }, + 'uprightfocallength35mm' => { 517 => 'UprightFocalLength35mm', 519 => 'UprightFocalLength35mm' }, + 'uprightfocalmode' => { 517 => 'UprightFocalMode', 519 => 'UprightFocalMode' }, + 'uprightfoursegments_0' => { 517 => 'UprightFourSegments_0', 519 => 'UprightFourSegments_0' }, + 'uprightfoursegments_1' => { 517 => 'UprightFourSegments_1', 519 => 'UprightFourSegments_1' }, + 'uprightfoursegments_2' => { 517 => 'UprightFourSegments_2', 519 => 'UprightFourSegments_2' }, + 'uprightfoursegments_3' => { 517 => 'UprightFourSegments_3', 519 => 'UprightFourSegments_3' }, + 'uprightfoursegmentscount' => { 517 => 'UprightFourSegmentsCount', 519 => 'UprightFourSegmentsCount' }, + 'uprightguideddependentdigest' => { 517 => 'UprightGuidedDependentDigest', 519 => 'UprightGuidedDependentDigest' }, + 'uprightpreview' => { 517 => 'UprightPreview', 519 => 'UprightPreview' }, + 'uprighttransform_0' => { 517 => 'UprightTransform_0', 519 => 'UprightTransform_0' }, + 'uprighttransform_1' => { 517 => 'UprightTransform_1', 519 => 'UprightTransform_1' }, + 'uprighttransform_2' => { 517 => 'UprightTransform_2', 519 => 'UprightTransform_2' }, + 'uprighttransform_3' => { 517 => 'UprightTransform_3', 519 => 'UprightTransform_3' }, + 'uprighttransform_4' => { 517 => 'UprightTransform_4', 519 => 'UprightTransform_4' }, + 'uprighttransform_5' => { 517 => 'UprightTransform_5', 519 => 'UprightTransform_5' }, + 'uprighttransformcount' => { 517 => 'UprightTransformCount', 519 => 'UprightTransformCount' }, + 'uprightversion' => { 517 => 'UprightVersion', 519 => 'UprightVersion' }, + 'urgency' => { 136 => 0xa, 534 => 'Urgency' }, + 'url' => { 162 => 'URL', 341 => 'URL', 402 => 0x40b, 536 => 'url' }, + 'url_list' => { 402 => 0x41e }, + 'urla-platform' => { 536 => [\'url','urlA-platform'] }, + 'urlurl' => { 536 => [\'url','urlUrl'] }, 'usablemeteringmodes' => { 89 => 0x10a }, 'usableshootingmodes' => { 89 => 0x109 }, - 'usage' => { 535 => 'usage' }, - 'usageterms' => { 548 => 'UsageTerms' }, - 'usbpowerdelivery' => { 246 => 0x762, 247 => 0x772, 248 => 0x664, 249 => 0x694, 250 => 0x6fc }, - 'usedialwithouthold' => { 322 => 0xbf, 323 => 0xbf, 324 => 0xbf }, - 'useguidelines' => { 513 => 'useGuidelines' }, - 'usepanoramaviewer' => { 503 => 'UsePanoramaViewer' }, - 'usercollection' => { 405 => 'collection.user' }, - 'usercomment' => { 102 => 0x805, 124 => 0x9286, 521 => 'UserComment' }, + 'usage' => { 537 => 'usage' }, + 'usageterms' => { 550 => 'UsageTerms' }, + 'usbpowerdelivery' => { 245 => 0x9ac, 247 => 0x762, 248 => 0x772, 249 => 0x664, 250 => 0x694, 251 => 0x6fc }, + 'usedialwithouthold' => { 323 => 0xc3, 324 => 0xbf, 325 => 0xbf, 326 => 0xbf }, + 'useguidelines' => { 515 => 'useGuidelines' }, + 'usepanoramaviewer' => { 505 => 'UsePanoramaViewer' }, + 'usercollection' => { 407 => 'collection.user' }, + 'usercomment' => { 102 => 0x805, 124 => 0x9286, 523 => 'UserComment' }, 'userdef1picturestyle' => { 19 => 0x10c, 74 => 0xd8, 75 => 0xf0 }, 'userdef2picturestyle' => { 19 => 0x10e, 74 => 0xda, 75 => 0xf2 }, 'userdef3picturestyle' => { 19 => 0x110, 74 => 0xdc, 75 => 0xf4 }, - 'userfields' => { 508 => 'UserFields' }, - 'userlabel' => { 412 => 0x2b, 413 => 0x5a, 414 => 0x68 }, - 'userprofile' => { 345 => 0x302, 349 => 0x34c, 352 => 0x3038 }, - 'userrating' => { 405 => 'rating.user', 411 => 'urat' }, + 'userfields' => { 510 => 'UserFields' }, + 'userlabel' => { 414 => 0x2b, 415 => 0x5a, 416 => 0x68 }, + 'userprofile' => { 347 => 0x302, 351 => 0x34c, 354 => 0x3038 }, + 'userrating' => { 407 => 'rating.user', 413 => 'urat' }, 'usmlenselectronicmf' => { 2 => 0x7, 88 => 0x7, 89 => 0x501 }, - 'uspsnumber' => { 534 => 'uspsNumber' }, + 'uspsnumber' => { 536 => 'uspsNumber' }, 'utmeasting' => { 173 => 'Easting' }, 'utmmapdatum' => { 173 => 'Datum' }, 'utmnorthing' => { 173 => 'Northing' }, 'utmzone' => { 173 => 'Zone' }, - 'uuid' => { 515 => 'UUID', 517 => 'UUID' }, - 'uv-irfiltercorrection' => { 345 => 0x325 }, - 'validbits' => { 330 => 0x611, 331 => 0x102c }, - 'validcropcorners' => { 340 => 'ValidCropCorners' }, - 'validpixeldepth' => { 334 => 0x611 }, - 'variablelowpassfilter' => { 452 => 0x2028 }, + 'uuid' => { 517 => 'UUID', 519 => 'UUID' }, + 'uv-irfiltercorrection' => { 347 => 0x325 }, + 'validbits' => { 332 => 0x611, 333 => 0x102c }, + 'validcropcorners' => { 342 => 'ValidCropCorners' }, + 'validpixeldepth' => { 336 => 0x611 }, + 'variablelowpassfilter' => { 454 => 0x2028 }, 'variousmodes' => { 145 => 0x26 }, 'variousmodes2' => { 145 => 0x3a }, 'variprogram' => { 241 => 0xab }, 'varraydacnominalvalues' => { 143 => 0x191e }, - 'vendor' => { 411 => 'vndr' }, - 'vendorinfo' => { 493 => 'VendorInfo' }, - 'vendorinfomanufacturer' => { 493 => [\'VendorInfo','VendorInfoManufacturer'] }, - 'vendorinfomodel' => { 493 => [\'VendorInfo','VendorInfoModel'] }, - 'vendorinfonotes' => { 493 => [\'VendorInfo','VendorInfoNotes'] }, + 'vendor' => { 413 => 'vndr' }, + 'vendorinfo' => { 495 => 'VendorInfo' }, + 'vendorinfomanufacturer' => { 495 => [\'VendorInfo','VendorInfoManufacturer'] }, + 'vendorinfomodel' => { 495 => [\'VendorInfo','VendorInfoModel'] }, + 'vendorinfonotes' => { 495 => [\'VendorInfo','VendorInfoNotes'] }, 'verbatimidentification' => { 123 => [\'Identification','IdentificationVerbatimIdentification'] }, - 'version' => { 132 => 0x0, 340 => 'Version', 402 => 'Version', 405 => 'version', 515 => 'Version', 517 => 'Version', 526 => 'Version' }, - 'versioncreatedate' => { 489 => 0xd100 }, - 'versionid' => { 545 => 'VersionID' }, - 'versionidentifier' => { 534 => 'versionIdentifier' }, - 'versionmodifydate' => { 489 => 0xd101 }, - 'versions' => { 545 => 'Versions' }, - 'versionscomments' => { 545 => [\'Versions','VersionsComments'] }, - 'versionsevent' => { 545 => [\'Versions','VersionsEvent'] }, - 'versionseventaction' => { 545 => [\'Versions','VersionsEventAction'] }, - 'versionseventchanged' => { 545 => [\'Versions','VersionsEventChanged'] }, - 'versionseventinstanceid' => { 545 => [\'Versions','VersionsEventInstanceID'] }, - 'versionseventparameters' => { 545 => [\'Versions','VersionsEventParameters'] }, - 'versionseventsoftwareagent' => { 545 => [\'Versions','VersionsEventSoftwareAgent'] }, - 'versionseventwhen' => { 545 => [\'Versions','VersionsEventWhen'] }, - 'versionsmodifier' => { 545 => [\'Versions','VersionsModifier'] }, - 'versionsmodifydate' => { 545 => [\'Versions','VersionsModifyDate'] }, - 'versionsversion' => { 545 => [\'Versions','VersionsVersion'] }, - 'verticalafonbutton' => { 306 => '3.2', 307 => '47.2', 309 => '79.1', 323 => 0x11d, 324 => 0x135 }, + 'version' => { 132 => 0x0, 342 => 'Version', 404 => 'Version', 407 => 'version', 517 => 'Version', 519 => 'Version', 528 => 'Version' }, + 'versioncreatedate' => { 491 => 0xd100 }, + 'versionid' => { 547 => 'VersionID' }, + 'versionidentifier' => { 536 => 'versionIdentifier' }, + 'versionmodifydate' => { 491 => 0xd101 }, + 'versions' => { 547 => 'Versions' }, + 'versionscomments' => { 547 => [\'Versions','VersionsComments'] }, + 'versionsevent' => { 547 => [\'Versions','VersionsEvent'] }, + 'versionseventaction' => { 547 => [\'Versions','VersionsEventAction'] }, + 'versionseventchanged' => { 547 => [\'Versions','VersionsEventChanged'] }, + 'versionseventinstanceid' => { 547 => [\'Versions','VersionsEventInstanceID'] }, + 'versionseventparameters' => { 547 => [\'Versions','VersionsEventParameters'] }, + 'versionseventsoftwareagent' => { 547 => [\'Versions','VersionsEventSoftwareAgent'] }, + 'versionseventwhen' => { 547 => [\'Versions','VersionsEventWhen'] }, + 'versionsmodifier' => { 547 => [\'Versions','VersionsModifier'] }, + 'versionsmodifydate' => { 547 => [\'Versions','VersionsModifyDate'] }, + 'versionsversion' => { 547 => [\'Versions','VersionsVersion'] }, + 'verticalafonbutton' => { 307 => '3.2', 308 => '47.2', 310 => '79.1', 325 => 0x11d, 326 => 0x135 }, 'verticalclockoverlaps' => { 143 => 0x412 }, - 'verticalfuncbutton' => { 307 => '42.2', 309 => '67.1', 323 => 0x115, 324 => 0x12d }, - 'verticalfuncbuttonplaybackmode' => { 323 => 0x1b7, 324 => 0x1cf }, - 'verticalfuncbuttonplusdials' => { 307 => '43.1' }, - 'verticalfuncplusdials' => { 309 => '68.1' }, - 'verticalisobutton' => { 250 => 0x792 }, - 'verticalmovieafonbutton' => { 323 => 0x1f9, 324 => 0x211 }, - 'verticalmoviefuncbutton' => { 323 => 0x1e1, 324 => 0x1f9 }, - 'verticalmultiselector' => { 307 => '42.1', 309 => '66.1', 310 => '66.1', 320 => '66.1', 323 => 0x18f, 324 => 0x1a7 }, - 'verticalmultiselectorplaybackmode' => { 323 => 0x125, 324 => 0x13d }, + 'verticalfuncbutton' => { 308 => '42.2', 310 => '67.1', 325 => 0x115, 326 => 0x12d }, + 'verticalfuncbuttonplaybackmode' => { 325 => 0x1b7, 326 => 0x1cf }, + 'verticalfuncbuttonplusdials' => { 308 => '43.1' }, + 'verticalfuncplusdials' => { 310 => '68.1' }, + 'verticalisobutton' => { 251 => 0x792 }, + 'verticalmovieafonbutton' => { 325 => 0x1f9, 326 => 0x211 }, + 'verticalmoviefuncbutton' => { 325 => 0x1e1, 326 => 0x1f9 }, + 'verticalmultiselector' => { 308 => '42.1', 310 => '66.1', 311 => '66.1', 321 => '66.1', 325 => 0x18f, 326 => 0x1a7 }, + 'verticalmultiselectorplaybackmode' => { 325 => 0x125, 326 => 0x13d }, 'vfdisplayillumination' => { 2 => 0x11, 89 => [0x510,0x51d] }, - 'vibrance' => { 509 => 'Vibrance', 515 => 'Vibrance', 517 => 'Vibrance' }, - 'vibrationreduction' => { 270 => [0x75,0x82,0x1ae], 278 => '586.1', 285 => '590.2', 289 => 0x4 }, - 'videoalphamode' => { 544 => 'videoAlphaMode' }, - 'videoalphapremultiplecolor' => { 544 => 'videoAlphaPremultipleColor' }, - 'videoalphapremultiplecolora' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] }, - 'videoalphapremultiplecolorb' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] }, - 'videoalphapremultiplecolorblack' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] }, - 'videoalphapremultiplecolorblue' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] }, - 'videoalphapremultiplecolorcyan' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] }, - 'videoalphapremultiplecolorgray' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] }, - 'videoalphapremultiplecolorgreen' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] }, - 'videoalphapremultiplecolorl' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] }, - 'videoalphapremultiplecolormagenta' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] }, - 'videoalphapremultiplecolormode' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] }, - 'videoalphapremultiplecolorred' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] }, - 'videoalphapremultiplecolorswatchname' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] }, - 'videoalphapremultiplecolortint' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] }, - 'videoalphapremultiplecolortype' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] }, - 'videoalphapremultiplecoloryellow' => { 544 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] }, - 'videoalphaunityistransparent' => { 544 => 'videoAlphaUnityIsTransparent' }, - 'videobitrate' => { 529 => 'videoBitRate' }, - 'videobitratemode' => { 529 => 'videoBitRateMode' }, - 'videoburstmode' => { 350 => 0xbb }, - 'videoburstresolution' => { 350 => 0xb3 }, + 'vibrance' => { 511 => 'Vibrance', 517 => 'Vibrance', 519 => 'Vibrance' }, + 'vibrationreduction' => { 271 => [0x75,0x82,0x1ae], 279 => '586.1', 286 => '590.2', 290 => 0x4 }, + 'videoalphamode' => { 546 => 'videoAlphaMode' }, + 'videoalphapremultiplecolor' => { 546 => 'videoAlphaPremultipleColor' }, + 'videoalphapremultiplecolora' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] }, + 'videoalphapremultiplecolorb' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] }, + 'videoalphapremultiplecolorblack' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] }, + 'videoalphapremultiplecolorblue' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] }, + 'videoalphapremultiplecolorcyan' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] }, + 'videoalphapremultiplecolorgray' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGray'] }, + 'videoalphapremultiplecolorgreen' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] }, + 'videoalphapremultiplecolorl' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] }, + 'videoalphapremultiplecolormagenta' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] }, + 'videoalphapremultiplecolormode' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] }, + 'videoalphapremultiplecolorred' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] }, + 'videoalphapremultiplecolorswatchname' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] }, + 'videoalphapremultiplecolortint' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] }, + 'videoalphapremultiplecolortype' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] }, + 'videoalphapremultiplecoloryellow' => { 546 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] }, + 'videoalphaunityistransparent' => { 546 => 'videoAlphaUnityIsTransparent' }, + 'videobitrate' => { 531 => 'videoBitRate' }, + 'videobitratemode' => { 531 => 'videoBitRateMode' }, + 'videoburstmode' => { 352 => 0xbb }, + 'videoburstresolution' => { 352 => 0xb3 }, 'videocodec' => { 71 => 0x74 }, - 'videocolorspace' => { 544 => 'videoColorSpace' }, + 'videocolorspace' => { 546 => 'videoColorSpace' }, 'videocompression' => { 132 => 0x3806 }, - 'videocompressor' => { 544 => 'videoCompressor' }, - 'videodisplayaspectratio' => { 529 => 'videoDisplayAspectRatio' }, - 'videoencodingprofile' => { 529 => 'videoEncodingProfile' }, - 'videofieldorder' => { 544 => 'videoFieldOrder' }, - 'videoframerate' => { 350 => 0x27, 544 => 'videoFrameRate' }, - 'videoframesize' => { 544 => 'videoFrameSize' }, - 'videoframesizeh' => { 544 => [\'videoFrameSize','videoFrameSizeH'] }, - 'videoframesizeunit' => { 544 => [\'videoFrameSize','videoFrameSizeUnit'] }, - 'videoframesizew' => { 544 => [\'videoFrameSize','videoFrameSizeW'] }, - 'videomoddate' => { 544 => 'videoModDate' }, - 'videopixelaspectratio' => { 544 => 'videoPixelAspectRatio' }, - 'videopixeldepth' => { 544 => 'videoPixelDepth' }, - 'videopreburst' => { 350 => 0xc1 }, + 'videocompressor' => { 546 => 'videoCompressor' }, + 'videodisplayaspectratio' => { 531 => 'videoDisplayAspectRatio' }, + 'videoencodingprofile' => { 531 => 'videoEncodingProfile' }, + 'videofieldorder' => { 546 => 'videoFieldOrder' }, + 'videoframerate' => { 352 => 0x27, 546 => 'videoFrameRate' }, + 'videoframesize' => { 546 => 'videoFrameSize' }, + 'videoframesizeh' => { 546 => [\'videoFrameSize','videoFrameSizeH'] }, + 'videoframesizeunit' => { 546 => [\'videoFrameSize','videoFrameSizeUnit'] }, + 'videoframesizew' => { 546 => [\'videoFrameSize','videoFrameSizeW'] }, + 'videomoddate' => { 546 => 'videoModDate' }, + 'videopixelaspectratio' => { 546 => 'videoPixelAspectRatio' }, + 'videopixeldepth' => { 546 => 'videoPixelDepth' }, + 'videopreburst' => { 352 => 0xc1 }, 'videoquality' => { 118 => 0x4003 }, 'videorecordingmode' => { 132 => 0x3803 }, - 'videoshottype' => { 529 => 'VideoShotType' }, - 'videoshottypeidentifier' => { 529 => [\'VideoShotType','VideoShotTypeIdentifier'] }, - 'videoshottypename' => { 529 => [\'VideoShotType','VideoShotTypeName'] }, - 'videostreamscount' => { 529 => 'videoStreamsCount' }, - 'viewfinder' => { 395 => 0x455 }, - 'viewfinderdisplay' => { 306 => '12.4', 307 => '6.3' }, - 'viewfinderwarning' => { 306 => '13.4', 316 => '3.5', 317 => '6.2', 321 => '4.4' }, + 'videoshottype' => { 531 => 'VideoShotType' }, + 'videoshottypeidentifier' => { 531 => [\'VideoShotType','VideoShotTypeIdentifier'] }, + 'videoshottypename' => { 531 => [\'VideoShotType','VideoShotTypeName'] }, + 'videostreamscount' => { 531 => 'videoStreamsCount' }, + 'viewfinder' => { 397 => 0x455 }, + 'viewfinderdisplay' => { 307 => '12.4', 308 => '6.3' }, + 'viewfinderwarning' => { 307 => '13.4', 317 => '3.5', 318 => '6.2', 322 => '4.4' }, 'viewfinderwarnings' => { 89 => 0x40a }, 'viewinfoduringexposure' => { 89 => 0x407 }, - 'viewingmode' => { 440 => 0x2f, 457 => 0x18 }, - 'viewingmode2' => { 440 => [0x85,0x285] }, - 'viewmodeshoweffectsofsettings' => { 250 => 0x7d2, 322 => 0x2a9 }, - 'viewpoint' => { 533 => 'viewpoint' }, - 'vignetteamount' => { 515 => 'VignetteAmount', 517 => 'VignetteAmount' }, - 'vignettecoefficient1' => { 290 => 0x24 }, - 'vignettecoefficient2' => { 290 => 0x34 }, - 'vignettecoefficient3' => { 290 => 0x44 }, - 'vignettecontrol' => { 241 => 0x2a, 299 => 0x76a43205 }, - 'vignettecontrolintensity' => { 299 => 0xac6bd5c0 }, - 'vignettecorrectionalreadyapplied' => { 512 => 'VignetteCorrectionAlreadyApplied' }, - 'vignettecorrectionversion' => { 290 => 0x0 }, - 'vignettemidpoint' => { 515 => 'VignetteMidpoint', 517 => 'VignetteMidpoint' }, - 'vignetting' => { 418 => 0x1011, 425 => 0xa052 }, - 'vignettingcorrection' => { 124 => 0x7031, 425 => 0xa053, 452 => 0x2011 }, - 'vignettingcorrparams' => { 124 => 0x7032, 483 => 0x64a, 484 => [0x34a,0x350,0x35c,0x368] }, - 'vignettingsetting' => { 425 => 0xa054 }, - 'virtualfocallength' => { 530 => 'VirtualFocalLength' }, - 'virtualhorizonstyle' => { 322 => 0x167, 323 => 0x167, 324 => 0x17f }, - 'virtualimagexcenter' => { 530 => 'VirtualImageXCenter' }, - 'virtualimageycenter' => { 530 => 'VirtualImageYCenter' }, - 'visualcolor' => { 529 => 'VisualColour' }, - 'visualtechnique' => { 533 => 'visualTechnique' }, - 'voicememo' => { 427 => 0x216 }, - 'volume' => { 534 => 'volume' }, - 'vr_0x66' => { 270 => 0x66 }, + 'viewingmode' => { 442 => 0x2f, 459 => 0x18 }, + 'viewingmode2' => { 442 => [0x85,0x285] }, + 'viewmodeshoweffectsofsettings' => { 251 => 0x7d2, 324 => 0x2a9 }, + 'viewpoint' => { 535 => 'viewpoint' }, + 'vignetteamount' => { 517 => 'VignetteAmount', 519 => 'VignetteAmount' }, + 'vignettecoefficient1' => { 291 => 0x24 }, + 'vignettecoefficient2' => { 291 => 0x34 }, + 'vignettecoefficient3' => { 291 => 0x44 }, + 'vignettecontrol' => { 241 => 0x2a, 300 => 0x76a43205 }, + 'vignettecontrolintensity' => { 300 => 0xac6bd5c0 }, + 'vignettecorrectionalreadyapplied' => { 514 => 'VignetteCorrectionAlreadyApplied' }, + 'vignettecorrectionversion' => { 291 => 0x0 }, + 'vignettemidpoint' => { 517 => 'VignetteMidpoint', 519 => 'VignetteMidpoint' }, + 'vignetting' => { 420 => 0x1011, 427 => 0xa052 }, + 'vignettingcorrection' => { 124 => 0x7031, 427 => 0xa053, 454 => 0x2011 }, + 'vignettingcorrparams' => { 124 => 0x7032, 485 => 0x64a, 486 => [0x34a,0x350,0x35c,0x368] }, + 'vignettingsetting' => { 427 => 0xa054 }, + 'virtualfocallength' => { 532 => 'VirtualFocalLength' }, + 'virtualhorizonstyle' => { 323 => 0x161, 324 => 0x167, 325 => 0x167, 326 => 0x17f }, + 'virtualimagexcenter' => { 532 => 'VirtualImageXCenter' }, + 'virtualimageycenter' => { 532 => 'VirtualImageYCenter' }, + 'visualcolor' => { 531 => 'VisualColour' }, + 'visualtechnique' => { 535 => 'visualTechnique' }, + 'voicememo' => { 429 => 0x216 }, + 'volume' => { 536 => 'volume' }, + 'vr_0x66' => { 271 => 0x66 }, 'vrdoffset' => { 68 => 0xd0 }, - 'vrmode' => { 246 => 0x226, 247 => 0x226, 248 => 0x212, 249 => 0x226, 250 => 0x226, 289 => 0x6 }, - 'vrtype' => { 289 => 0x8 }, - 'waterdepth' => { 124 => 0x9403, 522 => 'WaterDepth' }, + 'vrmode' => { 245 => 0x342, 247 => 0x226, 248 => 0x226, 249 => 0x212, 250 => 0x226, 251 => 0x226, 290 => 0x6 }, + 'vrtype' => { 290 => 0x8 }, + 'waterdepth' => { 124 => 0x9403, 524 => 'WaterDepth' }, 'wb_bluelevel3500k' => { 192 => 0x19a }, 'wb_bluelevel6500k' => { 192 => 0x18a }, 'wb_bluelevelcustom' => { 192 => 0x18e }, @@ -7286,21 +7296,21 @@ my %tagLookup = ( 'wb_bluelevelsshade' => { 192 => 0x176 }, 'wb_bluelevelstungsten' => { 192 => 0xce }, 'wb_gbrglevels' => { 192 => 0xae, 195 => 0x4 }, - 'wb_glevel' => { 330 => 0x11f }, - 'wb_glevel3000k' => { 330 => 0x113 }, - 'wb_glevel3300k' => { 330 => 0x114 }, - 'wb_glevel3600k' => { 330 => 0x115 }, - 'wb_glevel3900k' => { 330 => 0x116 }, - 'wb_glevel4000k' => { 330 => 0x117 }, - 'wb_glevel4300k' => { 330 => 0x118 }, - 'wb_glevel4500k' => { 330 => 0x119 }, - 'wb_glevel4800k' => { 330 => 0x11a }, - 'wb_glevel5300k' => { 330 => 0x11b }, - 'wb_glevel6000k' => { 330 => 0x11c }, - 'wb_glevel6600k' => { 330 => 0x11d }, - 'wb_glevel7500k' => { 330 => 0x11e }, - 'wb_grbglevels' => { 209 => 0x0, 459 => 0x7303 }, - 'wb_grbglevelsauto' => { 85 => 0x2, 459 => 0x7302 }, + 'wb_glevel' => { 332 => 0x11f }, + 'wb_glevel3000k' => { 332 => 0x113 }, + 'wb_glevel3300k' => { 332 => 0x114 }, + 'wb_glevel3600k' => { 332 => 0x115 }, + 'wb_glevel3900k' => { 332 => 0x116 }, + 'wb_glevel4000k' => { 332 => 0x117 }, + 'wb_glevel4300k' => { 332 => 0x118 }, + 'wb_glevel4500k' => { 332 => 0x119 }, + 'wb_glevel4800k' => { 332 => 0x11a }, + 'wb_glevel5300k' => { 332 => 0x11b }, + 'wb_glevel6000k' => { 332 => 0x11c }, + 'wb_glevel6600k' => { 332 => 0x11d }, + 'wb_glevel7500k' => { 332 => 0x11e }, + 'wb_grbglevels' => { 209 => 0x0, 461 => 0x7303 }, + 'wb_grbglevelsauto' => { 85 => 0x2, 461 => 0x7302 }, 'wb_grbglevelscloudy' => { 85 => 0x12 }, 'wb_grbglevelscustom1' => { 85 => 0x42 }, 'wb_grbglevelscustom2' => { 85 => 0x4a }, @@ -7311,52 +7321,52 @@ my %tagLookup = ( 'wb_grbglevelstungsten' => { 85 => 0x1a }, 'wb_grbglevelsunderwater' => { 85 => 0x3a }, 'wb_rbgglevels' => { 206 => 0x0 }, - 'wb_rblevels' => { 210 => 0x270, 241 => 0xc, 330 => 0x100 }, - 'wb_rblevels1' => { 356 => 0x2 }, - 'wb_rblevels2' => { 356 => 0x5 }, - 'wb_rblevels3' => { 356 => 0x8 }, - 'wb_rblevels3000k' => { 330 => 0x102 }, - 'wb_rblevels3300k' => { 330 => 0x103 }, + 'wb_rblevels' => { 210 => 0x270, 241 => 0xc, 332 => 0x100 }, + 'wb_rblevels1' => { 358 => 0x2 }, + 'wb_rblevels2' => { 358 => 0x5 }, + 'wb_rblevels3' => { 358 => 0x8 }, + 'wb_rblevels3000k' => { 332 => 0x102 }, + 'wb_rblevels3300k' => { 332 => 0x103 }, 'wb_rblevels3500k' => { 192 => 0x430 }, - 'wb_rblevels3600k' => { 330 => 0x104 }, - 'wb_rblevels3900k' => { 330 => 0x105 }, - 'wb_rblevels4' => { 356 => 0xb }, - 'wb_rblevels4000k' => { 330 => 0x106 }, - 'wb_rblevels4300k' => { 330 => 0x107 }, - 'wb_rblevels4500k' => { 330 => 0x108 }, - 'wb_rblevels4800k' => { 330 => 0x109 }, - 'wb_rblevels5' => { 356 => 0xe }, - 'wb_rblevels5300k' => { 330 => 0x10a }, - 'wb_rblevels6' => { 356 => 0x11 }, - 'wb_rblevels6000k' => { 330 => 0x10b }, + 'wb_rblevels3600k' => { 332 => 0x104 }, + 'wb_rblevels3900k' => { 332 => 0x105 }, + 'wb_rblevels4' => { 358 => 0xb }, + 'wb_rblevels4000k' => { 332 => 0x106 }, + 'wb_rblevels4300k' => { 332 => 0x107 }, + 'wb_rblevels4500k' => { 332 => 0x108 }, + 'wb_rblevels4800k' => { 332 => 0x109 }, + 'wb_rblevels5' => { 358 => 0xe }, + 'wb_rblevels5300k' => { 332 => 0x10a }, + 'wb_rblevels6' => { 358 => 0x11 }, + 'wb_rblevels6000k' => { 332 => 0x10b }, 'wb_rblevels6500k' => { 192 => 0x420 }, - 'wb_rblevels6600k' => { 330 => 0x10c }, - 'wb_rblevels7' => { 356 => 0x14 }, - 'wb_rblevels7500k' => { 330 => 0x10d }, - 'wb_rblevelsauto' => { 210 => 0x272, 334 => 0x110 }, - 'wb_rblevelscloudy' => { 192 => 0x3f0, 194 => 0x10, 210 => 0x296, 334 => 0x121 }, + 'wb_rblevels6600k' => { 332 => 0x10c }, + 'wb_rblevels7' => { 358 => 0x14 }, + 'wb_rblevels7500k' => { 332 => 0x10d }, + 'wb_rblevelsauto' => { 210 => 0x272, 336 => 0x110 }, + 'wb_rblevelscloudy' => { 192 => 0x3f0, 194 => 0x10, 210 => 0x296, 336 => 0x121 }, 'wb_rblevelscoolwhitef' => { 192 => 0x308, 194 => 0x14 }, - 'wb_rblevelscoolwhitefluor' => { 334 => 0x132 }, + 'wb_rblevelscoolwhitefluor' => { 336 => 0x132 }, 'wb_rblevelscustom' => { 192 => 0x424, 194 => 0x1c }, - 'wb_rblevelscwb1' => { 330 => 0x10e }, - 'wb_rblevelscwb2' => { 330 => 0x10f }, - 'wb_rblevelscwb3' => { 330 => 0x110 }, - 'wb_rblevelscwb4' => { 330 => 0x111 }, + 'wb_rblevelscwb1' => { 332 => 0x10e }, + 'wb_rblevelscwb2' => { 332 => 0x10f }, + 'wb_rblevelscwb3' => { 332 => 0x110 }, + 'wb_rblevelscwb4' => { 332 => 0x111 }, 'wb_rblevelsdaylight' => { 192 => [0x3ec,0x528], 194 => 0xc, 210 => 0x274 }, 'wb_rblevelsdaylightf' => { 194 => 0x24 }, - 'wb_rblevelsdaylightfluor' => { 334 => 0x130 }, + 'wb_rblevelsdaylightfluor' => { 336 => 0x130 }, 'wb_rblevelsdaywhitef' => { 194 => 0x28 }, - 'wb_rblevelsdaywhitefluor' => { 334 => 0x131 }, - 'wb_rblevelseveningsunlight' => { 334 => 0x124 }, - 'wb_rblevelsfineweather' => { 334 => 0x122 }, + 'wb_rblevelsdaywhitefluor' => { 336 => 0x131 }, + 'wb_rblevelseveningsunlight' => { 336 => 0x124 }, + 'wb_rblevelsfineweather' => { 336 => 0x122 }, 'wb_rblevelsflash' => { 192 => [0x3f4,0x304], 194 => 0x18, 210 => 0x2a4 }, 'wb_rblevelsfluorescent' => { 210 => 0x290 }, 'wb_rblevelsincandescent' => { 210 => 0x282 }, - 'wb_rblevelsshade' => { 192 => 0x418, 194 => 0x20, 210 => 0x2b2, 334 => 0x120 }, - 'wb_rblevelstungsten' => { 192 => 0x3e8, 194 => 0x8, 334 => 0x123 }, - 'wb_rblevelsused' => { 334 => 0x100 }, + 'wb_rblevelsshade' => { 192 => 0x418, 194 => 0x20, 210 => 0x2b2, 336 => 0x120 }, + 'wb_rblevelstungsten' => { 192 => 0x3e8, 194 => 0x8, 336 => 0x123 }, + 'wb_rblevelsused' => { 336 => 0x100 }, 'wb_rblevelswhitef' => { 194 => 0x2c }, - 'wb_rblevelswhitefluorescent' => { 334 => 0x133 }, + 'wb_rblevelswhitefluorescent' => { 336 => 0x133 }, 'wb_redlevel3500k' => { 192 => 0x198 }, 'wb_redlevel6500k' => { 192 => 0x188 }, 'wb_redlevelcustom' => { 192 => 0x18c }, @@ -7368,76 +7378,76 @@ my %tagLookup = ( 'wb_redlevelsshade' => { 192 => 0x168 }, 'wb_redlevelstungsten' => { 192 => 0xc0 }, 'wb_rgbglevels' => { 208 => 0x0 }, - 'wb_rgblevels' => { 192 => [0x546,0x96], 346 => 0xd, 347 => 0x413, 352 => 0x3036, 395 => 0x107, 461 => 0x117c, 462 => 0x1180, 463 => 0x115c, 464 => 0x11d8, 465 => 0x11b4, 466 => 0x106c, 467 => 0x264, 468 => 0x264, 469 => 0x252 }, - 'wb_rgblevels1' => { 357 => 0x2 }, - 'wb_rgblevels2' => { 357 => 0x6 }, - 'wb_rgblevels2500k' => { 459 => 0x782d }, - 'wb_rgblevels3' => { 357 => 0xa }, - 'wb_rgblevels3200k' => { 459 => 0x782c }, - 'wb_rgblevels4' => { 357 => 0xe }, - 'wb_rgblevels4500k' => { 459 => [0x7484,0x7824] }, - 'wb_rgblevels5' => { 357 => 0x12 }, - 'wb_rgblevels6' => { 357 => 0x16 }, - 'wb_rgblevels6000k' => { 459 => 0x782b }, - 'wb_rgblevels7' => { 357 => 0x1a }, - 'wb_rgblevels8500k' => { 459 => 0x782a }, - 'wb_rgblevelsauto' => { 429 => 0x0 }, - 'wb_rgblevelscloudy' => { 459 => [0x7481,0x7821] }, - 'wb_rgblevelscustom1' => { 429 => 0x15 }, - 'wb_rgblevelscustom2' => { 429 => 0x18 }, - 'wb_rgblevelscustom3' => { 429 => 0x1b }, - 'wb_rgblevelsdaylight' => { 429 => 0x3, 459 => [0x7480,0x7820] }, - 'wb_rgblevelsflash' => { 429 => 0x12, 459 => [0x7483,0x7823] }, - 'wb_rgblevelsfluorescent' => { 429 => 0xf, 459 => [0x7486,0x7826] }, - 'wb_rgblevelsfluorescentm1' => { 459 => 0x7829 }, - 'wb_rgblevelsfluorescentp1' => { 459 => 0x7827 }, - 'wb_rgblevelsfluorescentp2' => { 459 => 0x7828 }, - 'wb_rgblevelsincandescent' => { 429 => 0xc }, - 'wb_rgblevelsovercast' => { 429 => 0x9 }, - 'wb_rgblevelsshade' => { 429 => 0x6, 459 => 0x7825 }, - 'wb_rgblevelstungsten' => { 459 => [0x7482,0x7822] }, - 'wb_rgblevelsunknown0' => { 430 => 0x0 }, - 'wb_rgblevelsunknown1' => { 430 => 0x3 }, - 'wb_rgblevelsunknown2' => { 430 => 0x6 }, - 'wb_rgblevelsunknown3' => { 430 => 0x9 }, - 'wb_rgblevelsunknown4' => { 430 => 0xc }, - 'wb_rgblevelsunknown5' => { 430 => 0xf }, - 'wb_rgblevelsunknown6' => { 430 => 0x12 }, - 'wb_rgblevelsunknown7' => { 430 => 0x15 }, - 'wb_rgblevelsunknown8' => { 430 => 0x18 }, - 'wb_rgblevelsunknown9' => { 430 => 0x1b }, + 'wb_rgblevels' => { 192 => [0x546,0x96], 348 => 0xd, 349 => 0x413, 354 => 0x3036, 397 => 0x107, 463 => 0x117c, 464 => 0x1180, 465 => 0x115c, 466 => 0x11d8, 467 => 0x11b4, 468 => 0x106c, 469 => 0x264, 470 => 0x264, 471 => 0x252 }, + 'wb_rgblevels1' => { 359 => 0x2 }, + 'wb_rgblevels2' => { 359 => 0x6 }, + 'wb_rgblevels2500k' => { 461 => 0x782d }, + 'wb_rgblevels3' => { 359 => 0xa }, + 'wb_rgblevels3200k' => { 461 => 0x782c }, + 'wb_rgblevels4' => { 359 => 0xe }, + 'wb_rgblevels4500k' => { 461 => [0x7484,0x7824] }, + 'wb_rgblevels5' => { 359 => 0x12 }, + 'wb_rgblevels6' => { 359 => 0x16 }, + 'wb_rgblevels6000k' => { 461 => 0x782b }, + 'wb_rgblevels7' => { 359 => 0x1a }, + 'wb_rgblevels8500k' => { 461 => 0x782a }, + 'wb_rgblevelsauto' => { 431 => 0x0 }, + 'wb_rgblevelscloudy' => { 461 => [0x7481,0x7821] }, + 'wb_rgblevelscustom1' => { 431 => 0x15 }, + 'wb_rgblevelscustom2' => { 431 => 0x18 }, + 'wb_rgblevelscustom3' => { 431 => 0x1b }, + 'wb_rgblevelsdaylight' => { 431 => 0x3, 461 => [0x7480,0x7820] }, + 'wb_rgblevelsflash' => { 431 => 0x12, 461 => [0x7483,0x7823] }, + 'wb_rgblevelsfluorescent' => { 431 => 0xf, 461 => [0x7486,0x7826] }, + 'wb_rgblevelsfluorescentm1' => { 461 => 0x7829 }, + 'wb_rgblevelsfluorescentp1' => { 461 => 0x7827 }, + 'wb_rgblevelsfluorescentp2' => { 461 => 0x7828 }, + 'wb_rgblevelsincandescent' => { 431 => 0xc }, + 'wb_rgblevelsovercast' => { 431 => 0x9 }, + 'wb_rgblevelsshade' => { 431 => 0x6, 461 => 0x7825 }, + 'wb_rgblevelstungsten' => { 461 => [0x7482,0x7822] }, + 'wb_rgblevelsunknown0' => { 432 => 0x0 }, + 'wb_rgblevelsunknown1' => { 432 => 0x3 }, + 'wb_rgblevelsunknown2' => { 432 => 0x6 }, + 'wb_rgblevelsunknown3' => { 432 => 0x9 }, + 'wb_rgblevelsunknown4' => { 432 => 0xc }, + 'wb_rgblevelsunknown5' => { 432 => 0xf }, + 'wb_rgblevelsunknown6' => { 432 => 0x12 }, + 'wb_rgblevelsunknown7' => { 432 => 0x15 }, + 'wb_rgblevelsunknown8' => { 432 => 0x18 }, + 'wb_rgblevelsunknown9' => { 432 => 0x1b }, 'wb_rgbmuldaylight' => { 143 => 0x852 }, 'wb_rgbmulflash' => { 143 => 0x855 }, 'wb_rgbmulfluorescent' => { 143 => 0x854 }, 'wb_rgbmultungsten' => { 143 => 0x853 }, 'wb_rggbblacklevels' => { 37 => 0x25 }, - 'wb_rggblevels' => { 124 => 0x7313, 195 => 0x4, 207 => 0x0, 211 => 0x13e8, 212 => 0x38, 459 => 0x7313 }, + 'wb_rggblevels' => { 124 => 0x7313, 195 => 0x4, 207 => 0x0, 211 => 0x13e8, 212 => 0x38, 461 => 0x7313 }, 'wb_rggblevelsasshot' => { 40 => 0x0, 41 => 0x0, 42 => 0x19, 43 => 0x55, 44 => 0x69, 45 => 0x69, 46 => 0x22, 47 => 0x3f, 50 => 0x3f, 51 => 0x3f, 52 => 0x3f, 53 => 0x47 }, - 'wb_rggblevelsauto' => { 37 => 0x1, 40 => 0x5, 41 => 0x8, 42 => 0x1e, 43 => 0x5a, 44 => 0x6e, 46 => 0x18, 47 => 0x44, 50 => 0x44, 51 => 0x44, 52 => 0x44, 53 => 0x4c, 211 => 0x1478, 212 => 0x114, 425 => 0xa022, 459 => 0x7312 }, - 'wb_rggblevelsblack' => { 425 => 0xa028 }, - 'wb_rggblevelscloudy' => { 37 => 0xd, 40 => 0x1e, 41 => 0x30, 42 => 0x2d, 43 => 0xa0, 44 => 0xd7, 45 => 0x78, 46 => 0x31, 47 => 0x58, 50 => 0x71, 51 => 0x8a, 52 => 0x8f, 53 => 0x92, 211 => 0x1408, 212 => 0x60, 386 => 0x20f, 394 => 0x14 }, + 'wb_rggblevelsauto' => { 37 => 0x1, 40 => 0x5, 41 => 0x8, 42 => 0x1e, 43 => 0x5a, 44 => 0x6e, 46 => 0x18, 47 => 0x44, 50 => 0x44, 51 => 0x44, 52 => 0x44, 53 => 0x4c, 211 => 0x1478, 212 => 0x114, 427 => 0xa022, 461 => 0x7312 }, + 'wb_rggblevelsblack' => { 427 => 0xa028 }, + 'wb_rggblevelscloudy' => { 37 => 0xd, 40 => 0x1e, 41 => 0x30, 42 => 0x2d, 43 => 0xa0, 44 => 0xd7, 45 => 0x78, 46 => 0x31, 47 => 0x58, 50 => 0x71, 51 => 0x8a, 52 => 0x8f, 53 => 0x92, 211 => 0x1408, 212 => 0x60, 388 => 0x20f, 396 => 0x14 }, 'wb_rggblevelscustom' => { 37 => 0x1d, 47 => 0x80, 211 => 0x1468, 212 => 0x100 }, 'wb_rggblevelscustom1' => { 42 => 0x41 }, 'wb_rggblevelscustom2' => { 42 => 0x46 }, - 'wb_rggblevelsdaylight' => { 37 => 0x5, 40 => 0x14, 41 => 0x20, 42 => 0x23, 43 => 0x96, 44 => 0xcd, 45 => 0x6e, 46 => 0x27, 47 => 0x4e, 50 => 0x67, 51 => 0x80, 52 => 0x85, 53 => 0x88, 211 => 0x13f8, 212 => 0x4c, 386 => 0x20d, 394 => 0x2 }, - 'wb_rggblevelsflash' => { 37 => 0x19, 40 => 0x32, 41 => 0x50, 42 => 0x3c, 43 => 0xb4, 44 => 0xeb, 45 => 0x87, 46 => 0x45, 47 => 0x6c, 50 => 0x85, 51 => 0x9e, 52 => 0xa3, 53 => 0xa6, 211 => 0x1448, 386 => 0x214, 394 => 0x41 }, + 'wb_rggblevelsdaylight' => { 37 => 0x5, 40 => 0x14, 41 => 0x20, 42 => 0x23, 43 => 0x96, 44 => 0xcd, 45 => 0x6e, 46 => 0x27, 47 => 0x4e, 50 => 0x67, 51 => 0x80, 52 => 0x85, 53 => 0x88, 211 => 0x13f8, 212 => 0x4c, 388 => 0x20d, 396 => 0x2 }, + 'wb_rggblevelsflash' => { 37 => 0x19, 40 => 0x32, 41 => 0x50, 42 => 0x3c, 43 => 0xb4, 44 => 0xeb, 45 => 0x87, 46 => 0x45, 47 => 0x6c, 50 => 0x85, 51 => 0x9e, 52 => 0xa3, 53 => 0xa6, 211 => 0x1448, 388 => 0x214, 396 => 0x41 }, 'wb_rggblevelsfluorescent' => { 37 => 0x15, 40 => 0x28, 41 => 0x40, 42 => 0x37, 43 => 0xaa, 44 => 0xe1, 45 => 0x82, 46 => 0x3b, 47 => 0x62, 50 => 0x7b, 51 => 0x94, 52 => 0x99, 53 => 0x9c }, - 'wb_rggblevelsfluorescentd' => { 212 => 0xc4, 386 => 0x211, 394 => 0x26 }, - 'wb_rggblevelsfluorescentl' => { 394 => 0x4a }, - 'wb_rggblevelsfluorescentn' => { 212 => 0xb0, 386 => 0x212, 394 => 0x2f }, - 'wb_rggblevelsfluorescentw' => { 211 => 0x1438, 212 => 0x9c, 386 => 0x213, 394 => 0x38 }, + 'wb_rggblevelsfluorescentd' => { 212 => 0xc4, 388 => 0x211, 396 => 0x26 }, + 'wb_rggblevelsfluorescentl' => { 396 => 0x4a }, + 'wb_rggblevelsfluorescentn' => { 212 => 0xb0, 388 => 0x212, 396 => 0x2f }, + 'wb_rggblevelsfluorescentw' => { 211 => 0x1438, 212 => 0x9c, 388 => 0x213, 396 => 0x38 }, 'wb_rggblevelshtmercury' => { 212 => 0xd8 }, - 'wb_rggblevelsilluminator1' => { 425 => 0xa023 }, - 'wb_rggblevelsilluminator2' => { 425 => 0xa024 }, + 'wb_rggblevelsilluminator1' => { 427 => 0xa023 }, + 'wb_rggblevelsilluminator2' => { 427 => 0xa024 }, 'wb_rggblevelskelvin' => { 37 => 0x21, 40 => 0x2d, 41 => 0x48, 43 => 0xaf, 44 => 0xe6, 46 => 0x40, 47 => 0x67, 50 => 0x80, 51 => 0x99, 52 => 0x9e, 53 => 0xa1 }, 'wb_rggblevelsmeasured' => { 40 => 0xa, 41 => 0x10, 43 => 0x5f, 44 => 0x73, 47 => 0x49, 50 => 0x49, 51 => 0x49, 52 => 0x49, 53 => 0x51 }, 'wb_rggblevelspc1' => { 46 => 0x90, 47 => 0x71 }, 'wb_rggblevelspc2' => { 46 => 0x95, 47 => 0x76 }, 'wb_rggblevelspc3' => { 46 => 0x9a, 47 => 0x7b }, - 'wb_rggblevelsshade' => { 37 => 0x9, 40 => 0x19, 41 => 0x28, 42 => 0x28, 43 => 0x9b, 44 => 0xd2, 45 => 0x73, 46 => 0x2c, 47 => 0x53, 50 => 0x6c, 51 => 0x85, 52 => 0x8a, 53 => 0x8d, 212 => 0x74, 386 => 0x20e, 394 => 0xb }, - 'wb_rggblevelstungsten' => { 37 => 0x11, 40 => 0x23, 41 => 0x38, 42 => 0x32, 43 => 0xa5, 44 => 0xdc, 45 => 0x7d, 46 => 0x36, 47 => 0x5d, 50 => 0x76, 51 => 0x8f, 52 => 0x94, 53 => 0x97, 211 => 0x1428, 212 => 0x88, 386 => 0x210, 394 => 0x1d }, - 'wb_rggblevelsuncorrected' => { 425 => 0xa021 }, - 'wb_rggblevelsunknown' => { 40 => 0xf, 41 => 0x18, 43 => 0x64, 44 => 0x78, 46 => 0x1d, 50 => 0x4e, 51 => 0x4e, 52 => 0x4e, 53 => 0x56, 394 => 0x53 }, + 'wb_rggblevelsshade' => { 37 => 0x9, 40 => 0x19, 41 => 0x28, 42 => 0x28, 43 => 0x9b, 44 => 0xd2, 45 => 0x73, 46 => 0x2c, 47 => 0x53, 50 => 0x6c, 51 => 0x85, 52 => 0x8a, 53 => 0x8d, 212 => 0x74, 388 => 0x20e, 396 => 0xb }, + 'wb_rggblevelstungsten' => { 37 => 0x11, 40 => 0x23, 41 => 0x38, 42 => 0x32, 43 => 0xa5, 44 => 0xdc, 45 => 0x7d, 46 => 0x36, 47 => 0x5d, 50 => 0x76, 51 => 0x8f, 52 => 0x94, 53 => 0x97, 211 => 0x1428, 212 => 0x88, 388 => 0x210, 396 => 0x1d }, + 'wb_rggblevelsuncorrected' => { 427 => 0xa021 }, + 'wb_rggblevelsunknown' => { 40 => 0xf, 41 => 0x18, 43 => 0x64, 44 => 0x78, 46 => 0x1d, 50 => 0x4e, 51 => 0x4e, 52 => 0x4e, 53 => 0x56, 396 => 0x53 }, 'wb_rggblevelsunknown10' => { 40 => 0x5f, 41 => 0x98, 43 => 0x91, 44 => 0xa5, 45 => 0xb4, 46 => 0x72, 50 => 0x9e, 51 => 0x7b, 52 => 0x7b, 53 => 0x83 }, 'wb_rggblevelsunknown11' => { 40 => 0x64, 41 => 0xa0, 43 => 0xb9, 44 => [0xaa,0xaf], 45 => 0xb9, 46 => 0x77, 50 => 0xa3, 51 => 0xa3, 52 => 0x80, 53 => 0xab }, 'wb_rggblevelsunknown12' => { 40 => 0x69, 41 => 0xa8, 43 => 0xbe, 44 => 0xb4, 45 => 0xbe, 46 => 0x7c, 50 => 0xa8, 51 => 0xa8, 52 => 0xa8, 53 => 0xb0 }, @@ -7470,138 +7480,138 @@ my %tagLookup = ( 'wb_rggblevelsunknown7' => { 40 => 0x50, 41 => 0x80, 43 => 0x82, 44 => 0x96, 45 => 0xa5, 46 => 0x63, 50 => 0x8f, 51 => 0x6c, 52 => 0x6c, 53 => 0x74 }, 'wb_rggblevelsunknown8' => { 40 => 0x55, 41 => 0x88, 43 => 0x87, 44 => 0x9b, 45 => 0xaa, 46 => 0x68, 50 => 0x94, 51 => 0x71, 52 => 0x71, 53 => 0x79 }, 'wb_rggblevelsunknown9' => { 40 => 0x5a, 41 => 0x90, 43 => 0x8c, 44 => 0xa0, 45 => 0xaf, 46 => 0x6d, 50 => 0x99, 51 => 0x76, 52 => 0x76, 53 => 0x7e }, - 'wb_rggblevelsuserselected' => { 394 => 0x5c }, + 'wb_rggblevelsuserselected' => { 396 => 0x5c }, 'wbadjblueamber' => { 108 => 0x20106 }, - 'wbadjbluebalance' => { 305 => 0x8 }, + 'wbadjbluebalance' => { 306 => 0x8 }, 'wbadjcolortemp' => { 108 => 0x20102, 113 => 0x1a }, - 'wbadjlighting' => { 305 => 0x14 }, + 'wbadjlighting' => { 306 => 0x14 }, 'wbadjmagentagreen' => { 108 => 0x20105 }, - 'wbadjmode' => { 305 => 0x10 }, - 'wbadjredbalance' => { 305 => 0x0 }, + 'wbadjmode' => { 306 => 0x10 }, + 'wbadjredbalance' => { 306 => 0x0 }, 'wbadjrggblevels' => { 108 => 0x20125, 113 => 0x6 }, - 'wbadjtemperature' => { 305 => 0x18 }, - 'wbadjtint' => { 305 => 0x25 }, - 'wbbluelevel' => { 345 => 0x324, 350 => 0x8006, 355 => 0x26 }, - 'wbbracketingsteps' => { 203 => 0x10, 204 => 0x10, 279 => 0x174d }, + 'wbadjtemperature' => { 306 => 0x18 }, + 'wbadjtint' => { 306 => 0x25 }, + 'wbbluelevel' => { 347 => 0x324, 352 => 0x8006, 357 => 0x26 }, + 'wbbracketingsteps' => { 203 => 0x10, 204 => 0x10, 280 => 0x174d }, 'wbbracketmode' => { 60 => 0x9 }, - 'wbbracketshotnumber' => { 192 => 0x2b, 418 => 0x101a }, + 'wbbracketshotnumber' => { 192 => 0x2b, 420 => 0x101a }, 'wbbracketvalueab' => { 60 => 0xc }, 'wbbracketvaluegm' => { 60 => 0xd }, - 'wbbutton' => { 247 => 0x806, 250 => 0x80a }, - 'wbbuttonplaybackmode' => { 322 => 0x1c5 }, + 'wbbutton' => { 248 => 0x806, 251 => 0x80a }, + 'wbbuttonplaybackmode' => { 324 => 0x1c5 }, 'wbfinetuneactive' => { 113 => 0x24 }, 'wbfinetunesaturation' => { 113 => 0x28 }, 'wbfinetunetone' => { 113 => 0x2c }, - 'wbgreenlevel' => { 345 => 0x323, 350 => 0x8005, 355 => 0x25 }, + 'wbgreenlevel' => { 347 => 0x323, 352 => 0x8005, 357 => 0x25 }, 'wbmediaimagesizesetting' => { 89 => 0x708 }, - 'wbmode' => { 194 => 0x4, 331 => 0x1015 }, - 'wbredlevel' => { 345 => 0x322, 350 => 0x8004, 355 => 0x24 }, + 'wbmode' => { 194 => 0x4, 333 => 0x1015 }, + 'wbredlevel' => { 347 => 0x322, 352 => 0x8004, 357 => 0x24 }, 'wbscale' => { 195 => 0x0 }, - 'wbshiftab' => { 78 => 0xc, 350 => 0x46, 367 => 0x10 }, - 'wbshiftab_gm' => { 452 => 0x2014 }, - 'wbshiftab_gm_precise' => { 452 => 0x2026 }, - 'wbshiftcreativecontrol' => { 350 => 0x92 }, - 'wbshiftgm' => { 78 => 0xd, 350 => 0x47, 367 => 0x11 }, - 'wbshiftintelligentauto' => { 350 => 0x8b }, - 'wbtype1' => { 356 => 0x1, 357 => 0x1 }, - 'wbtype2' => { 356 => 0x4, 357 => 0x5 }, - 'wbtype3' => { 356 => 0x7, 357 => 0x9 }, - 'wbtype4' => { 356 => 0xa, 357 => 0xd }, - 'wbtype5' => { 356 => 0xd, 357 => 0x11 }, - 'wbtype6' => { 356 => 0x10, 357 => 0x15 }, - 'wbtype7' => { 356 => 0x13, 357 => 0x19 }, - 'webstatement' => { 548 => 'WebStatement' }, - 'weightedflatsubject' => { 507 => 'weightedFlatSubject' }, - 'what' => { 515 => 'What', 517 => 'What' }, - 'whitebalance' => { 7 => 0x6f, 8 => [0x44,0x4a], 9 => 0xbc, 10 => 0x36, 11 => 0x5e, 12 => 0x36, 13 => 0x78, 14 => 0x6f, 15 => 0x6f, 16 => 0x73, 17 => 0x6f, 18 => 0x78, 19 => 0x54, 20 => 0x6f, 21 => 0xbc, 22 => 0x7b, 24 => 0xbc, 25 => 0xc2, 27 => 0x131, 28 => 0x77, 78 => 0x8, 81 => 0x7, 117 => 0x7, 118 => [0x19,0x2012], 124 => [0xa403,0xfe4e], 132 => 0x1002, 143 => 0x3fc, 144 => 0xfa0d, 145 => 0x40, 156 => 0x1a, 186 => 0x3, 187 => 0xe, 188 => 0x4, 189 => 0xb, 191 => 0x115, 241 => 0x5, 288 => 0x7, 345 => 0x304, 350 => 0x3, 352 => 0x3033, 386 => 0x19, 393 => 0x7, 417 => 0x26, 418 => 0x1003, 428 => [0x88,0x3c,0x7,0x58], 438 => 0xf, 439 => 0xe, 452 => [0x115,0xb054], 515 => 'WhiteBalance', 517 => 'WhiteBalance', 521 => 'WhiteBalance' }, + 'wbshiftab' => { 78 => 0xc, 352 => 0x46, 369 => 0x10 }, + 'wbshiftab_gm' => { 454 => 0x2014 }, + 'wbshiftab_gm_precise' => { 454 => 0x2026 }, + 'wbshiftcreativecontrol' => { 352 => 0x92 }, + 'wbshiftgm' => { 78 => 0xd, 352 => 0x47, 369 => 0x11 }, + 'wbshiftintelligentauto' => { 352 => 0x8b }, + 'wbtype1' => { 358 => 0x1, 359 => 0x1 }, + 'wbtype2' => { 358 => 0x4, 359 => 0x5 }, + 'wbtype3' => { 358 => 0x7, 359 => 0x9 }, + 'wbtype4' => { 358 => 0xa, 359 => 0xd }, + 'wbtype5' => { 358 => 0xd, 359 => 0x11 }, + 'wbtype6' => { 358 => 0x10, 359 => 0x15 }, + 'wbtype7' => { 358 => 0x13, 359 => 0x19 }, + 'webstatement' => { 550 => 'WebStatement' }, + 'weightedflatsubject' => { 509 => 'weightedFlatSubject' }, + 'what' => { 517 => 'What', 519 => 'What' }, + 'whitebalance' => { 7 => 0x6f, 8 => [0x44,0x4a], 9 => 0xbc, 10 => 0x36, 11 => 0x5e, 12 => 0x36, 13 => 0x78, 14 => 0x6f, 15 => 0x6f, 16 => 0x73, 17 => 0x6f, 18 => 0x78, 19 => 0x54, 20 => 0x6f, 21 => 0xbc, 22 => 0x7b, 24 => 0xbc, 25 => 0xc2, 27 => 0x131, 28 => 0x77, 78 => 0x8, 81 => 0x7, 117 => 0x7, 118 => [0x19,0x2012], 124 => [0xa403,0xfe4e], 132 => 0x1002, 143 => 0x3fc, 144 => 0xfa0d, 145 => 0x40, 156 => 0x1a, 186 => 0x3, 187 => 0xe, 188 => 0x4, 189 => 0xb, 191 => 0x115, 241 => 0x5, 289 => 0x7, 347 => 0x304, 352 => 0x3, 354 => 0x3033, 388 => 0x19, 395 => 0x7, 419 => 0x26, 420 => 0x1003, 430 => [0x88,0x3c,0x7,0x58], 440 => 0xf, 441 => 0xe, 454 => [0x115,0xb054], 517 => 'WhiteBalance', 519 => 'WhiteBalance', 523 => 'WhiteBalance' }, 'whitebalance0' => { 181 => 'WhiteBalance0' }, 'whitebalance1' => { 181 => 'WhiteBalance1' }, - 'whitebalance2' => { 181 => 'WhiteBalance2', 326 => 0x500 }, - 'whitebalanceadj' => { 108 => 0x20101, 113 => 0x18, 299 => 0x76a43204 }, - 'whitebalanceautoadjustment' => { 363 => 0x0 }, - 'whitebalancebias' => { 118 => 0x2011, 331 => 0x304, 350 => 0x23 }, + 'whitebalance2' => { 181 => 'WhiteBalance2', 328 => 0x500 }, + 'whitebalanceadj' => { 108 => 0x20101, 113 => 0x18, 300 => 0x76a43204 }, + 'whitebalanceautoadjustment' => { 365 => 0x0 }, + 'whitebalancebias' => { 118 => 0x2011, 333 => 0x304, 352 => 0x23 }, 'whitebalanceblue' => { 78 => 0x7 }, - 'whitebalancebracket' => { 326 => 0x502, 331 => 0x303 }, - 'whitebalancebracketing' => { 189 => 0x22, 192 => 0x2c, 449 => 0x2c }, - 'whitebalancebuttonplaybackmode' => { 323 => 0x1c5, 324 => 0x1dd }, - 'whitebalancecomp' => { 334 => 0x1001 }, + 'whitebalancebracket' => { 328 => 0x502, 333 => 0x303 }, + 'whitebalancebracketing' => { 189 => 0x22, 192 => 0x2c, 451 => 0x2c }, + 'whitebalancebuttonplaybackmode' => { 325 => 0x1c5, 326 => 0x1dd }, + 'whitebalancecomp' => { 336 => 0x1001 }, 'whitebalancedetected' => { 143 => 0x3fb }, - 'whitebalancefinetune' => { 132 => 0x100a, 189 => 0x38, 191 => 0x112, 241 => [0xb,0x3f], 418 => 0x1004, 438 => 0x6, 439 => 0x5, 452 => 0x112 }, - 'whitebalancemode' => { 143 => 0x3fa, 386 => 0x1a }, + 'whitebalancefinetune' => { 132 => 0x100a, 189 => 0x38, 191 => 0x112, 241 => [0xb,0x3f], 420 => 0x1004, 440 => 0x6, 441 => 0x5, 454 => 0x112 }, + 'whitebalancemode' => { 143 => 0x3fa, 388 => 0x1a }, 'whitebalancered' => { 78 => 0x6 }, - 'whitebalanceset' => { 366 => 0xa }, - 'whitebalancesetting' => { 189 => 0x23, 438 => 0x5, 439 => 0x4, 440 => 0x16, 457 => 0xd }, - 'whitebalancesetup' => { 425 => 0x41 }, - 'whitebalancetemperature' => { 326 => 0x501 }, - 'whiteboard' => { 331 => 0x301 }, - 'whitelevel' => { 124 => 0xc61d, 386 => 0x7e, 459 => 0x787f }, - 'whitepoint' => { 124 => 0x13e, 349 => 0x35d, 386 => 0x201, 540 => 'WhitePoint' }, - 'whites2012' => { 515 => 'Whites2012', 517 => 'Whites2012' }, - 'whitesadj' => { 489 => 0x9017 }, - 'wideadapter' => { 418 => 0x1017 }, + 'whitebalanceset' => { 368 => 0xa }, + 'whitebalancesetting' => { 189 => 0x23, 440 => 0x5, 441 => 0x4, 442 => 0x16, 459 => 0xd }, + 'whitebalancesetup' => { 427 => 0x41 }, + 'whitebalancetemperature' => { 328 => 0x501 }, + 'whiteboard' => { 333 => 0x301 }, + 'whitelevel' => { 124 => 0xc61d, 388 => 0x7e, 461 => 0x787f }, + 'whitepoint' => { 124 => 0x13e, 351 => 0x35d, 388 => 0x201, 542 => 'WhitePoint' }, + 'whites2012' => { 517 => 'Whites2012', 519 => 'Whites2012' }, + 'whitesadj' => { 491 => 0x9017 }, + 'wideadapter' => { 420 => 0x1017 }, 'widefocuszone' => { 186 => 0x2f }, - 'widerange' => { 427 => 0x20f }, + 'widerange' => { 429 => 0x20f }, 'windmode' => { 143 => 0x3f4 }, - 'windnoisereduction' => { 246 => 0x352, 247 => 0x352, 248 => 0x2d6, 249 => 0x2fe, 250 => 0x2fe }, - 'windowlocation' => { 411 => 'WLOC' }, - 'windowsatom' => { 516 => 'windowsAtom' }, - 'windowsatomextension' => { 516 => [\'windowsAtom','windowsAtomExtension'] }, - 'windowsatominvocationflags' => { 516 => [\'windowsAtom','windowsAtomInvocationFlags'] }, - 'windowsatomuncprojectpath' => { 516 => [\'windowsAtom','windowsAtomUncProjectPath'] }, - 'wordcount' => { 534 => 'wordCount' }, - 'work' => { 403 => "\xa9wrk" }, + 'windnoisereduction' => { 247 => 0x352, 248 => 0x352, 249 => 0x2d6, 250 => 0x2fe, 251 => 0x2fe }, + 'windowlocation' => { 413 => 'WLOC' }, + 'windowsatom' => { 518 => 'windowsAtom' }, + 'windowsatomextension' => { 518 => [\'windowsAtom','windowsAtomExtension'] }, + 'windowsatominvocationflags' => { 518 => [\'windowsAtom','windowsAtomInvocationFlags'] }, + 'windowsatomuncprojectpath' => { 518 => [\'windowsAtom','windowsAtomUncProjectPath'] }, + 'wordcount' => { 536 => 'wordCount' }, + 'work' => { 405 => "\xa9wrk" }, 'workcolorspace' => { 108 => 0x10200, 113 => 0x270 }, - 'workflowtag' => { 529 => 'WorkflowTag' }, - 'workflowtagcvid' => { 529 => [\'WorkflowTag','WorkflowTagCvId'] }, - 'workflowtagcvtermid' => { 529 => [\'WorkflowTag','WorkflowTagCvTermId'] }, - 'workflowtagcvtermname' => { 529 => [\'WorkflowTag','WorkflowTagCvTermName'] }, - 'workflowtagcvtermrefinedabout' => { 529 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] }, - 'worktodo' => { 523 => 'WorkToDo' }, - 'worldtimelocation' => { 350 => 0x3a, 386 => 0x22, 392 => '0.1' }, + 'workflowtag' => { 531 => 'WorkflowTag' }, + 'workflowtagcvid' => { 531 => [\'WorkflowTag','WorkflowTagCvId'] }, + 'workflowtagcvtermid' => { 531 => [\'WorkflowTag','WorkflowTagCvTermId'] }, + 'workflowtagcvtermname' => { 531 => [\'WorkflowTag','WorkflowTagCvTermName'] }, + 'workflowtagcvtermrefinedabout' => { 531 => [\'WorkflowTag','WorkflowTagCvTermRefinedAbout'] }, + 'worktodo' => { 525 => 'WorkToDo' }, + 'worldtimelocation' => { 352 => 0x3a, 388 => 0x22, 394 => '0.1' }, 'writer' => { 184 => 'WM/Writer' }, 'writer-editor' => { 136 => 0x7a }, - 'x3filllight' => { 428 => 0x12 }, + 'x3filllight' => { 430 => 0x12 }, 'xattrmditemwherefroms' => { 179 => 'com.apple.metadata:kMDItemWhereFroms' }, 'xattrquarantine' => { 179 => 'com.apple.quarantine' }, - 'xiaomiexifinfo' => { 405 => 'xiaomi.exifInfo.videoinfo' }, - 'xiaomihdr10' => { 405 => 'com.xiaomi.hdr10' }, + 'xiaomiexifinfo' => { 407 => 'xiaomi.exifInfo.videoinfo' }, + 'xiaomihdr10' => { 407 => 'com.xiaomi.hdr10' }, 'xiaomimodel' => { 124 => 0x9a00 }, - 'xiaomipreviewvideocover' => { 405 => 'com.xiaomi.preview_video_cover' }, + 'xiaomipreviewvideocover' => { 407 => 'com.xiaomi.preview_video_cover' }, 'xiaomisettings' => { 124 => 0x9999 }, 'xilinxversion' => { 143 => 0x414 }, 'xml' => { 141 => 'xml ' }, 'xmp' => { 111 => 0xffff00f6, 125 => 'XMP' }, - 'xmptoolkit' => { 541 => 'xmptk' }, + 'xmptoolkit' => { 543 => 'xmptk' }, 'xpauthor' => { 124 => 0x9c9d }, 'xpcomment' => { 124 => 0x9c9c }, 'xpkeywords' => { 124 => 0x9c9e }, 'xposition' => { 124 => 0x11e }, 'xpsubject' => { 124 => 0x9c9f }, 'xptitle' => { 124 => 0x9c9b }, - 'xresolution' => { 124 => 0x11a, 139 => 0x3, 401 => 0x0, 540 => 'XResolution' }, + 'xresolution' => { 124 => 0x11a, 139 => 0x3, 403 => 0x0, 542 => 'XResolution' }, 'xyresolution' => { 128 => 0x3 }, - 'yaw' => { 120 => 0x7, 411 => ['_yaw',"\xa9fyw"] }, - 'yawangle' => { 255 => 0x8, 423 => 0x0 }, - 'ycbcrcoefficients' => { 124 => 0x211, 540 => 'YCbCrCoefficients' }, - 'ycbcrpositioning' => { 124 => 0x213, 540 => 'YCbCrPositioning' }, - 'ycbcrsubsampling' => { 124 => 0x212, 540 => 'YCbCrSubSampling' }, - 'year' => { 403 => 'yrrc', 405 => 'year', 411 => 'yrrc' }, + 'yaw' => { 120 => 0x7, 413 => ['_yaw',"\xa9fyw"] }, + 'yawangle' => { 256 => 0x8, 425 => 0x0 }, + 'ycbcrcoefficients' => { 124 => 0x211, 542 => 'YCbCrCoefficients' }, + 'ycbcrpositioning' => { 124 => 0x213, 542 => 'YCbCrPositioning' }, + 'ycbcrsubsampling' => { 124 => 0x212, 542 => 'YCbCrSubSampling' }, + 'year' => { 405 => 'yrrc', 407 => 'year', 413 => 'yrrc' }, 'yearcreated' => { 145 => 0x10, 154 => 0xc }, 'yellowhsl' => { 108 => 0x20912 }, - 'yield' => { 536 => 'yield' }, + 'yield' => { 538 => 'yield' }, 'yposition' => { 124 => 0x11f }, - 'yresolution' => { 124 => 0x11b, 139 => 0x5, 401 => 0x4, 540 => 'YResolution' }, - 'zebrapatterntonerange' => { 322 => 0x211, 323 => 0x211, 324 => 0x229 }, + 'yresolution' => { 124 => 0x11b, 139 => 0x5, 403 => 0x4, 542 => 'YResolution' }, + 'zebrapatterntonerange' => { 324 => 0x211, 325 => 0x211, 326 => 0x229 }, 'zoneidentifier' => { 125 => 'ZoneIdentifier' }, - 'zonematching' => { 191 => 0x10a, 194 => [0x3a,0x4a], 452 => 0xb024 }, + 'zonematching' => { 191 => 0x10a, 194 => [0x3a,0x4a], 454 => 0xb024 }, 'zonematchingmode' => { 189 => 0x14 }, 'zonematchingon' => { 188 => 0x75 }, - 'zonematchingvalue' => { 438 => 0x1f }, - 'zoomedpreviewlength' => { 331 => 0xf05 }, - 'zoomedpreviewsize' => { 331 => 0xf06 }, - 'zoomedpreviewstart' => { 331 => 0xf04 }, + 'zonematchingvalue' => { 440 => 0x1f }, + 'zoomedpreviewlength' => { 333 => 0xf05 }, + 'zoomedpreviewsize' => { 333 => 0xf06 }, + 'zoomedpreviewstart' => { 333 => 0xf04 }, 'zoomsourcewidth' => { 36 => 0x24 }, - 'zoomstepcount' => { 329 => 0x300, 331 => 0x100d }, + 'zoomstepcount' => { 331 => 0x300, 333 => 0x100d }, 'zoomtargetwidth' => { 36 => 0x25 }, ); @@ -8830,6 +8840,7 @@ my %tagExists = ( 'customsettingsd800' => 1, 'customsettingsd90' => 1, 'customsettingsoffset' => 1, + 'customsettingsz6iii' => 1, 'customsettingsz8' => 1, 'customsettingsz9' => 1, 'customsettingsz9v4' => 1, @@ -11671,6 +11682,9 @@ my %tagExists = ( 'rawvaluerange' => 1, 'rawvaluerangemax' => 1, 'rawvaluerangemin' => 1, + 'rawzoomactive' => 1, + 'rawzoomsize' => 1, + 'rawzoomtopleft' => 1, 'rawzorcreatorversion' => 1, 'rawzorrequiredversion' => 1, 'rdf' => 1, @@ -12161,6 +12175,7 @@ my %tagExists = ( 'shotinfod90' => 1, 'shotinfounknown' => 1, 'shotinfoversion' => 1, + 'shotinfoz6iii' => 1, 'shotinfoz7ii' => 1, 'shotinfoz8' => 1, 'shotinfoz9' => 1, diff --git a/bin/lib/Image/ExifTool/TagNames.pod b/bin/lib/Image/ExifTool/TagNames.pod index ba6d6d3..45238ae 100644 --- a/bin/lib/Image/ExifTool/TagNames.pod +++ b/bin/lib/Image/ExifTool/TagNames.pod @@ -12,7 +12,7 @@ meta information extracted from or written to a file. =head1 TAG TABLES The tables listed below give the names of all tags recognized by ExifTool. -They contain a total of 27985 tags, with 17475 unique tag names. +They contain a total of 28148 tags, with 17486 unique tag names. B, B or B is given in the first column of each table. A B is the computer-readable equivalent of a tag name, and @@ -5878,7 +5878,7 @@ These tags belong to the ExifTool XMP-pmi family 1 group. Publishing Requirements for Industry Standard Metadata 3.0 namespace tags. (see -L) +L) These tags belong to the ExifTool XMP-prism family 1 group. @@ -13487,6 +13487,9 @@ RAF-format information. 0x0110 RawImageCropTopLeft no 0x0111 RawImageCroppedSize no 0x0115 RawImageAspectRatio no + 0x0117 RawZoomActive no + 0x0118 RawZoomTopLeft no + 0x0119 RawZoomSize no 0x0121 RawImageSize no 0x0130 FujiLayout no 0x0131 XTransLayout no @@ -15745,6 +15748,7 @@ DiMAGE X and Xt. ShotInfoD500 Nikon ShotInfoD500 ShotInfoD6 Nikon ShotInfoD6 ShotInfoD610 Nikon ShotInfoD610 + ShotInfoZ6III Nikon ShotInfoZ6III ShotInfoZ7II Nikon ShotInfoZ7II ShotInfoZ8 Nikon ShotInfoZ8 ShotInfoZ9 Nikon ShotInfoZ9 @@ -16571,6 +16575,86 @@ These tags are extracted from encrypted data in images from the D610. 4 FirmwareVersion no 1999 CustomSettingsD610 NikonCustom SettingsD610 +=head3 Nikon ShotInfoZ6III Tags + +These tags are extracted from encrypted data in images from the Z6III. + + Index Tag Name Writable + ----- -------- -------- + 0 ShotInfoVersion no + 4 FirmwareVersion no + 136 OrientationOffset Nikon OrientationInfo + 144 MenuOffset Nikon MenuSettingsZ6III + +=head3 Nikon MenuSettingsZ6III Tags + +These tags are used by the Z6III. + + Index1 Tag Name Writable + ------ -------- -------- + 364 HighFrameRate int8u + 444 MultipleExposureMode int8u + 446 MultiExposureShots int8u + 476 IntervalDurationHours int32u + 480 IntervalDurationMinutes int32u + 484 IntervalDurationSeconds int32u + 492 Intervals int32u + 496 ShotsPerInterval int32u + 500 IntervalExposureSmoothing int8u + 502 IntervalPriority int8u + 536 FocusShiftNumberShots int8u + 540 FocusShiftStepWidth int8u + 544 FocusShiftInterval int8u~ + 548 FocusShiftExposureLock int8u + 648 AutoISO int8u + 650 ISOAutoHiLimit? int16u + 718 DiffractionCompensation int8u + 719 AutoDistortionControl int8u + 720 FlickerReductionShooting int8u + 722 NikonMeteringMode int8u + 724 FlashControlMode int8u + 730 FlashGNDistance? no + 734 FlashOutput? int8u + 742 FlashWirelessOption? int8u + 744 FlashRemoteControl? int8u + 748 FlashMasterControlMode int8u + 750 FlashMasterCompensation? int8s + 754 FlashMasterOutput? int8u + 832 AFAreaMode int8u + 834 VRMode int8u + 838 BracketSet int8u + 840 BracketProgram int8u + 842 BracketIncrement int8u + 852 HDR int8u + 858 SecondarySlotFunction int8u + 864 HDRLevel int8u + 868 Slot2JpgSize? int8u + 878 SubjectDetection int8u + 880 DynamicAFAreaSize int8u + 884 ToneMap? int8u + 888 PortraitImpressionBalance int8u + 902 HighFrequencyFlickerReduction? int8u + 904 PixelShiftShooting int8u + 906 PixelShiftNumberShots int8u + 908 PixelShiftDelay int8u~ + 910 PixelShiftInterval int8u~ + 1002 SubjectDetectionAreaMF int8u + 1004 LinkVRToFocusPoint? int8u + 1046 MovieSlowMotion? int8u + 1050 MovieType int8u + 1162 MovieFrameSize? int8u + 1164 MovieFrameRate? int8u + 1255 CustomSettingsZ6III NikonCustom SettingsZ6III + 2300 Language? int8u + 2302 TimeZone int8u + 2308 MonitorBrightness? int8u + 2444 EmptySlotRelease? int8u + 2450 EnergySavingMode? int8u + 2476 USBPowerDelivery? int8u + 2480 SaveFocusPosition? int8u + 2487 SilentPhotography? int8u + 2496 AirplaneMode? int8u + =head3 Nikon ShotInfoZ7II Tags These tags are extracted from encrypted data in images from the Z7II. @@ -17445,7 +17529,7 @@ Tags found in the encrypted LensData from cameras such as the Z6 and Z7. 20 EffectiveMaxAperture int8u 47 NewLensData undef[17] 48 LensID int16u - 53 LensMountType int8u + 52 LensFirmwareVersion int16u~ 54 MaxAperture int16u 56 FNumber int16u 60 FocalLength int16u @@ -17454,6 +17538,7 @@ Tags found in the encrypted LensData from cameras such as the Z6 and Z7. 86 LensDriveEnd? int8u 88 FocusStepsFromInfinity? int8u 90 LensPositionAbsolute int32s + 95 LensMountType int8u & 0x01 =head3 Nikon LensDataUnknown Tags @@ -19051,6 +19136,108 @@ Custom settings for the D610. 21.2 ShootingInfoMonitorOffTime int8u & 0x1c 35.1 PlaybackMonitorOffTime int8u & 0xe0 +=head3 NikonCustom SettingsZ6III Tags + +Custom settings for the Z6III. + + Index1 Tag Name Writable + ------ -------- -------- + 3 AF-CPrioritySelection int8u + 5 AF-SPrioritySelection int8u + 7 BlockShotAFResponse int8u + 11 AFPointSel int8u + 13 StoreByOrientation int8u + 15 AFActivation int8u + 16 AF-OnOutOfFocusRelease? int8u + 17 LimitAF-AreaModeSelPinpoint? int8u + 19 LimitAF-AreaModeSelWideAF_S? int8u + 20 LimitAF-AreaModeSelWideAF_L? int8u + 21 LimitAFAreaModeSelAuto? int8u + 22 FocusPointWrap? int8u + 23 ManualFocusPointIllumination? int8u + 24 DynamicAreaAFAssist? int8u + 26 AF-AssistIlluminator int8u + 27 ManualFocusRingInAFMode int8u + 29 ExposureControlStepSize int8u + 31 EasyExposureCompensation int8u + 33 CenterWeightedAreaSize int8u + 35 FineTuneOptMatrixMetering int8s + 37 FineTuneOptCenterWeighted int8s + 39 FineTuneOptSpotMetering int8s + 41 FineTuneOptHighlightWeighted int8s + 43 ShutterReleaseButtonAE-L int8u + 45 SelfTimerTime int8u + 49 SelfTimerShotCount int8u + 53 SelfTimerShotInterval int8u + 55 PlaybackMonitorOffTime int8u + 57 MenuMonitorOffTime int8u + 59 ImageReviewMonitorOffTime int8u + 61 ShootingInfoMonitorOffTime int8u + 63 CLModeShootingSpeed int8u + 65 MaxContinuousRelease no + 69 SyncReleaseMode? int8u + 75 LimitSelectableImageAreaDX? int8u + 76 LimitSelectableImageArea1To1? int8u + 77 LimitSelectableImageArea16To9? int8u + 78 FileNumberSequence int8u + 81 FocusPeakingLevel? int8u + 83 FocusPeakingHighlightColor? int8u + 85 ContinuousModeDisplay int8u + 87 FlashSyncSpeed no + 89 HighSpeedSync int8u + 91 FlashShutterSpeed no + 93 FlashExposureCompArea int8u + 95 AutoFlashISOSensitivity int8u + 97 ModelingFlash int8u + 99 AutoBracketModeM int8u + 101 AutoBracketOrder int8u + 103 Func1Button int8u + 119 Func2Button int8u + 135 AFOnButton int8u + 147 SubSelector? int8u + 159 AssignMovieRecordButton? int8u + 163 LensFunc1Button int8u + 171 LensFunc2Button int8u + 177 LensControlRing int8u + 179 MultiSelectorShootMode int8u + 183 MultiSelectorPlaybackMode int8u + 187 ShutterSpeedLock int8u + 188 ApertureLock int8u + 190 CmdDialsReverseRotation int8u + 195 UseDialWithoutHold? int8u + 197 ReverseIndicators? int8u + 199 MovieFunc1Button int8u + 205 MovieFunc2Button int8u + 211 MovieAF-OnButton int8u + 223 MovieLensControlRing int8u + 225 MovieMultiSelector? int8u + 229 MovieAFSpeed int8u + 231 MovieAFSpeedApply int8u + 233 MovieAFTrackingSensitivity int8u + 241 LCDIllumination? int8u + 242 ExtendedShutterSpeeds int8u + 245 FocusPointPersistence int8u + 257 FlashBurstPriority? int8u + 319 LimitAF-AreaModeSelDynamic_S? int8u + 320 LimitAF-AreaModeSelDynamic_M? int8u + 321 LimitAF-AreaModeSelDynamic_L? int8u + 323 LimitAF-AreaModeSel3DTracking? int8u + 325 PlaybackFlickUp? int8u + 329 PlaybackFlickDown? int8u + 333 ISOStepSize int8u + 340 TouchFn? int8u + 341 TouchFnRole? int8u + 345 TouchFnAreaWide? int8u + 347 TouchFnAreaTall? int8u + 350 EVFImageFrame? int8u + 351 EVFGrid? int8u + 353 VirtualHorizonStyle? int8u + 415 Func1ButtonPlaybackMode? int8u + 417 Func2ButtonPlaybackMode? int8u + 431 MovieRecordButtonPlaybackMode? int8u + 463 ControlRingResponse int8u + 559 FocusPeakingDisplay? int8u + =head3 NikonCustom SettingsZ8 Tags Custom settings for the Z8. diff --git a/bin/lib/Image/ExifTool/XMP2.pl b/bin/lib/Image/ExifTool/XMP2.pl index b048b79..50c89f3 100644 --- a/bin/lib/Image/ExifTool/XMP2.pl +++ b/bin/lib/Image/ExifTool/XMP2.pl @@ -871,7 +871,7 @@ package Image::ExifTool::XMP; NOTES => q{ Publishing Requirements for Industry Standard Metadata 3.0 namespace tags. (see - L) + L) }, academicField => { }, # (3.0) aggregateIssueNumber => { Writable => 'integer' }, # (3.0) diff --git a/bin/perl-Image-ExifTool.spec b/bin/perl-Image-ExifTool.spec index 4868258..0be43d0 100644 --- a/bin/perl-Image-ExifTool.spec +++ b/bin/perl-Image-ExifTool.spec @@ -1,6 +1,6 @@ Summary: perl module for image data extraction Name: perl-Image-ExifTool -Version: 12.96 +Version: 12.97 Release: 1 License: Artistic/GPL Group: Development/Libraries/Perl diff --git a/lib/exiftool_vendored/version.rb b/lib/exiftool_vendored/version.rb index af7e0ee..505d25f 100644 --- a/lib/exiftool_vendored/version.rb +++ b/lib/exiftool_vendored/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ExiftoolVendored - VERSION = Gem::Version.new('12.96.0') + VERSION = Gem::Version.new('12.97.0') end