summaryrefslogtreecommitdiff
path: root/lib/Image
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Image')
-rw-r--r--lib/Image/ExifTool.pm4
-rw-r--r--lib/Image/ExifTool.pod4
-rw-r--r--lib/Image/ExifTool/Apple.pm12
-rw-r--r--lib/Image/ExifTool/Fixup.pm12
-rw-r--r--lib/Image/ExifTool/HtmlDump.pm6
-rw-r--r--lib/Image/ExifTool/Nikon.pm3
-rw-r--r--lib/Image/ExifTool/Olympus.pm39
-rw-r--r--lib/Image/ExifTool/PDF.pm8
-rw-r--r--lib/Image/ExifTool/PhaseOne.pm384
-rw-r--r--lib/Image/ExifTool/PostScript.pm7
-rw-r--r--lib/Image/ExifTool/QuickTime.pm2
-rw-r--r--lib/Image/ExifTool/README2
-rw-r--r--lib/Image/ExifTool/TagLookup.pm3859
-rw-r--r--lib/Image/ExifTool/TagNames.pod70
-rw-r--r--lib/Image/ExifTool/WriteExif.pl12
-rw-r--r--lib/Image/ExifTool/WriteXMP.pl33
-rw-r--r--lib/Image/ExifTool/XMP.pm9
-rw-r--r--lib/Image/ExifTool/XMPStruct.pl31
18 files changed, 2376 insertions, 2121 deletions
diff --git a/lib/Image/ExifTool.pm b/lib/Image/ExifTool.pm
index e7c89b35..4bcbb2e2 100644
--- a/lib/Image/ExifTool.pm
+++ b/lib/Image/ExifTool.pm
@@ -27,7 +27,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
%jpegMarker %specialTags);
-$VERSION = '10.07';
+$VERSION = '10.08';
$RELEASE = '';
@ISA = qw(Exporter);
%EXPORT_TAGS = (
@@ -184,7 +184,7 @@ my %writeTypes; # lookup for writable file types (hash filled if required)
# file extensions that we can't write for various base types
%noWriteFile = (
- TIFF => [ qw(3FR DCR K25 KDC ) ],
+ TIFF => [ qw(3FR DCR K25 KDC) ],
XMP => [ 'SVG' ],
JP2 => [ 'J2C', 'JPC' ],
);
diff --git a/lib/Image/ExifTool.pod b/lib/Image/ExifTool.pod
index a1530403..1381e9ba 100644
--- a/lib/Image/ExifTool.pod
+++ b/lib/Image/ExifTool.pod
@@ -792,7 +792,9 @@ Flag set to assume that QuickTime date/time values are stored as UTC,
causing conversion to local time when they are extracted. According to the
QuickTime specification date/time values should be UTC, but many digital
cameras store local time instead (presumably because they don't know the
-time zone), so the default is undef.
+time zone), so the default is undef. This option also disables the
+autodetection of incorrect time-zero offsets in QuickTime date/time values,
+and enforces a time zero of 1904 as per the QuickTime specification.
=item RequestAll
diff --git a/lib/Image/ExifTool/Apple.pm b/lib/Image/ExifTool/Apple.pm
index ca9057a2..b890a3df 100644
--- a/lib/Image/ExifTool/Apple.pm
+++ b/lib/Image/ExifTool/Apple.pm
@@ -21,7 +21,7 @@ $VERSION = '1.02';
WRITABLE => 1,
GROUPS => { 0 => 'MakerNotes', 2 => 'Image' },
NOTES => 'Tags extracted from maker notes of images from the iPhone 5 with iOS 7.',
- # 0x0001 - int32s: seen 0, 1, 2, 3
+ # 0x0001 - int32s: seen 0,1,2,3,4
# 0x0002 - binary plist with a single data object of size 512 bytes (iPhone5s)
0x0003 => {
Name => 'RunTime',
@@ -29,10 +29,10 @@ $VERSION = '1.02';
},
# 0x0004 - int32s: normally 1, but 0 for low-light images
# 0x0005 - int32s: seen values 147-247, and 100 for blank images
- # 0x0006 - int32s: seen values 129-241, and 20 for blank images
+ # 0x0006 - int32s: seen values 120-258, and 20 for blank images
# 0x0007 - int32s: seen 1
# 0x0008 - rational64s[3]: eg) "0.02683717579 -0.7210501641 -0.6948792783"
- # 0x0009 - int32s: seen 19
+ # 0x0009 - int32s: seen 19,531
0x000a => {
Name => 'HDRImageType',
Writable => 'int32s',
@@ -47,12 +47,12 @@ $VERSION = '1.02';
Notes => 'unique ID for all images in a burst',
},
# 0x000c - rational64s[2]: eg) "0.1640625 0.19921875"
- # 0x000d - int32s: 0
+ # 0x000d - int32s: 0,1,6
# 0x000e - int32s: 0,1,12
- # 0x000f - int32s: 3
+ # 0x000f - int32s: 2,3
# 0x0010 - int32s: 1
# 0x0011 - string[37]: some type of UID, eg. "FFCBAC24-E547-4BBC-AF47-38B1A3D845E3\0" (iPhone 6s, iOS 6.1)
- # 0x0014 - int32s: 1,3 (iPhone 6s, iOS 6.1)
+ # 0x0014 - int32s: 1,2,3,5 (iPhone 6s, iOS 6.1)
);
# PLIST-format CMTime structure (ref PH)
diff --git a/lib/Image/ExifTool/Fixup.pm b/lib/Image/ExifTool/Fixup.pm
index 6b564455..3091dd0c 100644
--- a/lib/Image/ExifTool/Fixup.pm
+++ b/lib/Image/ExifTool/Fixup.pm
@@ -18,6 +18,18 @@
# Pointers - Hash of references to fixup pointer arrays, keyed by ByteOrder
# string (with "2" added if pointer is 16-bit [default is 32-bit],
# plus "_$marker" suffix if tagged with a marker name).
+#
+# Procedure:
+#
+# 1. Create a Fixup object for each data block containing pointers
+# 2. Call AddFixup with the offset of each pointer in the block
+# - pointer is assumed int32u with the current byte order
+# - may also be called with a fixup reference for contained blocks
+# 3. Add the necessary pointer offset to $$fixup{Shift}
+# 4. Add data size to $$fixup{Start} if data is added before the block
+# - automatically also shifts pointers by this amount
+# 5. Call ApplyFixup to apply the fixup to all pointers
+# - resets Shift and Start to 0 after applying fixup
#------------------------------------------------------------------------------
package Image::ExifTool::Fixup;
diff --git a/lib/Image/ExifTool/HtmlDump.pm b/lib/Image/ExifTool/HtmlDump.pm
index a5f070e1..52e28642 100644
--- a/lib/Image/ExifTool/HtmlDump.pm
+++ b/lib/Image/ExifTool/HtmlDump.pm
@@ -13,7 +13,7 @@ use vars qw($VERSION);
use Image::ExifTool; # only for FinishTiffDump()
use Image::ExifTool::HTML qw(EscapeHTML);
-$VERSION = '1.32';
+$VERSION = '1.33';
sub DumpTable($$$;$$$$$);
sub Open($$$;@);
@@ -383,7 +383,9 @@ sub Print($$;$$$$$)
for ($try=0; $try<2; ++$try) {
$end = $start + $len;
# only load as much of the block as we are going to dump
- my $size = ($len > $limit) ? $limit / 2 : $len;
+ # (read 32 more bytes than necessary just in case there
+ # is only one skipped line that we decide to print)
+ my $size = ($len > $limit + 32) ? $limit / 2 + 16 : $len;
if ($start >= $dataPos and $end <= $dataEnd) {
$buff = substr($$dataPt, $start-$dataPos, $size);
if ($len != $size) {
diff --git a/lib/Image/ExifTool/Nikon.pm b/lib/Image/ExifTool/Nikon.pm
index 4f0b3475..4e09c9c3 100644
--- a/lib/Image/ExifTool/Nikon.pm
+++ b/lib/Image/ExifTool/Nikon.pm
@@ -58,7 +58,7 @@ use vars qw($VERSION %nikonLensIDs %nikonTextEncoding);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
-$VERSION = '3.12';
+$VERSION = '3.13';
sub LensIDConv($$$);
sub ProcessNikonAVI($$$);
@@ -471,6 +471,7 @@ sub GetAFPointGrid($$;$);
'48 3C 8E B0 3C 3C 4B 02' => 'Sigma APO 300-800mm F5.6 EX DG HSM',
#
'00 47 25 25 24 24 00 02' => 'Tamron SP AF 14mm f/2.8 Aspherical (IF) (69E)',
+ 'E8 4C 44 44 14 14 DF 0E' => 'Tamron SP 35mm f/1.8 VC', #35
'F4 54 56 56 18 18 84 06' => 'Tamron SP AF 60mm f/2.0 Di II Macro 1:1 (G005)', #24
'1E 5D 64 64 20 20 13 00' => 'Tamron SP AF 90mm f/2.5 (52E)',
'20 5A 64 64 20 20 14 00' => 'Tamron SP AF 90mm f/2.5 Macro (152E)',
diff --git a/lib/Image/ExifTool/Olympus.pm b/lib/Image/ExifTool/Olympus.pm
index 1f5e511b..f538c790 100644
--- a/lib/Image/ExifTool/Olympus.pm
+++ b/lib/Image/ExifTool/Olympus.pm
@@ -38,7 +38,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
use Image::ExifTool::APP12;
-$VERSION = '2.34';
+$VERSION = '2.35';
sub PrintLensInfo($$$);
@@ -2256,6 +2256,7 @@ my %indexInfo = (
1 => 'WB',
2 => 'FL',
3 => 'MF',
+ 6 => 'Focus', #PH
}) . ' Bracketing';
$a =~ s/, /+/g;
} else {
@@ -2310,6 +2311,15 @@ my %indexInfo = (
4 => 'On, Mode 4', # (NC, E-P5)
},
},
+ 0x804 => { #PH (E-M1 with firmware update)
+ Name => 'StackedImage',
+ Writable => 'int32u',
+ Count => 2,
+ PrintConv => {
+ '0 0' => 'No',
+ '9 8' => 'Focus-stacked (8 images)',
+ },
+ },
0x900 => { #11
Name => 'ManometerPressure',
Writable => 'int16u',
@@ -2782,6 +2792,7 @@ my %indexInfo = (
Binary => 1,
Unknown => 1, # (but what does it mean?)
},
+ # 0x214 - int16u: normally 0, but 1 for E-M1 focus-bracketing, and have seen 1 and 256 at other times
0x300 => { Name => 'ZoomStepCount', Writable => 'int16u' }, #6
0x301 => { Name => 'FocusStepCount', Writable => 'int16u' }, #11
0x303 => { Name => 'FocusStepInfinity', Writable => 'int16u' }, #11
@@ -2890,14 +2901,10 @@ my %indexInfo = (
}
],
# 0x31a Continuous AF parameters?
- # 0x328 Related to AF (maybe Imager AF data?) (ref PH, E-PL1):
- # - offset 0x2a (int8u) ImagerAFMode? 0=Manual, 1=Auto
- # - offset 0x30 (int16u) AFAreaXPosition
- # - offset 0x32 (int16u) AFAreaWidth (202)
- # - offset 0x34 (int16u) AFAreaYPosition
- # - offset 0x36 (int16u) AFAreaHeight (50)
- # (AF area positions above give the top-left coordinates of the AF area in the
- # AF frame. Increasing Y is downwards, and the AF frame size is about 1280x256)
+ 0x328 => { #PH
+ Name => 'AFInfo',
+ SubDirectory => { TagTable => 'Image::ExifTool::Olympus::AFInfo' },
+ },
# 0x1200-0x1209 Flash information:
0x1201 => { #6
Name => 'ExternalFlash',
@@ -3003,6 +3010,20 @@ my %indexInfo = (
# 0x102a same as Subdir4-0x300
);
+# AF information (ref PH)
+%Image::ExifTool::Olympus::AFInfo = (
+ PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ FIRST_ENTRY => 0,
+ # 0x2a - int8u: ImagerAFMode? 0=Manual, 1=Auto
+ # 0x30 - int16u: AFAreaXPosition?
+ # 0x32 - int16u: AFAreaWidth? (202)
+ # 0x34 - int16u: AFAreaYPosition?
+ # 0x36 - int16u: AFAreaHeight? (50)
+ # (AF area positions above give the top-left coordinates of the AF area in the
+ # AF frame. Increasing Y is downwards, and the AF frame size is about 1280x256)
+);
+
# Olympus raw information tags (ref 6)
%Image::ExifTool::Olympus::RawInfo = (
WRITE_PROC => \&Image::ExifTool::Exif::WriteExif,
diff --git a/lib/Image/ExifTool/PDF.pm b/lib/Image/ExifTool/PDF.pm
index be27ffa0..0553e886 100644
--- a/lib/Image/ExifTool/PDF.pm
+++ b/lib/Image/ExifTool/PDF.pm
@@ -21,7 +21,7 @@ use vars qw($VERSION $AUTOLOAD $lastFetched);
use Image::ExifTool qw(:DataAccess :Utils);
require Exporter;
-$VERSION = '1.38';
+$VERSION = '1.39';
sub FetchObject($$$$);
sub ExtractObject($$;$$);
@@ -2007,6 +2007,12 @@ sub ProcessDict($$$$;$$)
}
# decode stream if necessary
DecodeStream($et, $dict) or last;
+ if ($verbose > 2) {
+ $et->VPrint(2,"$$et{INDENT}$$et{DIR_NAME} stream data\n");
+ my %parms = ( Prefix => $$et{INDENT} );
+ $parms{MaxLen} = $verbose > 3 ? 1024 : 96 if $verbose < 5;
+ HexDump(\$$dict{_stream}, undef, %parms);
+ }
# extract information from stream
my %dirInfo = (
DataPt => \$$dict{_stream},
diff --git a/lib/Image/ExifTool/PhaseOne.pm b/lib/Image/ExifTool/PhaseOne.pm
index 4e8e6922..2592d906 100644
--- a/lib/Image/ExifTool/PhaseOne.pm
+++ b/lib/Image/ExifTool/PhaseOne.pm
@@ -13,20 +13,25 @@ package Image::ExifTool::PhaseOne;
use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
+use Image::ExifTool::Exif;
-$VERSION = '1.02';
+$VERSION = '1.03';
+sub WritePhaseOne($$$);
sub ProcessPhaseOne($$$);
-sub ProcessSensorCalibration($$$);
-# observed PhaseOne format types
-my @formatName = ( undef, 'string', 'undef', undef, 'int32u' );
-my @formatSize = ( undef, 1, 1, undef, 4 );
+# default formats based on PhaseOne format size
+my @formatName = ( undef, 'string', 'int16s', undef, 'int32s' );
# Phase One maker notes (ref PH)
%Image::ExifTool::PhaseOne::Main = (
PROCESS_PROC => \&ProcessPhaseOne,
+ WRITE_PROC => \&WritePhaseOne,
+ CHECK_PROC => \&Image::ExifTool::Exif::CheckExif,
+ WRITABLE => '1',
+ FORMAT => 'int32s',
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ VARS => { ENTRY_SIZE => 16 }, # (entries contain a format field)
NOTES => 'These tags are extracted from the maker notes of Phase One images.',
0x0100 => { #1
Name => 'CameraOrientation',
@@ -39,19 +44,21 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
},
},
# 0x0101 - int32u: 96,160,192,256,544 (same as 0x0213)
- 0x0102 => 'SerialNumber',
+ 0x0102 => { Name => 'SerialNumber', Format => 'string' },
# 0x0103 - int32u: 19,20,59769034
# 0x0104 - int32u: 50,200
0x0105 => 'ISO',
0x0106 => {
Name => 'ColorMatrix1',
Format => 'float',
+ Count => 9,
PrintConv => q{
my @a = map { sprintf('%.3f', $_) } split ' ', $val;
return "@a";
},
+ PrintConvInv => '$val',
},
- 0x0107 => 'WB_RGBLevels',
+ 0x0107 => { Name => 'WB_RGBLevels', Format => 'float', Count => 3 },
0x0108 => 'SensorWidth',
0x0109 => 'SensorHeight',
0x010a => 'SensorLeftMargin', #1
@@ -64,15 +71,21 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
# >2 = compressed
# 5 = non-linear
PrintConv => { #PH
- 1 => 'RAW 1', #?
- 2 => 'RAW 2', #?
+ 1 => 'RAW 1', #? (encrypted)
+ 2 => 'RAW 2', #? (encrypted)
3 => 'IIQ L',
# 4?
5 => 'IIQ S',
6 => 'IIQ Sv2',
},
},
- 0x010f => { Name => 'RawData', Binary => 1 },
+ 0x010f => {
+ Name => 'RawData',
+ Format => 'undef', # (actually 2-byte integers, but don't convert)
+ Binary => 1,
+ PutFirst => 1,
+ Writable => 0,
+ },
0x0110 => { #1
Name => 'SensorCalibration',
SubDirectory => { TagTable => 'Image::ExifTool::PhaseOne::SensorCalibration' },
@@ -81,24 +94,33 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
Name => 'DateTimeOriginal',
Description => 'Date/Time Original',
Format => 'int32u',
+ Writable => 0, # (don't write because this is an encryption key for RawFormat 1 and 2)
+ Priority => 0,
+ Shift => 'Time',
Groups => { 2 => 'Time' },
- Notes => 'also used as a key to encrypt the raw data', #1
+ Notes => 'may be used as a key to encrypt the raw data', #1
ValueConv => 'ConvertUnixTime($val)',
+ ValueConvInv => 'GetUnixTime($val)',
PrintConv => '$self->ConvertDateTime($val)',
+ PrintConvInv => '$self->InverseDateTime($val)',
},
0x0113 => 'ImageNumber', # (NC)
- 0x0203 => 'Software',
- 0x0204 => 'System',
+ 0x0203 => { Name => 'Software', Format => 'string' },
+ 0x0204 => { Name => 'System', Format => 'string' },
# 0x020b - int32u: 0,1
# 0x020c - int32u: 1,2
# 0x020e - int32u: 1,3
0x0210 => { # (NC) (used in linearization formula - ref 1)
Name => 'SensorTemperature',
+ Format => 'float',
PrintConv => 'sprintf("%.2f C",$val)',
+ PrintConvInv => '$val=~s/ ?C//; $val',
},
0x0211 => { # (NC)
Name => 'SensorTemperature2',
+ Format => 'float',
PrintConv => 'sprintf("%.2f C",$val)',
+ PrintConvInv => '$val=~s/ ?C//; $val',
},
0x0212 => {
Name => 'UnknownDate',
@@ -106,78 +128,117 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
Groups => { 2 => 'Time' },
# (this time is within about 10 minutes before or after 0x0112)
Unknown => 1,
+ Shift => 'Time',
ValueConv => 'ConvertUnixTime($val)',
+ ValueConvInv => 'GetUnixTime($val)',
PrintConv => '$self->ConvertDateTime($val)',
+ PrintConvInv => '$self->InverseDateTime($val)',
},
# 0x0213 - int32u: 96,160,192,256,544 (same as 0x0101)
# 0x0215 - int32u: 4,5
# 0x021a - used by dcraw
- 0x021c => { Name => 'StripOffsets', Binary => 1 },
+ 0x021c => { Name => 'StripOffsets', Binary => 1, Writable => 0 },
0x021d => 'BlackLevel', #1
# 0x021e - int32u: 1
# 0x0220 - int32u: 32
# 0x0221 - float: 0-271
0x0222 => 'SplitColumn', #1
- 0x0223 => { Name => 'BlackLevelData', Binary => 1 }, #1
+ 0x0223 => { Name => 'BlackLevelData', Format => 'int16u', Count => -1, Binary => 1 }, #1
# 0x0224 - int32u: 1688,2748,3372
0x0225 => {
Name => 'PhaseOne_0x0225',
Format => 'int16s',
+ Count => -1,
Flags => ['Unknown','Hidden'],
PrintConv => 'length($val) > 60 ? substr($val,0,55) . "[...]" : $val',
},
0x0226 => {
Name => 'ColorMatrix2',
+ Format => 'float',
+ Count => 9,
PrintConv => q{
my @a = map { sprintf('%.3f', $_) } split ' ', $val;
return "@a";
},
+ PrintConvInv => '$val',
},
# 0x0227 - int32u: 0,1
# 0x0228 - int32u: 1,2
# 0x0229 - int32s: -2,0
+ 0x022b => { #PH
+ Name => 'PhaseOne_0x022b',
+ Format => 'float',
+ Flags => ['Unknown','Hidden'],
+ },
# 0x0242 - int32u: 55
# 0x0244 - int32u: 102
+ # 0x0245 - float: 1.2
+ 0x0258 => { #PH
+ Name => 'PhaseOne_0x0258',
+ Format => 'int16s',
+ Flags => ['Unknown','Hidden'],
+ PrintConv => 'length($val) > 60 ? substr($val,0,55) . "[...]" : $val',
+ },
+ 0x025a => { #PH
+ Name => 'PhaseOne_0x025a',
+ Format => 'int16s',
+ Flags => ['Unknown','Hidden'],
+ PrintConv => 'length($val) > 60 ? substr($val,0,55) . "[...]" : $val',
+ },
# 0x0300 - int32u: 100,101,102
- 0x0301 => 'FirmwareVersions',
+ 0x0301 => { Name => 'FirmwareVersions', Format => 'string' },
# 0x0304 - int32u: 8,3073,3076
0x0400 => {
Name => 'ShutterSpeedValue',
+ Format => 'float',
ValueConv => 'abs($val)<100 ? 2**(-$val) : 0',
+ ValueConvInv => '$val>0 ? -log($val)/log(2) : -100',
PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
+ PrintConvInv => 'Image::ExifTool::Exif::ConvertFraction($val)',
},
0x0401 => {
Name => 'ApertureValue',
+ Format => 'float',
ValueConv => '2 ** ($val / 2)',
+ ValueConvInv => '$val>0 ? 2*log($val)/log(2) : 0',
PrintConv => 'sprintf("%.1f",$val)',
+ PrintConvInv => '$val',
},
0x0402 => {
Name => 'ExposureCompensation',
Format => 'float',
PrintConv => 'sprintf("%.3f",$val)',
+ PrintConvInv => '$val',
},
0x0403 => {
Name => 'FocalLength',
- Format => 'int32u',
+ Format => 'float',
PrintConv => 'sprintf("%.1f mm",$val)',
+ PrintConvInv => '$val=~s/\s*mm$//;$val',
},
# 0x0404 - int32u: 0,3
# 0x0405 - int32u? (big numbers)
# 0x0406 - int32u: 1
# 0x0407 - float: -0.333 (exposure compensation again?)
# 0x0408-0x0409 - int32u: 1
- 0x0410 => 'CameraModel',
+ 0x0410 => { Name => 'CameraModel', Format => 'string' },
# 0x0411 - int32u: 33556736
- 0x0412 => 'LensModel',
+ 0x0412 => { Name => 'LensModel', Format => 'string' },
0x0414 => {
Name => 'MaxApertureValue',
+ Format => 'float',
ValueConv => '2 ** ($val / 2)',
+ ValueConvInv => '$val>0 ? 2*log($val)/log(2) : 0',
PrintConv => 'sprintf("%.1f",$val)',
+ PrintConvInv => '$val',
},
0x0415 => {
Name => 'MinApertureValue',
+ Format => 'float',
ValueConv => '2 ** ($val / 2)',
+ ValueConvInv => '$val>0 ? 2*log($val)/log(2) : 0',
PrintConv => 'sprintf("%.1f",$val)',
+ PrintConvInv => '$val',
},
# 0x0416 - float: (min focal length? ref LibRaw, Credo50) (but looks more like an int32u date for the 645DF - PH)
# 0x0417 - float: 80 (max focal length? ref LibRaw)
@@ -185,9 +246,12 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
# Phase One metadata (ref 1)
%Image::ExifTool::PhaseOne::SensorCalibration = (
- PROCESS_PROC => \&ProcessSensorCalibration,
+ PROCESS_PROC => \&ProcessPhaseOne,
+ WRITE_PROC => \&WritePhaseOne,
+ CHECK_PROC => \&Image::ExifTool::Exif::CheckExif,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
TAG_PREFIX => 'SensorCalibration',
+ VARS => { ENTRY_SIZE => 12 }, # (entries do not contain a format field)
0x0400 => {
Name => 'SensorDefects',
# list of defects. each defect is 4 x int16u values:
@@ -219,6 +283,7 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
0x0407 => { #PH
Name => 'SerialNumber',
Format => 'string',
+ Writable => 1,
},
0x0408 => { #PH
Name => 'SensorCalibration_0x0408',
@@ -230,6 +295,11 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
Format => 'undef',
Flags => ['Unknown','Binary'],
},
+ 0x040f => { #PH
+ Name => 'SensorCalibration_0x040f',
+ Format => 'undef',
+ Flags => ['Unknown','Hidden'],
+ },
0x0410 => {
Name => 'AllColorFlatField2',
Format => 'undef',
@@ -241,11 +311,21 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
Format => 'double',
Flags => ['Unknown','Hidden'],
},
+ 0x0414 => { #PH
+ Name => 'SensorCalibration_0x0414',
+ Format => 'undef',
+ Flags => ['Unknown','Hidden'],
+ },
0x0416 => {
Name => 'AllColorFlatField3',
Format => 'undef',
Flags => ['Unknown','Binary'],
},
+ 0x0418 => { #PH
+ Name => 'SensorCalibration_0x0418',
+ Format => 'undef',
+ Flags => ['Unknown','Hidden'],
+ },
0x0419 => {
Name => 'LinearizationCoefficients1',
Format => 'float',
@@ -283,11 +363,12 @@ my @formatSize = ( undef, 1, 1, undef, 4 );
sub HtmlDump($$$$$$%)
{
my ($et, $tagTablePtr, $tagID, $value, $entry, $entryLen, %parms) = @_;
- my ($dirName, $index, $formatStr, $base, $size, $valuePtr) =
- @parms{qw(DirName Index Format DataPos Size Start)};
+ my ($dirName, $index, $formatStr, $dataPos, $base, $size, $valuePtr) =
+ @parms{qw(DirName Index Format DataPos Base Size Start)};
my $tagInfo = $et->GetTagInfo($tagTablePtr, $tagID);
my ($tagName, $colName, $subdir);
my $count = $parms{Count} || $size;
+ $base = 0 unless defined $base;
if ($tagInfo) {
$tagName = $$tagInfo{Name};
$subdir = $$tagInfo{SubDirectory};
@@ -304,9 +385,9 @@ sub HtmlDump($$$$$$%)
my $tip = sprintf("Tag ID: 0x%.4x\n", $tagID) .
"Format: $fstr\nSize: $size bytes\n";
if ($size > 4) {
- $tip .= sprintf("Value offset: 0x%.4x\n", $valuePtr);
- $tip .= sprintf("Actual offset: 0x%.4x\n", $valuePtr + $base);
- $tip .= sprintf("Offset base: 0x%.4x\n", $base);
+ $tip .= sprintf("Value offset: 0x%.4x\n", $valuePtr - $base);
+ $tip .= sprintf("Actual offset: 0x%.4x\n", $valuePtr + $dataPos);
+ $tip .= sprintf("Offset base: 0x%.4x\n", $dataPos + $base);
$colName = "<span class=F>$tagName</span>";
} else {
$colName = $tagName;
@@ -316,96 +397,158 @@ sub HtmlDump($$$$$$%)
$tval =~ tr/\x00-\x1f\x7f-\xff/./;
$tip .= "Value: $tval";
}
- $et->HDump($entry+$base, $entryLen, "$dname $colName", $tip, 1);
+ $et->HDump($entry+$dataPos, $entryLen, "$dname $colName", $tip, 1);
if ($size > 4) {
- my $dumpPos = $valuePtr + $base;
+ my $dumpPos = $valuePtr + $dataPos;
# add value data block
$et->HDump($dumpPos,$size,"$tagName value",'SAME', $subdir ? 0x04 : 0);
}
}
#------------------------------------------------------------------------------
-# Process Phase One sensor calibration directory (ref 1)
-# Inputs: 0) ExifTool object ref, 1) dirInfo ref, 2) tag table ref
-# Returns: 1 on success
-sub ProcessSensorCalibration($$$)
+# Write PhaseOne maker notes (both types of PhaseOne IFD)
+# Inputs: 0) ExifTool object ref, 1) source dirInfo ref, 2) tag table ref
+# Returns: data block or undef on error
+sub WritePhaseOne($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
+ $et or return 1; # allow dummy access to autoload this package
+
+ # nothing to do if we aren't changing any PhaseOne tags
+ my $newTags = $et->GetNewTagInfoHash($tagTablePtr);
+ return undef unless %$newTags;
+
my $dataPt = $$dirInfo{DataPt};
my $dataPos = $$dirInfo{DataPos} || 0;
my $dirStart = $$dirInfo{DirStart} || 0;
my $dirLen = $$dirInfo{DirLen} || $$dirInfo{DataLen} - $dirStart;
+ my $dirName = $$dirInfo{DirName};
my $verbose = $et->Options('Verbose');
- my $htmlDump = $$et{HTML_DUMP};
- return 0 unless $dirLen >= 12 and SetByteOrder(substr($$dataPt, $dirStart, 2));
- # get offset to start of SensorCalibration directory
- my $ifdStart = Get32u($dataPt, $dirStart + 8);
- return 0 if $ifdStart > $dirLen - 4;
- my $numEntries = Get32u($dataPt, $dirStart + $ifdStart);
- my $ifdEnd = $ifdStart + 8 + 12 * $numEntries;
- return 0 if $numEntries < 2 or $numEntries > 300 or $ifdEnd > $dirLen;
- $et->VerboseDir('SensorCalibration', $numEntries);
- if ($htmlDump) {
- $et->HDump($dirStart + $dataPos, 8, 'SensorCalibration header');
- $et->HDump($dirStart + $dataPos + 8, 4, 'SensorCalibration IFD offset');
- $et->HDump($dirStart + $dataPos + $ifdStart, 4, 'SensorCalibration entries',
- "Entry count: $numEntries");
- $et->HDump($dirStart + $dataPos + $ifdStart + 4, 4, '[unused]');
+ return undef if $dirLen < 12;
+ unless ($$tagTablePtr{VARS} and $$tagTablePtr{VARS}{ENTRY_SIZE}) {
+ $et->WarnOnce("No ENTRY_SIZE for $$tagTablePtr{TABLE_NAME}");
+ return undef;
+ }
+ my $entrySize = $$tagTablePtr{VARS}{ENTRY_SIZE};
+ my $ifdType = $$tagTablePtr{TAG_PREFIX} || 'PhaseOne';
+ my $hdr = substr($$dataPt, $dirStart, 12);
+ if ($entrySize == 16) {
+ return undef unless $hdr =~ /^(IIII.waR|MMMMRaw.)/s;
+ } elsif ($hdr !~ /^(IIII\x01\0\0\0|MMMM\0\0\0\x01)/s) {
+ $et->Warn("Unrecognized $ifdType directory version");
+ return undef;
}
+ SetByteOrder(substr($hdr, 0, 2));
+ # get offset to start of PhaseOne directory
+ my $ifdStart = Get32u(\$hdr, 8);
+ return undef if $ifdStart + 8 > $dirLen;
+ # initialize output directory buffer with (fixed) number of entries plus 4-byte padding
+ my $dirBuff = substr($$dataPt, $dirStart + $ifdStart, 8);
+ # get number of entries in PhaseOne directory
+ my $numEntries = Get32u(\$dirBuff, 0);
+ my $ifdEnd = $ifdStart + 8 + $entrySize * $numEntries;
+ return undef if $numEntries < 2 or $numEntries > 300 or $ifdEnd > $dirLen;
+ my $hdrBuff = $hdr;
+ my $valBuff = ''; # buffer for value data
+ my $fixup = new Image::ExifTool::Fixup;
my $index;
for ($index=0; $index<$numEntries; ++$index) {
- my $entry = $dirStart + $ifdStart + 8 + 12 * $index;
+ my $entry = $dirStart + $ifdStart + 8 + $entrySize * $index;
my $tagID = Get32u($dataPt, $entry);
- my $size = Get32u($dataPt, $entry+4);
- my $valuePtr = $entry + 8;
+ my $size = Get32u($dataPt, $entry+$entrySize-8);
+ my ($formatSize, $formatStr);
+ if ($entrySize == 16) {
+ $formatSize = Get32u($dataPt, $entry+4);
+ $formatStr = $formatName[$formatSize];
+ unless ($formatStr) {
+ $et->Warn("Possibly invalid $ifdType IFD entry $index",1);
+ delete $$newTags{$tagID}; # make sure we don't try to change this one
+ }
+ } else {
+ # (no format code for SensorCalibration IFD entries)
+ $formatSize = 1;
+ $formatStr = 'undef';
+ }
+ my $valuePtr = $entry + $entrySize - 4;
if ($size > 4) {
if ($size > 0x7fffffff) {
- $et->Warn("Invalid size for SensorCalibration IFD entry $index");
- return 0;
+ $et->Error("Invalid size for $ifdType IFD entry $index",1);
+ return undef;
}
$valuePtr = Get32u($dataPt, $valuePtr);
if ($valuePtr + $size > $dirLen) {
- $et->Warn(sprintf("Invalid offset 0x%.4x for SensorCalibration IFD entry $index",$valuePtr));
- return 0;
+ $et->Error(sprintf("Invalid offset 0x%.4x for $ifdType IFD entry $index",$valuePtr),1);
+ return undef;
}
$valuePtr += $dirStart;
}
- my $tagInfo = $et->GetTagInfo($tagTablePtr, $tagID);
- my $formatStr;
- if ($tagInfo) {
- $formatStr = $$tagInfo{Format};
- } else {
- next unless $verbose or $htmlDump;
- }
- unless ($formatStr) {
- my $value = substr($$dataPt, $valuePtr, $size);
- if ($value =~ /^[\w]+\0$/) {
- $formatStr = 'string';
- } else {
- $formatStr = ($size % 4) ? 'undef' : 'int32s';
+ my $value = substr($$dataPt, $valuePtr, $size);
+ my $tagInfo = $$newTags{$tagID} || $et->GetTagInfo($tagTablePtr, $tagID);
+ if ($$newTags{$tagID}) {
+ $formatStr = $$tagInfo{Format} if $$tagInfo{Format};
+ my $count = int($size / Image::ExifTool::FormatSize($formatStr));
+ my $val = ReadValue(\$value, 0, $formatStr, $count, $size);
+ my $nvHash = $et->GetNewValueHash($tagInfo);
+ if ($et->IsOverwriting($nvHash, $val)) {
+ my $newVal = $et->GetNewValue($nvHash);
+ # allow count to change for string and undef types only
+ undef $count if $formatStr eq 'string' or $formatStr eq 'undef';
+ my $newValue = WriteValue($newVal, $formatStr, $count);
+ if (defined $newValue) {
+ $value = $newValue;
+ $size = length $newValue;
+ $et->VerboseValue("- $dirName:$$tagInfo{Name}", $val);
+ $et->VerboseValue("+ $dirName:$$tagInfo{Name}", $newVal);
+ ++$$et{CHANGED};
+ }
+ }
+ } elsif ($tagInfo and $$tagInfo{SubDirectory}) {
+ my $subTable = GetTagTable($$tagInfo{SubDirectory}{TagTable});
+ my %subdirInfo = (
+ DirName => $$tagInfo{Name},
+ DataPt => \$value,
+ DataLen => length $value,
+ );
+ my $newValue = $et->WriteDirectory(\%subdirInfo, $subTable);
+ if (defined $newValue and length($newValue)) {
+ $value = $newValue;
+ $size = length $newValue;
}
}
- my $value = ReadValue($dataPt,$valuePtr,$formatStr,undef,$size);
- my %parms = (
- DirName => 'SensorCalibration',
- Index => $index,
- DataPt => $dataPt,
- DataPos => $dataPos,
- Size => $size,
- Start => $valuePtr,
- Format => $formatStr,
- );
- $htmlDump and HtmlDump($et, $tagTablePtr, $tagID, $value, $entry, 12, %parms);
- $et->HandleTag($tagTablePtr, $tagID, $value, %parms);
+ # add the tagID, possibly format size, and size to this directory entry
+ $dirBuff .= substr($$dataPt, $entry, $entrySize - 8) . Set32u($size);
+
+ # pad value to an even 4-byte boundary just in case
+ $value .= ("\0" x (4 - ($size & 0x03))) if $size & 0x03 or not $size;
+ if ($size <= 4) {
+ # store value in place of the IFD value pointer (already padded to 4 bytes)
+ $dirBuff .= $value;
+ } elsif ($tagInfo and $$tagInfo{PutFirst}) {
+ # store value immediately after header
+ $dirBuff .= Set32u(length $hdrBuff);
+ $hdrBuff .= $value;
+ } else {
+ # store value at end of value buffer
+ $fixup->AddFixup(length $dirBuff);
+ $dirBuff .= Set32u(length $valBuff);
+ $valBuff .= $value;
+ }
}
- return 1;
+ # apply necessary fixup to offsets in PhaseOne directory
+ $$fixup{Shift} = length $hdrBuff;
+ $fixup->ApplyFixup(\$dirBuff);
+ # set pointer to PhaseOneIFD in header
+ Set32u(length($hdrBuff) + length($valBuff), \$hdrBuff, 8);
+ return $hdrBuff . $valBuff . $dirBuff;
}
#------------------------------------------------------------------------------
-# Process Phase One maker notes
+# Read Phase One maker notes
# Inputs: 0) ExifTool object ref, 1) dirInfo ref, 2) tag table ref
# Returns: 1 on success
+# Notes: This routine processes both the main PhaseOne IFD type (with 16 bytes
+# per entry), and the SensorCalibration IFD type (12 bytes per entry)
sub ProcessPhaseOne($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
@@ -418,74 +561,86 @@ sub ProcessPhaseOne($$$)
my $htmlDump = $$et{HTML_DUMP};
return 0 if $dirLen < 12;
+ unless ($$tagTablePtr{VARS} and $$tagTablePtr{VARS}{ENTRY_SIZE}) {
+ $et->WarnOnce("No ENTRY_SIZE for $$tagTablePtr{TABLE_NAME}");
+ return undef;
+ }
+ my $entrySize = $$tagTablePtr{VARS}{ENTRY_SIZE};
+ my $ifdType = $$tagTablePtr{TAG_PREFIX} || 'PhaseOne';
+
my $hdr = substr($$dataPt, $dirStart, 12);
- return 0 unless $hdr =~ /^(IIII.waR|MMMMRaw.)/s;
+ if ($entrySize == 16) {
+ return 0 unless $hdr =~ /^(IIII.waR|MMMMRaw.)/s;
+ } elsif ($hdr !~ /^(IIII\x01\0\0\0|MMMM\0\0\0\x01)/s) {
+ $et->Warn("Unrecognized $ifdType directory version");
+ return 0;
+ }
SetByteOrder(substr($hdr, 0, 2));
# get offset to start of PhaseOne directory
my $ifdStart = Get32u(\$hdr, 8);
- return 0 if $ifdStart > $dirLen - 4;
+ return 0 if $ifdStart + 8 > $dirLen;
# get number of entries in PhaseOne directory
my $numEntries = Get32u($dataPt, $dirStart + $ifdStart);
- my $ifdEnd = $ifdStart + 8 + 16 * $numEntries;
+ my $ifdEnd = $ifdStart + 8 + $entrySize * $numEntries;
return 0 if $numEntries < 2 or $numEntries > 300 or $ifdEnd > $dirLen;
- $et->VerboseDir('PhaseOne', $numEntries);
+ $et->VerboseDir($ifdType, $numEntries);
if ($htmlDump) {
- $et->HDump($dirStart + $dataPos, 8, 'PhaseOne header');
- $et->HDump($dirStart + $dataPos + 8, 4, 'PhaseOne IFD offset');
- $et->HDump($dirStart + $dataPos + $ifdStart, 4, "PhaseOne entries",
+ $et->HDump($dirStart + $dataPos, 8, "$ifdType header");
+ $et->HDump($dirStart + $dataPos + 8, 4, "$ifdType IFD offset");
+ $et->HDump($dirStart + $dataPos + $ifdStart, 4, "$ifdType entries",
"Entry count: $numEntries");
$et->HDump($dirStart + $dataPos + $ifdStart + 4, 4, '[unused]');
}
my $index;
for ($index=0; $index<$numEntries; ++$index) {
- my $entry = $dirStart + $ifdStart + 8 + 16 * $index;
+ my $entry = $dirStart + $ifdStart + 8 + $entrySize * $index;
my $tagID = Get32u($dataPt, $entry);
- my $format = Get32u($dataPt, $entry+4);
- my $size = Get32u($dataPt, $entry+8);
- if ($format < 1 or $format > 13) {
- $et->Warn("Invalid PhaseOne IFD entry $index",1);
- return 0;
- }
- unless (defined $formatSize[$format]) {
- $et->WarnOnce("Unrecognized PhaseOne format type $format",1);
- $formatSize[$format] = 1;
- $formatName[$format] = 'undef';
+ my $size = Get32u($dataPt, $entry+$entrySize-8);
+ my $valuePtr = $entry + $entrySize - 4;
+ my ($formatSize, $formatStr, $value);
+ if ($entrySize == 16) {
+ # (format code only for the 16-byte IFD entry)
+ $formatSize = Get32u($dataPt, $entry+4);
+ $formatStr = $formatName[$formatSize];
+ unless ($formatStr) {
+ $et->WarnOnce("Unrecognized $ifdType format size $formatSize",1);
+ $formatSize = 1;
+ $formatStr = 'undef';
+ }
+ } elsif ($size %4) {
+ $formatSize = 1;
+ $formatStr = 'undef';
+ } else {
+ $formatSize = 4;
+ $formatStr = 'int32s';
}
- my $count = int($size / $formatSize[$format]);
- my $valuePtr = $entry + 12;
if ($size > 4) {
if ($size > 0x7fffffff) {
- $et->Warn("Invalid size for PhaseOne IFD entry $index");
+ $et->Warn("Invalid size for $ifdType IFD entry $index");
return 0;
}
$valuePtr = Get32u($dataPt, $valuePtr);
if ($valuePtr + $size > $dirLen) {
- $et->Warn(sprintf("Invalid offset 0x%.4x for PhaseOne IFD entry $index",$valuePtr));
+ $et->Warn(sprintf("Invalid offset 0x%.4x for $ifdType IFD entry $index",$valuePtr));
return 0;
}
$valuePtr += $dirStart;
}
my $tagInfo = $et->GetTagInfo($tagTablePtr, $tagID);
- my $formatStr = $formatName[$format];
if ($tagInfo) {
$formatStr = $$tagInfo{Format} if $$tagInfo{Format};
} else {
next unless $verbose or $htmlDump;
}
- my $value;
+ my $count = int($size / Image::ExifTool::FormatSize($formatStr));
if ($count > 100000 and not $binary) {
$value = \ "Binary data $size bytes";
} else {
$value = ReadValue($dataPt,$valuePtr,$formatStr,$count,$size);
- # PhaseOne uses the same format code for 'int32u' and 'float',
- # so assume that they may also use this for 'int32s'. grrr...
- if ($formatStr eq 'int32u') {
+ # try to distinguish between the various format types
+ if ($formatStr eq 'int32s') {
my ($val) = split ' ', $value;
- # assume signed if it looks like a negative integer
- if (($val & 0xff800000) == 0xff800000) {
- $formatStr = 'int32s';
- $value = ReadValue($dataPt,$valuePtr,$formatStr,$count,$size);
- } else {
+ if (defined $val) {
# get floating point exponent (has bias of 127)
my $exp = ($val & 0x7f800000) >> 23;
if ($exp > 120 and $exp < 140) {
@@ -496,7 +651,7 @@ sub ProcessPhaseOne($$$)
}
}
my %parms = (
- DirName => 'PhaseOne',
+ DirName => $ifdType,
Index => $index,
DataPt => $dataPt,
DataPos => $dataPos,
@@ -505,7 +660,8 @@ sub ProcessPhaseOne($$$)
Format => $formatStr,
Count => $count
);
- $htmlDump and HtmlDump($et, $tagTablePtr, $tagID, $value, $entry, 16, %parms);
+ $htmlDump and HtmlDump($et, $tagTablePtr, $tagID, $value, $entry, $entrySize,
+ %parms, Base => $dirStart);
$et->HandleTag($tagTablePtr, $tagID, $value, %parms);
}
return 1;
diff --git a/lib/Image/ExifTool/PostScript.pm b/lib/Image/ExifTool/PostScript.pm
index 1ca712ef..5d7ccc9d 100644
--- a/lib/Image/ExifTool/PostScript.pm
+++ b/lib/Image/ExifTool/PostScript.pm
@@ -16,7 +16,7 @@ use strict;
use vars qw($VERSION $AUTOLOAD);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.40';
+$VERSION = '1.41';
sub WritePS($$);
sub ProcessPS($$;$);
@@ -328,7 +328,10 @@ sub ProcessPS($$;$)
my ($data, $dos, $endDoc, $fontTable, $comment);
# allow read from data
- $raf = new File::RandomAccess($$dirInfo{DataPt}) unless $raf;
+ unless ($raf) {
+ $raf = new File::RandomAccess($$dirInfo{DataPt});
+ $et->VerboseDir('PostScript');
+ }
#
# determine if this is a postscript file
#
diff --git a/lib/Image/ExifTool/QuickTime.pm b/lib/Image/ExifTool/QuickTime.pm
index c8f22a67..0aa54a58 100644
--- a/lib/Image/ExifTool/QuickTime.pm
+++ b/lib/Image/ExifTool/QuickTime.pm
@@ -179,7 +179,7 @@ my %timeInfo = (
# so assume a time zero of Jan 1, 1970 if the date is before this
RawConv => q{
my $offset = (66 * 365 + 17) * 24 * 3600;
- return $val - $offset if $val >= $offset;
+ return $val - $offset if $val >= $offset or $$self{OPTIONS}{QuickTimeUTC};
$self->WarnOnce('Patched incorrect time zero for QuickTime date/time tag',1) if $val;
return $val;
},
diff --git a/lib/Image/ExifTool/README b/lib/Image/ExifTool/README
index e1b56b6c..b633c4fd 100644
--- a/lib/Image/ExifTool/README
+++ b/lib/Image/ExifTool/README
@@ -206,6 +206,8 @@ is an explanation of the meaning of each special key:
if the first argument is less than, equal to, or greater than
the second argument.
+ ENTRY_SIZE Used by ProcessPhaseOne to specify size of IFD entry
+
DATAMEMBER : BinaryData tables only. A reference to a list of sorted tag ID's
which must be extracted as data members when writing. Must also list "var_"
format tags and tags with Hook so offsets are properly calculated if the table
diff --git a/lib/Image/ExifTool/TagLookup.pm b/lib/Image/ExifTool/TagLookup.pm
index 99c160b4..b26d43c9 100644
--- a/lib/Image/ExifTool/TagLookup.pm
+++ b/lib/Image/ExifTool/TagLookup.pm
@@ -343,6 +343,8 @@ my @tableList = (
'Image::ExifTool::Pentax::TimeInfo',
'Image::ExifTool::Pentax::Type2',
'Image::ExifTool::Pentax::WBLevels',
+ 'Image::ExifTool::PhaseOne::Main',
+ 'Image::ExifTool::PhaseOne::SensorCalibration',
'Image::ExifTool::PhotoMechanic::SoftEdit',
'Image::ExifTool::PhotoMechanic::XMP',
'Image::ExifTool::Photoshop::JPEG_Quality',
@@ -464,37 +466,37 @@ my @tableList = (
# lookup for all writable tags
my %tagLookup = (
'aberrationcorrectiondistance' => { 97 => 0x69 },
- 'about' => { 415 => 'about' },
- 'aboutcvterm' => { 406 => 'AboutCvTerm' },
- 'aboutcvtermcvid' => { 406 => [\'AboutCvTerm','AboutCvTermCvId'] },
- 'aboutcvtermid' => { 406 => [\'AboutCvTerm','AboutCvTermCvTermId'] },
- 'aboutcvtermname' => { 406 => [\'AboutCvTerm','AboutCvTermCvTermName'] },
- 'aboutcvtermrefinedabout' => { 406 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] },
- 'abspeakaudiofilepath' => { 421 => 'absPeakAudioFilePath' },
+ 'about' => { 417 => 'about' },
+ 'aboutcvterm' => { 408 => 'AboutCvTerm' },
+ 'aboutcvtermcvid' => { 408 => [\'AboutCvTerm','AboutCvTermCvId'] },
+ 'aboutcvtermid' => { 408 => [\'AboutCvTerm','AboutCvTermCvTermId'] },
+ 'aboutcvtermname' => { 408 => [\'AboutCvTerm','AboutCvTermCvTermName'] },
+ 'aboutcvtermrefinedabout' => { 408 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] },
+ 'abspeakaudiofilepath' => { 423 => 'absPeakAudioFilePath' },
'accelerationtracking' => { 73 => 0x518 },
- 'accelerometer' => { 328 => 0x3 },
+ 'accelerometer' => { 330 => 0x3 },
'accelerometerx' => { 269 => 0x8d },
'accelerometery' => { 269 => 0x8e },
'accelerometerz' => { 269 => 0x8c },
'accessoryserialnumber' => { 269 => 0x54 },
'accessorytype' => { 269 => 0x53 },
- 'acedemicfield' => { 411 => 'acedemicField' },
+ 'acedemicfield' => { 413 => 'acedemicField' },
'actionadvised' => { 113 => 0x2a },
'activearea' => { 105 => 0xc68d },
'actived-lighting' => { 193 => 0x22, 227 => 0x24 },
'actived-lightingmode' => { 227 => 0x25 },
'adaptervoltage' => { 119 => 0x407 },
'addaspectratioinfo' => { 73 => 0x80e },
- 'additionalmodelinformation' => { 406 => 'AddlModelInfo' },
+ 'additionalmodelinformation' => { 408 => 'AddlModelInfo' },
'addoriginaldecisiondata' => { 73 => 0x80f, 74 => 0x11, 75 => 0x13, 78 => 0x14 },
'address' => { 140 => 'Address' },
- 'adjustmentmode' => { 334 => 0x15 },
+ 'adjustmentmode' => { 336 => 0x15 },
'adobe' => { 106 => 'Adobe' },
- 'adultcontentwarning' => { 409 => 'AdultContentWarning', 414 => 'adultContentWarning' },
+ 'adultcontentwarning' => { 411 => 'AdultContentWarning', 416 => 'adultContentWarning' },
'advancedfilter' => { 110 => 0x1201 },
'advancedraw' => { 229 => 0x76a43203 },
'advancedscenetype' => { 269 => 0x3d },
- 'advisory' => { 419 => 'Advisory' },
+ 'advisory' => { 421 => 'Advisory' },
'ae_iso' => { 276 => 0x2, 277 => 0x4, 278 => 0x12 },
'aeaperture' => { 276 => 0x1, 277 => 0x3, 278 => 0x11 },
'aeaperturesteps' => { 276 => 0x8, 277 => 0xb },
@@ -508,7 +510,7 @@ my %tagLookup = (
'aeexposuretime' => { 276 => 0x0, 277 => 0x2, 278 => 0x10 },
'aelbutton' => { 160 => 0x45 },
'aelexposureindicator' => { 160 => 0x51 },
- 'aelock' => { 160 => 0x5b, 238 => '4.2', 244 => '4.2', 249 => 0x201, 302 => 0x48, 341 => 0x40, 342 => 0x40, 343 => [0x86,0x286] },
+ 'aelock' => { 160 => 0x5b, 238 => '4.2', 244 => '4.2', 249 => 0x201, 302 => 0x48, 343 => 0x40, 344 => 0x40, 345 => [0x86,0x286] },
'aelockbutton' => { 236 => '16.1', 238 => '4.1', 239 => '15.1', 240 => '16.1', 241 => '16.1', 242 => '30.1', 243 => '16.1', 244 => '4.1', 246 => '17.1', 247 => '17.1' },
'aelockbuttonplusdials' => { 236 => '16.2', 242 => '32.1', 246 => '44.1' },
'aelockformb-d80' => { 247 => '3.1' },
@@ -521,12 +523,12 @@ my %tagLookup = (
'aeminaperture' => { 276 => 0xb, 277 => 0x12, 278 => 0x1e },
'aeminexposuretime' => { 276 => 0x5, 277 => 0x13, 278 => 0x1f },
'aeprogrammode' => { 276 => 0x6 },
- 'aeprojectlink' => { 395 => 'aeProjectLink' },
- 'aeprojectlinkcompositionid' => { 395 => [\'aeProjectLink','aeProjectLinkCompositionID'] },
- 'aeprojectlinkfullpath' => { 395 => [\'aeProjectLink','aeProjectLinkFullPath'] },
- 'aeprojectlinkrenderoutputmoduleindex' => { 395 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] },
- 'aeprojectlinkrenderqueueitemid' => { 395 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] },
- 'aeprojectlinkrendertimestamp' => { 395 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] },
+ 'aeprojectlink' => { 397 => 'aeProjectLink' },
+ 'aeprojectlinkcompositionid' => { 397 => [\'aeProjectLink','aeProjectLinkCompositionID'] },
+ 'aeprojectlinkfullpath' => { 397 => [\'aeProjectLink','aeProjectLinkFullPath'] },
+ 'aeprojectlinkrenderoutputmoduleindex' => { 397 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] },
+ 'aeprojectlinkrenderqueueitemid' => { 397 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] },
+ 'aeprojectlinkrendertimestamp' => { 397 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] },
'aesetting' => { 31 => 0x21 },
'aewhitebalance' => { 276 => 0xd },
'aexv' => { 276 => 0x3, 277 => 0x5 },
@@ -542,211 +544,211 @@ my %tagLookup = (
'afaperture' => { 189 => 0x5, 190 => 0x5 },
'afareaheight' => { 169 => 0x1a },
'afareaillumination' => { 160 => 0x4b, 244 => '15.3' },
- 'afareamode' => { 156 => 0x33, 160 => 0xe, 168 => 0x0, 169 => 0x5, 269 => 0xf, 325 => 0x1205, 335 => [0xa,0x3a], 341 => 0x11, 342 => 0x10, 343 => 0x24, 353 => 0xb043, 372 => 0x17 },
- 'afareamodesetting' => { 238 => '11.1', 239 => '0.1', 244 => '16.1', 247 => '2.1', 353 => 0x201c },
+ 'afareamode' => { 156 => 0x33, 160 => 0xe, 168 => 0x0, 169 => 0x5, 269 => 0xf, 327 => 0x1205, 337 => [0xa,0x3a], 343 => 0x11, 344 => 0x10, 345 => 0x24, 355 => 0xb043, 374 => 0x17 },
+ 'afareamodesetting' => { 238 => '11.1', 239 => '0.1', 244 => '16.1', 247 => '2.1', 355 => 0x201c },
'afareas' => { 249 => 0x304 },
'afareaselectmethod' => { 73 => 0x51b },
'afareawidth' => { 169 => 0x18 },
- 'afareaxposition' => { 169 => 0x14, 325 => 0x1203 },
- 'afareaxposition1' => { 325 => 0x1201 },
- 'afareayposition' => { 169 => 0x16, 325 => 0x1204 },
- 'afareayposition1' => { 325 => 0x1202 },
+ 'afareaxposition' => { 169 => 0x14, 327 => 0x1203 },
+ 'afareaxposition1' => { 327 => 0x1201 },
+ 'afareayposition' => { 169 => 0x16, 327 => 0x1204 },
+ 'afareayposition1' => { 327 => 0x1202 },
'afassist' => { 71 => 0x5, 79 => 0x5, 160 => 0x48, 236 => '2.5', 238 => '0.2', 239 => '0.2', 240 => '1.1', 241 => '1.1', 242 => '2.4', 243 => '1.4', 244 => '0.2', 246 => '2.4', 247 => '2.3' },
'afassistbeam' => { 73 => 0x50e, 74 => 0x4, 75 => 0x5, 76 => 0x4, 77 => 0x4, 78 => 0x5 },
'afassistlamp' => { 269 => 0x31 },
- 'afbuttonpressed' => { 343 => [0x83,0x283] },
+ 'afbuttonpressed' => { 345 => [0x83,0x283] },
'afconfigtool' => { 2 => 0x1 },
'afdefocus' => { 279 => 0x6 },
'afduringliveview' => { 73 => 0x511 },
- 'affinea' => { 389 => 'AffineA' },
- 'affineb' => { 389 => 'AffineB' },
- 'affinec' => { 389 => 'AffineC' },
- 'affined' => { 389 => 'AffineD' },
+ 'affinea' => { 391 => 'AffineA' },
+ 'affineb' => { 391 => 'AffineB' },
+ 'affinec' => { 391 => 'AffineC' },
+ 'affined' => { 391 => 'AffineD' },
'affinetune' => { 170 => 0x0, 249 => 0x306 },
'affinetuneadj' => { 170 => 0x2, 202 => 0x2d1, 203 => 0x2dc, 249 => 0x307 },
'affinetuneindex' => { 170 => 0x1 },
- 'affinex' => { 389 => 'AffineX' },
- 'affiney' => { 389 => 'AffineY' },
+ 'affinex' => { 391 => 'AffineX' },
+ 'affiney' => { 391 => 'AffineY' },
'afhold' => { 279 => 0x1fd },
- 'afilluminator' => { 341 => 0x29, 353 => 0xb044 },
+ 'afilluminator' => { 343 => 0x29, 355 => 0xb044 },
'afimageheight' => { 169 => 0x12 },
'afimagewidth' => { 169 => 0x10 },
'afintegrationtime' => { 279 => 0x7 },
- 'afmicroadj' => { 335 => [0x17d,0x50] },
- 'afmicroadjmode' => { 3 => 0x1, 338 => 0x131 },
- 'afmicroadjregisteredlenses' => { 338 => '305.1' },
+ 'afmicroadj' => { 337 => [0x17d,0x50] },
+ 'afmicroadjmode' => { 3 => 0x1, 340 => 0x131 },
+ 'afmicroadjregisteredlenses' => { 340 => '305.1' },
'afmicroadjustment' => { 73 => 0x507 },
- 'afmicroadjvalue' => { 3 => 0x2, 338 => 0x130 },
- 'afmode' => { 101 => 0x3009, 110 => 0x1022, 156 => 0x16, 334 => 0x5 },
+ 'afmicroadjvalue' => { 3 => 0x2, 340 => 0x130 },
+ 'afmode' => { 101 => 0x3009, 110 => 0x1022, 156 => 0x16, 336 => 0x5 },
'afmoderestrictions' => { 237 => '50.3', 246 => '48.3' },
'afonaelockbuttonswitch' => { 73 => 0x702 },
'afonbutton' => { 236 => '3.1', 237 => '47.1' },
- 'afpoint' => { 31 => 0x13, 100 => 0x18, 156 => 0x15, 168 => 0x1, 252 => 0x308, 334 => 0x1f, 335 => 0x7, 338 => 0x19, 339 => 0x18, 340 => [0x18,0x20] },
+ 'afpoint' => { 31 => 0x13, 100 => 0x18, 156 => 0x15, 168 => 0x1, 252 => 0x308, 336 => 0x1f, 337 => 0x7, 340 => 0x19, 341 => 0x18, 342 => [0x18,0x20] },
'afpointactivationarea' => { 72 => 0x11, 78 => 0x11 },
'afpointareaexpansion' => { 73 => 0x508 },
- 'afpointatshutterrelease' => { 335 => 0x9 },
+ 'afpointatshutterrelease' => { 337 => 0x9 },
'afpointautoselection' => { 73 => 0x50b },
'afpointbrightness' => { 73 => 0x50d, 236 => '2.4', 237 => '46.5', 246 => '2.3' },
'afpointdisplayduringfocus' => { 73 => 0x50c },
'afpointillumination' => { 72 => 0xa, 236 => '2.3', 237 => '46.2', 242 => '2.3', 243 => '1.3', 246 => '47.2', 247 => '2.4' },
- 'afpointinfocus' => { 335 => 0x8 },
+ 'afpointinfocus' => { 337 => 0x8 },
'afpointmode' => { 283 => 0x3 },
'afpointposition' => { 101 => 0x2021, 269 => 0x4d },
'afpointregistration' => { 71 => 0x7 },
'afpoints' => { 159 => 0x10 },
- 'afpointselected' => { 160 => 0xd, 249 => 0x305, 302 => 0xe, 338 => 0x15, 339 => 0x14, 340 => [0x14,0x1c], 353 => 0x201e },
+ 'afpointselected' => { 160 => 0xd, 249 => 0x305, 302 => 0xe, 340 => 0x15, 341 => 0x14, 342 => [0x14,0x1c], 355 => 0x201e },
'afpointselected2' => { 283 => 0x4 },
'afpointselection' => { 72 => 0xb, 236 => '1.3', 237 => '1.3', 242 => '1.3', 246 => '1.3' },
'afpointselectionmethod' => { 73 => 0x50f, 74 => 0xc, 75 => 0xd, 78 => 0xd },
- 'afpointsetting' => { 341 => 0x12, 342 => 0x11 },
+ 'afpointsetting' => { 343 => 0x12, 344 => 0x11 },
'afpointsinfocus' => { 67 => 0xe, 168 => 0x2, 279 => 0xb, 302 => [0xf,0x3c] },
'afpointsinfocus5d' => { 18 => 0x38 },
'afpointspotmetering' => { 72 => 0xd },
- 'afpointsselected' => { 379 => 0x4 },
+ 'afpointsselected' => { 381 => 0x4 },
'afpointsunknown1' => { 279 => 0x0 },
'afpointsunknown2' => { 279 => 0x2 },
- 'afpointsused' => { 169 => 0x8, 335 => 0x16e },
+ 'afpointsused' => { 169 => 0x8, 337 => 0x16e },
'afpointswitching' => { 2 => 0x4 },
'afpredictor' => { 279 => 0x4 },
'afresponse' => { 193 => 0xad },
'afresult' => { 254 => 0x1038 },
'afsearch' => { 249 => 0x303 },
'afsensoractive' => { 156 => 0x1 },
- 'afstatus' => { 325 => 0x1200 },
- 'afstatusactivesensor' => { 156 => 0x2, 335 => 0x4, 338 => 0x1e, 339 => 0x1b, 340 => [0x1b,0x21] },
- 'afstatusbottom' => { 156 => 0x8, 338 => 0x2a, 339 => 0x21, 340 => 0x21 },
- 'afstatusbottom-left' => { 156 => 0x12, 339 => 0x2b, 340 => 0x2b },
- 'afstatusbottom-right' => { 156 => 0x6, 339 => 0x1f, 340 => 0x1f },
- 'afstatusbottomassist-left' => { 338 => 0x28 },
- 'afstatusbottomassist-right' => { 338 => 0x2c },
- 'afstatusbottomhorizontal' => { 336 => 0x10, 337 => 0x1c },
- 'afstatusbottomvertical' => { 336 => 0x16, 337 => 0x26 },
- 'afstatuscenter-10' => { 338 => 0x34 },
- 'afstatuscenter-11' => { 338 => 0x36 },
- 'afstatuscenter-12' => { 338 => 0x38 },
- 'afstatuscenter-14' => { 338 => 0x3c },
- 'afstatuscenter-7' => { 338 => 0x2e },
- 'afstatuscenter-9' => { 338 => 0x32 },
- 'afstatuscenter-horizontal' => { 338 => 0x30 },
- 'afstatuscenter-vertical' => { 338 => 0x3a },
- 'afstatuscenterf2-8' => { 338 => 0x4c },
- 'afstatuscenterhorizontal' => { 156 => 0x2f, 336 => 0xc, 337 => 0x18, 339 => 0x2f, 340 => 0x2f },
- 'afstatuscentervertical' => { 156 => 0xc, 336 => 0x14, 337 => 0x22, 339 => 0x25, 340 => 0x25 },
- 'afstatusfarleft' => { 336 => 0x6, 338 => 0x26 },
- 'afstatusfarlefthorizontal' => { 337 => 0x4 },
- 'afstatusfarleftvertical' => { 337 => 0x12 },
- 'afstatusfarright' => { 336 => 0x18, 338 => 0x44 },
- 'afstatusfarrighthorizontal' => { 337 => 0x2c },
- 'afstatusfarrightvertical' => { 337 => 0x34 },
- 'afstatusleft' => { 156 => 0x2d, 336 => 0x2, 338 => 0x22, 339 => 0x2d, 340 => 0x2d },
- 'afstatuslefthorizontal' => { 337 => 0x6 },
- 'afstatusleftvertical' => { 337 => 0xe },
- 'afstatuslower-left' => { 336 => 0x4, 338 => 0x24 },
- 'afstatuslower-lefthorizontal' => { 337 => 0xa },
- 'afstatuslower-leftvertical' => { 337 => 0x10 },
- 'afstatuslower-middle' => { 336 => 0x22, 337 => 0x24 },
- 'afstatuslower-right' => { 336 => 0x1e, 338 => 0x4a },
- 'afstatuslower-righthorizontal' => { 337 => 0x32 },
- 'afstatuslower-rightvertical' => { 337 => 0x3a },
- 'afstatuslowerfarleft' => { 337 => 0x8 },
- 'afstatuslowerfarright' => { 337 => 0x30 },
- 'afstatusmiddlehorizontal' => { 156 => 0xa, 339 => 0x23, 340 => 0x23 },
- 'afstatusnearleft' => { 336 => 0xe, 337 => 0x1a },
- 'afstatusnearright' => { 336 => 0xa, 337 => 0x16 },
- 'afstatusright' => { 156 => 0x31, 336 => 0x1c, 338 => 0x48, 339 => 0x31, 340 => 0x31 },
- 'afstatusrighthorizontal' => { 337 => 0x2e },
- 'afstatusrightvertical' => { 337 => 0x38 },
- 'afstatustop' => { 156 => 0xe, 338 => 0x40, 339 => 0x27, 340 => 0x27 },
- 'afstatustop-left' => { 156 => 0x10, 339 => 0x29, 340 => 0x29 },
- 'afstatustop-right' => { 156 => 0x4, 339 => 0x1d, 340 => 0x1d },
- 'afstatustopassist-left' => { 338 => 0x3e },
- 'afstatustopassist-right' => { 338 => 0x42 },
- 'afstatustophorizontal' => { 336 => 0x8, 337 => 0x14 },
- 'afstatustopvertical' => { 336 => 0x12, 337 => 0x1e },
- 'afstatusupper-left' => { 336 => 0x0, 338 => 0x20 },
- 'afstatusupper-lefthorizontal' => { 337 => 0x2 },
- 'afstatusupper-leftvertical' => { 337 => 0xc },
- 'afstatusupper-middle' => { 336 => 0x20, 337 => 0x20 },
- 'afstatusupper-right' => { 336 => 0x1a, 338 => 0x46 },
- 'afstatusupper-righthorizontal' => { 337 => 0x2a },
- 'afstatusupper-rightvertical' => { 337 => 0x36 },
- 'afstatusupperfarleft' => { 337 => 0x0 },
- 'afstatusupperfarright' => { 337 => 0x28 },
+ 'afstatus' => { 327 => 0x1200 },
+ 'afstatusactivesensor' => { 156 => 0x2, 337 => 0x4, 340 => 0x1e, 341 => 0x1b, 342 => [0x1b,0x21] },
+ 'afstatusbottom' => { 156 => 0x8, 340 => 0x2a, 341 => 0x21, 342 => 0x21 },
+ 'afstatusbottom-left' => { 156 => 0x12, 341 => 0x2b, 342 => 0x2b },
+ 'afstatusbottom-right' => { 156 => 0x6, 341 => 0x1f, 342 => 0x1f },
+ 'afstatusbottomassist-left' => { 340 => 0x28 },
+ 'afstatusbottomassist-right' => { 340 => 0x2c },
+ 'afstatusbottomhorizontal' => { 338 => 0x10, 339 => 0x1c },
+ 'afstatusbottomvertical' => { 338 => 0x16, 339 => 0x26 },
+ 'afstatuscenter-10' => { 340 => 0x34 },
+ 'afstatuscenter-11' => { 340 => 0x36 },
+ 'afstatuscenter-12' => { 340 => 0x38 },
+ 'afstatuscenter-14' => { 340 => 0x3c },
+ 'afstatuscenter-7' => { 340 => 0x2e },
+ 'afstatuscenter-9' => { 340 => 0x32 },
+ 'afstatuscenter-horizontal' => { 340 => 0x30 },
+ 'afstatuscenter-vertical' => { 340 => 0x3a },
+ 'afstatuscenterf2-8' => { 340 => 0x4c },
+ 'afstatuscenterhorizontal' => { 156 => 0x2f, 338 => 0xc, 339 => 0x18, 341 => 0x2f, 342 => 0x2f },
+ 'afstatuscentervertical' => { 156 => 0xc, 338 => 0x14, 339 => 0x22, 341 => 0x25, 342 => 0x25 },
+ 'afstatusfarleft' => { 338 => 0x6, 340 => 0x26 },
+ 'afstatusfarlefthorizontal' => { 339 => 0x4 },
+ 'afstatusfarleftvertical' => { 339 => 0x12 },
+ 'afstatusfarright' => { 338 => 0x18, 340 => 0x44 },
+ 'afstatusfarrighthorizontal' => { 339 => 0x2c },
+ 'afstatusfarrightvertical' => { 339 => 0x34 },
+ 'afstatusleft' => { 156 => 0x2d, 338 => 0x2, 340 => 0x22, 341 => 0x2d, 342 => 0x2d },
+ 'afstatuslefthorizontal' => { 339 => 0x6 },
+ 'afstatusleftvertical' => { 339 => 0xe },
+ 'afstatuslower-left' => { 338 => 0x4, 340 => 0x24 },
+ 'afstatuslower-lefthorizontal' => { 339 => 0xa },
+ 'afstatuslower-leftvertical' => { 339 => 0x10 },
+ 'afstatuslower-middle' => { 338 => 0x22, 339 => 0x24 },
+ 'afstatuslower-right' => { 338 => 0x1e, 340 => 0x4a },
+ 'afstatuslower-righthorizontal' => { 339 => 0x32 },
+ 'afstatuslower-rightvertical' => { 339 => 0x3a },
+ 'afstatuslowerfarleft' => { 339 => 0x8 },
+ 'afstatuslowerfarright' => { 339 => 0x30 },
+ 'afstatusmiddlehorizontal' => { 156 => 0xa, 341 => 0x23, 342 => 0x23 },
+ 'afstatusnearleft' => { 338 => 0xe, 339 => 0x1a },
+ 'afstatusnearright' => { 338 => 0xa, 339 => 0x16 },
+ 'afstatusright' => { 156 => 0x31, 338 => 0x1c, 340 => 0x48, 341 => 0x31, 342 => 0x31 },
+ 'afstatusrighthorizontal' => { 339 => 0x2e },
+ 'afstatusrightvertical' => { 339 => 0x38 },
+ 'afstatustop' => { 156 => 0xe, 340 => 0x40, 341 => 0x27, 342 => 0x27 },
+ 'afstatustop-left' => { 156 => 0x10, 341 => 0x29, 342 => 0x29 },
+ 'afstatustop-right' => { 156 => 0x4, 341 => 0x1d, 342 => 0x1d },
+ 'afstatustopassist-left' => { 340 => 0x3e },
+ 'afstatustopassist-right' => { 340 => 0x42 },
+ 'afstatustophorizontal' => { 338 => 0x8, 339 => 0x14 },
+ 'afstatustopvertical' => { 338 => 0x12, 339 => 0x1e },
+ 'afstatusupper-left' => { 338 => 0x0, 340 => 0x20 },
+ 'afstatusupper-lefthorizontal' => { 339 => 0x2 },
+ 'afstatusupper-leftvertical' => { 339 => 0xc },
+ 'afstatusupper-middle' => { 338 => 0x20, 339 => 0x20 },
+ 'afstatusupper-right' => { 338 => 0x1a, 340 => 0x46 },
+ 'afstatusupper-righthorizontal' => { 339 => 0x2a },
+ 'afstatusupper-rightvertical' => { 339 => 0x36 },
+ 'afstatusupperfarleft' => { 339 => 0x0 },
+ 'afstatusupperfarright' => { 339 => 0x28 },
'aftrackingsensitivity' => { 2 => 0x2 },
- 'aftype' => { 335 => 0x2 },
- 'afwithshutter' => { 341 => 0x2a },
- 'afzoneselected' => { 353 => 0x201e },
- 'aggregateissuenumber' => { 411 => 'aggregateIssueNumber' },
- 'aggregationtype' => { 411 => 'aggregationType' },
- 'agreement' => { 414 => 'agreement' },
+ 'aftype' => { 337 => 0x2 },
+ 'afwithshutter' => { 343 => 0x2a },
+ 'afzoneselected' => { 355 => 0x201e },
+ 'aggregateissuenumber' => { 413 => 'aggregateIssueNumber' },
+ 'aggregationtype' => { 413 => 'aggregationType' },
+ 'agreement' => { 416 => 'agreement' },
'aiservocontinuousshooting' => { 72 => 0x15 },
'aiservofirstimagepriority' => { 73 => 0x519 },
'aiservoimagepriority' => { 73 => 0x503 },
'aiservosecondimagepriority' => { 73 => 0x51a },
'aiservotrackingmethod' => { 73 => 0x504 },
'aiservotrackingsensitivity' => { 72 => 0x14, 73 => 0x502 },
- 'album' => { 421 => 'album' },
- 'alreadyapplied' => { 396 => 'AlreadyApplied' },
- 'alternatetitle' => { 411 => 'alternateTitle' },
- 'alternatetitlea-lang' => { 411 => [\'alternateTitle','alternateTitleA-lang'] },
- 'alternatetitlea-platform' => { 411 => [\'alternateTitle','alternateTitleA-platform'] },
- 'alternatetitletext' => { 411 => [\'alternateTitle','alternateTitleText'] },
+ 'album' => { 423 => 'album' },
+ 'alreadyapplied' => { 398 => 'AlreadyApplied' },
+ 'alternatetitle' => { 413 => 'alternateTitle' },
+ 'alternatetitlea-lang' => { 413 => [\'alternateTitle','alternateTitleA-lang'] },
+ 'alternatetitlea-platform' => { 413 => [\'alternateTitle','alternateTitleA-platform'] },
+ 'alternatetitletext' => { 413 => [\'alternateTitle','alternateTitleText'] },
'altitude' => { 171 => 0x6 },
- 'alttapename' => { 421 => 'altTapeName' },
- 'alttimecode' => { 421 => 'altTimecode' },
- 'alttimecodetimeformat' => { 421 => [\'altTimecode','altTimecodeTimeFormat'] },
- 'alttimecodetimevalue' => { 421 => [\'altTimecode','altTimecodeTimeValue'] },
- 'alttimecodevalue' => { 421 => [\'altTimecode','altTimecodeValue'] },
+ 'alttapename' => { 423 => 'altTapeName' },
+ 'alttimecode' => { 423 => 'altTimecode' },
+ 'alttimecodetimeformat' => { 423 => [\'altTimecode','altTimecodeTimeFormat'] },
+ 'alttimecodetimevalue' => { 423 => [\'altTimecode','altTimecodeTimeValue'] },
+ 'alttimecodevalue' => { 423 => [\'altTimecode','altTimecodeValue'] },
'ambienceselection' => { 4 => 0x1 },
- 'ambienttemperature' => { 321 => 0x14, 372 => 0x4 },
- 'ambienttemperaturefahrenheit' => { 321 => 0x13 },
+ 'ambienttemperature' => { 323 => 0x14, 374 => 0x4 },
+ 'ambienttemperaturefahrenheit' => { 323 => 0x13 },
'analogbalance' => { 105 => 0xc627 },
'angleadj' => { 91 => 0x10003, 97 => 0x8b },
- 'angleinforoll' => { 391 => 'AngleInfoRoll' },
- 'angleinfoyaw' => { 391 => 'AngleInfoYaw' },
- 'anti-blur' => { 353 => 0xb04b },
+ 'angleinforoll' => { 393 => 'AngleInfoRoll' },
+ 'angleinfoyaw' => { 393 => 'AngleInfoYaw' },
+ 'anti-blur' => { 355 => 0xb04b },
'antialiasstrength' => { 105 => 0xc632 },
'aperturelock' => { 237 => '38.2', 246 => '38.2' },
'aperturerange' => { 73 => 0x10d },
'apertureringuse' => { 283 => '1.4' },
- 'aperturesetting' => { 160 => 0x7, 341 => 0x30, 342 => 0x29, 343 => 0x1 },
- 'aperturevalue' => { 82 => 0x2, 105 => 0x9202, 254 => 0x1002, 400 => 'ApertureValue' },
+ 'aperturesetting' => { 160 => 0x7, 343 => 0x30, 344 => 0x29, 345 => 0x1 },
+ 'aperturevalue' => { 82 => 0x2, 105 => 0x9202, 254 => 0x1002, 311 => 0x401, 402 => 'ApertureValue' },
'applekeywords' => { 258 => 'AAPL:Keywords' },
'applicationnotes' => { 105 => 0x2bc, 273 => 0x2bc },
'applicationrecordversion' => { 113 => 0x0 },
'applyshootingmeteringmode' => { 73 => 0x10e },
- 'approved' => { 402 => 'Approved' },
- 'approvedby' => { 402 => 'ApprovedBy' },
+ 'approved' => { 404 => 'Approved' },
+ 'approvedby' => { 404 => 'ApprovedBy' },
'approximatefnumber' => { 265 => 0x313, 271 => 0x3406 },
- 'approximatefocusdistance' => { 392 => 'ApproximateFocusDistance' },
+ 'approximatefocusdistance' => { 394 => 'ApproximateFocusDistance' },
'aquahsl' => { 91 => 0x20913 },
'armidentifier' => { 114 => 0x78 },
'armversion' => { 114 => 0x7a },
'artfilter' => { 249 => 0x529 },
'artfiltereffect' => { 249 => 0x52f },
- 'artist' => { 105 => 0x13b, 261 => 'Artist', 302 => 0x22e, 417 => 'Artist', 421 => 'artist' },
+ 'artist' => { 105 => 0x13b, 261 => 'Artist', 302 => 0x22e, 419 => 'Artist', 423 => 'artist' },
'artmode' => { 101 => 0x301b },
'artmodeparameters' => { 101 => 0x310b },
- 'artworkcircadatecreated' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] },
- 'artworkcontributiondescription' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] },
- 'artworkcopyrightnotice' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] },
- 'artworkcopyrightownerid' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] },
- 'artworkcopyrightownername' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] },
- 'artworkcreator' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] },
- 'artworkcreatorid' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] },
- 'artworkdatecreated' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] },
- 'artworklicensorid' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] },
- 'artworklicensorname' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] },
- 'artworkorobject' => { 406 => 'ArtworkOrObject' },
- 'artworkphysicaldescription' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] },
- 'artworkscontentdescription' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] },
- 'artworksource' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] },
- 'artworksourceinventoryno' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] },
- 'artworksourceinvurl' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] },
- 'artworkstyleperiod' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] },
- 'artworktitle' => { 406 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] },
+ 'artworkcircadatecreated' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] },
+ 'artworkcontributiondescription' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] },
+ 'artworkcopyrightnotice' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] },
+ 'artworkcopyrightownerid' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] },
+ 'artworkcopyrightownername' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] },
+ 'artworkcreator' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] },
+ 'artworkcreatorid' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] },
+ 'artworkdatecreated' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] },
+ 'artworklicensorid' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] },
+ 'artworklicensorname' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] },
+ 'artworkorobject' => { 408 => 'ArtworkOrObject' },
+ 'artworkphysicaldescription' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] },
+ 'artworkscontentdescription' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] },
+ 'artworksource' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] },
+ 'artworksourceinventoryno' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] },
+ 'artworksourceinvurl' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] },
+ 'artworkstyleperiod' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] },
+ 'artworktitle' => { 408 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] },
'aspectframe' => { 253 => 0x1113 },
- 'aspectratio' => { 5 => 0x0, 253 => 0x1112, 302 => 0x80, 341 => 0x55, 342 => 0x55, 343 => 0xa },
+ 'aspectratio' => { 5 => 0x0, 253 => 0x1112, 302 => 0x80, 343 => 0x55, 344 => 0x55, 345 => 0xa },
'asshoticcprofile' => { 105 => 0xc68f },
'asshotneutral' => { 105 => 0xc628 },
'asshotpreprofilematrix' => { 105 => 0xc690 },
@@ -757,51 +759,51 @@ my %tagLookup = (
'assignmovierecordbutton' => { 237 => '43.2', 246 => '45.1' },
'assignremotefnbutton' => { 237 => '54.1', 246 => '51.1' },
'assistbuttonfunction' => { 71 => 0xd },
- 'attributionname' => { 393 => 'attributionName' },
- 'attributionurl' => { 393 => 'attributionURL' },
+ 'attributionname' => { 395 => 'attributionName' },
+ 'attributionurl' => { 395 => 'attributionURL' },
'audio' => { 269 => 0x20 },
'audiobitrate' => { 58 => 0x6c },
'audiochannels' => { 58 => 0x70 },
- 'audiochanneltype' => { 421 => 'audioChannelType' },
+ 'audiochanneltype' => { 423 => 'audioChannelType' },
'audiocompression' => { 134 => 'Compression' },
- 'audiocompressor' => { 421 => 'audioCompressor' },
+ 'audiocompressor' => { 423 => 'audioCompressor' },
'audioduration' => { 113 => 0x99 },
- 'audiomoddate' => { 421 => 'audioModDate' },
+ 'audiomoddate' => { 423 => 'audioModDate' },
'audiooutcue' => { 113 => 0x9a },
- 'audiosamplerate' => { 58 => 0x6e, 421 => 'audioSampleRate' },
- 'audiosampletype' => { 421 => 'audioSampleType' },
+ 'audiosamplerate' => { 58 => 0x6e, 423 => 'audioSampleRate' },
+ 'audiosampletype' => { 423 => 'audioSampleType' },
'audiosamplingrate' => { 113 => 0x97 },
'audiosamplingresolution' => { 113 => 0x98 },
'audiotype' => { 113 => 0x96 },
- 'author' => { 136 => 'Author', 258 => 'Author', 261 => 'Author', 316 => 'Author', 390 => 'author', 407 => 'Author', 419 => 'Author' },
- 'authorsposition' => { 408 => 'AuthorsPosition' },
+ 'author' => { 136 => 'Author', 258 => 'Author', 261 => 'Author', 318 => 'Author', 392 => 'author', 409 => 'Author', 421 => 'Author' },
+ 'authorsposition' => { 410 => 'AuthorsPosition' },
'autoaperture' => { 293 => '0.1' },
- 'autobracket' => { 334 => 0x19 },
- 'autobracketing' => { 110 => 0x1100, 302 => 0x18, 325 => 0x1007 },
+ 'autobracket' => { 336 => 0x19 },
+ 'autobracketing' => { 110 => 0x1100, 302 => 0x18, 327 => 0x1007 },
'autobracketingmode' => { 245 => '12.3' },
'autobracketingset' => { 245 => '12.1' },
'autobracketmodem' => { 236 => '21.2', 237 => '13.3', 242 => '26.2', 246 => '13.3' },
'autobracketorder' => { 160 => 0x43, 236 => '21.3', 237 => '13.2', 242 => '26.3', 243 => '12.2', 244 => '2.2', 245 => '12.2', 246 => '13.2', 247 => '13.2' },
'autobracketset' => { 236 => '21.1', 237 => '13.1', 239 => '11.1', 240 => '12.1', 241 => '12.1', 242 => '26.1', 243 => '12.1', 244 => '2.1', 246 => '13.1', 247 => '13.1' },
- 'autobrightness' => { 396 => 'AutoBrightness' },
- 'autocontrast' => { 396 => 'AutoContrast' },
+ 'autobrightness' => { 398 => 'AutoBrightness' },
+ 'autocontrast' => { 398 => 'AutoContrast' },
'autodistortioncontrol' => { 179 => 0x4 },
'autodynamicrange' => { 110 => 0x140b },
- 'autoexposure' => { 396 => 'AutoExposure' },
+ 'autoexposure' => { 398 => 'AutoExposure' },
'autoexposurebracketing' => { 67 => 0x10 },
'autofocus' => { 252 => 0x209 },
'autofp' => { 244 => '7.3', 247 => '31.4' },
'autoiso' => { 67 => 0x1, 101 => 0x3008, 238 => '1.1', 244 => '1.1' },
'autoisomax' => { 238 => '1.2', 244 => '1.2' },
'autoisominshutterspeed' => { 238 => '1.3', 244 => '1.3' },
- 'autolateralca' => { 396 => 'AutoLateralCA' },
+ 'autolateralca' => { 398 => 'AutoLateralCA' },
'autolightingoptimizer' => { 15 => 0xbe, 16 => 0xbf, 19 => 0xbf, 54 => 0x2, 73 => 0x204, 91 => 0x20500, 97 => 0x6f },
'autolightingoptimizeron' => { 91 => '0x20500.0', 97 => 0x6e },
- 'autoportraitframed' => { 353 => 0x2016 },
+ 'autoportraitframed' => { 355 => 0x2016 },
'autoredeye' => { 229 => 0xfe28a44f },
'autorotate' => { 67 => 0x1b },
- 'autoshadows' => { 396 => 'AutoShadows' },
- 'autowhiteversion' => { 396 => 'AutoWhiteVersion' },
+ 'autoshadows' => { 398 => 'AutoShadows' },
+ 'autowhiteversion' => { 398 => 'AutoWhiteVersion' },
'auxiliarylens' => { 193 => 0x82 },
'avaperturesetting' => { 283 => 0x13 },
'averageblacklevel' => { 38 => 0xe7, 40 => 0xfb, 41 => 0x114, 42 => 0x146 },
@@ -810,32 +812,32 @@ my %tagLookup = (
'azimuth' => { 144 => 'Azimuth' },
'babyage' => { 269 => [0x8010,0x33] },
'babyname' => { 269 => 0x66 },
- 'backgroundalpha' => { 416 => 'bgalpha' },
+ 'backgroundalpha' => { 418 => 'bgalpha' },
'baseexposurecompensation' => { 283 => 0x15 },
- 'baseiso' => { 67 => 0x2, 86 => 0x101c, 119 => 0x903, 271 => 0x312a, 377 => 0x6 },
+ 'baseiso' => { 67 => 0x2, 86 => 0x101c, 119 => 0x903, 271 => 0x312a, 379 => 0x6 },
'baselineexposure' => { 105 => 0xc62a },
'baselineexposureoffset' => { 105 => 0xc7a5 },
'baselinenoise' => { 105 => 0xc62b },
'baselinesharpness' => { 105 => 0xc62c },
- 'baseurl' => { 419 => 'BaseURL' },
- 'batterylevel' => { 341 => 0x51, 345 => 0xc, 346 => 0x4, 347 => 0x4, 378 => 0x7 },
- 'batterylevelgrip1' => { 378 => 0x6 },
- 'batterylevelgrip2' => { 378 => 0x8 },
+ 'baseurl' => { 421 => 'BaseURL' },
+ 'batterylevel' => { 343 => 0x51, 347 => 0xc, 348 => 0x4, 349 => 0x4, 380 => 0x7 },
+ 'batterylevelgrip1' => { 380 => 0x6 },
+ 'batterylevelgrip2' => { 380 => 0x8 },
'batteryorder' => { 236 => '12.5', 242 => '13.2', 243 => '2.1', 246 => '3.1' },
- 'batterystate' => { 160 => 0x60, 341 => 0x50, 347 => 0x14 },
- 'batterytemperature' => { 345 => 0x1, 347 => 0x2, 378 => 0x5 },
- 'batteryunknown' => { 345 => 0x2, 347 => 0x0 },
- 'batteryvoltage' => { 119 => 0x408, 321 => 0x2a, 345 => 0x8 },
- 'batteryvoltage1' => { 347 => 0x6 },
- 'batteryvoltage2' => { 347 => 0x8 },
+ 'batterystate' => { 160 => 0x60, 343 => 0x50, 349 => 0x14 },
+ 'batterytemperature' => { 347 => 0x1, 349 => 0x2, 380 => 0x5 },
+ 'batteryunknown' => { 347 => 0x2, 349 => 0x0 },
+ 'batteryvoltage' => { 119 => 0x408, 323 => 0x2a, 347 => 0x8 },
+ 'batteryvoltage1' => { 349 => 0x6 },
+ 'batteryvoltage2' => { 349 => 0x8 },
'bayergreensplit' => { 105 => 0xc62d },
'bayerpattern' => { 118 => 0xf902, 164 => 0x17 },
- 'beatspliceparams' => { 421 => 'beatSpliceParams' },
- 'beatspliceparamsriseindecibel' => { 421 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] },
- 'beatspliceparamsriseintimeduration' => { 421 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] },
- 'beatspliceparamsriseintimedurationscale' => { 421 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] },
- 'beatspliceparamsriseintimedurationvalue' => { 421 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] },
- 'beatspliceparamsusefilebeatsmarker' => { 421 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] },
+ 'beatspliceparams' => { 423 => 'beatSpliceParams' },
+ 'beatspliceparamsriseindecibel' => { 423 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] },
+ 'beatspliceparamsriseintimeduration' => { 423 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] },
+ 'beatspliceparamsriseintimedurationscale' => { 423 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] },
+ 'beatspliceparamsriseintimedurationvalue' => { 423 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] },
+ 'beatspliceparamsusefilebeatsmarker' => { 423 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] },
'beep' => { 236 => '13.1', 237 => '5.4', 238 => '0.1', 239 => '2.1', 240 => '3.1', 241 => '3.1', 242 => '10.1', 244 => '0.1', 246 => '5.5', 247 => '4.1' },
'beeppitch' => { 243 => '3.1' },
'beepvolume' => { 243 => '4.5' },
@@ -843,28 +845,29 @@ my %tagLookup = (
'bestshotmode' => { 101 => 0x3007 },
'bitdepth' => { 141 => 'BitDepth', 164 => 0x11, 199 => 0x41 },
'bitspercomponent' => { 115 => 0x87 },
- 'bitspersample' => { 105 => 0x102, 417 => 'BitsPerSample' },
- 'blacklevel' => { 105 => 0xc61a, 193 => 0x3d, 254 => [0x401,0x1012] },
+ 'bitspersample' => { 105 => 0x102, 419 => 'BitsPerSample' },
+ 'blacklevel' => { 105 => 0xc61a, 193 => 0x3d, 254 => [0x401,0x1012], 311 => 0x21d },
'blacklevel1' => { 273 => 0x8 },
'blacklevel2' => { 253 => 0x600, 257 => 0x600, 273 => 0x9 },
'blacklevel3' => { 273 => 0xa },
'blacklevelblue' => { 273 => 0x1e },
+ 'blackleveldata' => { 311 => 0x223 },
'blackleveldeltah' => { 105 => 0xc61b },
'blackleveldeltav' => { 105 => 0xc61c },
'blacklevelgreen' => { 273 => 0x1d },
'blacklevelred' => { 273 => 0x1c },
'blacklevelrepeatdim' => { 105 => 0xc619 },
'blackpoint' => { 302 => 0x200 },
- 'blacks2012' => { 396 => 'Blacks2012' },
+ 'blacks2012' => { 398 => 'Blacks2012' },
'bleachbypasstoning' => { 302 => 0x7f },
- 'blogtitle' => { 411 => 'blogTitle' },
- 'blogurl' => { 411 => 'blogURL' },
+ 'blogtitle' => { 413 => 'blogTitle' },
+ 'blogurl' => { 413 => 'blogURL' },
'bluebalance' => { 177 => 0x271, 254 => 0x1018, 273 => 0x12, 302 => 0x1b },
'bluecurvelimits' => { 96 => 0x1fe },
'bluecurvepoints' => { 95 => 0x79, 96 => 0x1d4 },
'bluehsl' => { 91 => [0x20914,0x20915] },
- 'bluehue' => { 396 => 'BlueHue' },
- 'bluesaturation' => { 396 => 'BlueSaturation' },
+ 'bluehue' => { 398 => 'BlueHue' },
+ 'bluesaturation' => { 398 => 'BlueSaturation' },
'blurcontrol' => { 302 => 0x82 },
'blurwarning' => { 110 => 0x1300 },
'bodybatteryadload' => { 281 => 0x3 },
@@ -874,24 +877,24 @@ my %tagLookup = (
'bodybatteryvoltage2' => { 281 => 0x4 },
'bodybatteryvoltage3' => { 281 => 0x6 },
'bodybatteryvoltage4' => { 281 => 0x8 },
- 'bodyfirmware' => { 326 => 0x0 },
+ 'bodyfirmware' => { 328 => 0x0 },
'bodyfirmwareversion' => { 250 => 0x104, 251 => 0x100, 254 => 0x104 },
- 'bodyserialnumber' => { 326 => 0x10 },
- 'bookedition' => { 411 => 'bookEdition' },
+ 'bodyserialnumber' => { 328 => 0x10 },
+ 'bookedition' => { 413 => 'bookEdition' },
'bracketmode' => { 49 => 0x3 },
'bracketsequence' => { 101 => 0x301d },
'bracketsettings' => { 269 => 0x45 },
- 'bracketshotnumber' => { 49 => 0x5, 283 => 0x9, 352 => 0x2b },
- 'bracketshotnumber2' => { 352 => 0x2d },
+ 'bracketshotnumber' => { 49 => 0x5, 283 => 0x9, 354 => 0x2b },
+ 'bracketshotnumber2' => { 354 => 0x2d },
'bracketstep' => { 157 => 0xe },
'bracketvalue' => { 49 => 0x4 },
- 'brightness' => { 105 => 0xfe53, 135 => 'Brightness', 153 => 'Brightness', 157 => 0x2c, 195 => 0x34, 321 => 0x25, 341 => 0x22, 353 => 0x2007, 396 => 'Brightness' },
- 'brightnessadj' => { 96 => 0x114, 222 => 0x0, 232 => 0x2d, 381 => 0x8018 },
- 'brightnessvalue' => { 105 => 0x9203, 163 => [0x691,0x49c3], 254 => 0x1003, 357 => 0x1e, 360 => 0x1140, 361 => 0x1140, 362 => 0x111c, 363 => 0x1198, 364 => 0x1174, 365 => 0x102c, 366 => 0x224, 367 => 0x224, 400 => 'BrightnessValue' },
+ 'brightness' => { 105 => 0xfe53, 135 => 'Brightness', 153 => 'Brightness', 157 => 0x2c, 195 => 0x34, 323 => 0x25, 343 => 0x22, 355 => 0x2007, 398 => 'Brightness' },
+ 'brightnessadj' => { 96 => 0x114, 222 => 0x0, 232 => 0x2d, 383 => 0x8018 },
+ 'brightnessvalue' => { 105 => 0x9203, 163 => [0x691,0x49c3], 254 => 0x1003, 359 => 0x1e, 362 => 0x1140, 363 => 0x1140, 364 => 0x111c, 365 => 0x1198, 366 => 0x1174, 367 => 0x102c, 368 => 0x224, 369 => 0x224, 402 => 'BrightnessValue' },
'bulbduration' => { 67 => 0x18 },
'burstmode' => { 121 => 0xa, 269 => 0x2a },
'burstmode2' => { 121 => 0x18 },
- 'burstshot' => { 334 => 0x34 },
+ 'burstshot' => { 336 => 0x34 },
'burstspeed' => { 269 => 0x77 },
'burstuuid' => { 1 => 0xb },
'buttonfunctioncontroloff' => { 73 => 0x70a },
@@ -899,11 +902,11 @@ my %tagLookup = (
'bwmode' => { 254 => 0x203 },
'by-line' => { 113 => 0x50 },
'by-linetitle' => { 113 => 0x55 },
- 'bytecount' => { 411 => 'byteCount' },
- 'calibration' => { 334 => [0x24,0x30] },
+ 'bytecount' => { 413 => 'byteCount' },
+ 'calibration' => { 336 => [0x24,0x30] },
'calibrationilluminant1' => { 105 => 0xc65a },
'calibrationilluminant2' => { 105 => 0xc65b },
- 'cameraangle' => { 421 => 'cameraAngle' },
+ 'cameraangle' => { 423 => 'cameraAngle' },
'cameracalibration1' => { 105 => 0xc623 },
'cameracalibration2' => { 105 => 0xc624 },
'cameracalibrationsig' => { 105 => 0xc6f3 },
@@ -922,21 +925,21 @@ my %tagLookup = (
'cameracolorcalibration13' => { 33 => 0x30, 39 => 0xf6 },
'cameracolorcalibration14' => { 33 => 0x34, 39 => 0xfb },
'cameracolorcalibration15' => { 33 => 0x38, 39 => 0x100 },
- 'camerae-mountversion' => { 380 => 0xb },
- 'cameraid' => { 254 => 0x209, 333 => 0x209 },
+ 'camerae-mountversion' => { 382 => 0xb },
+ 'cameraid' => { 254 => 0x209, 335 => 0x209 },
'cameraiso' => { 31 => 0x10 },
- 'cameralabel' => { 105 => 0xc7a1, 421 => 'cameraLabel' },
- 'cameramodel' => { 421 => 'cameraModel' },
+ 'cameralabel' => { 105 => 0xc7a1, 423 => 'cameraLabel' },
+ 'cameramodel' => { 311 => 0x410, 423 => 'cameraModel' },
'cameramodelid' => { 153 => 'CameraModelID' },
- 'cameramove' => { 421 => 'cameraMove' },
- 'cameraorientation' => { 6 => 0x30, 8 => 0x7d, 10 => 0x30, 12 => 0x35, 13 => 0x30, 14 => 0x30, 15 => 0x31, 16 => 0x31, 17 => 0x35, 18 => 0x27, 19 => 0x31, 20 => 0x7d, 21 => 0x38, 22 => 0x36, 23 => 0x7d, 24 => 0x83, 25 => 0x84, 26 => 0x35, 269 => 0x8f, 306 => 0x1, 347 => [0x16,0x18], 369 => 0x28, 370 => 0x24, 371 => 0x29 },
+ 'cameramove' => { 423 => 'cameraMove' },
+ 'cameraorientation' => { 6 => 0x30, 8 => 0x7d, 10 => 0x30, 12 => 0x35, 13 => 0x30, 14 => 0x30, 15 => 0x31, 16 => 0x31, 17 => 0x35, 18 => 0x27, 19 => 0x31, 20 => 0x7d, 21 => 0x38, 22 => 0x36, 23 => 0x7d, 24 => 0x83, 25 => 0x84, 26 => 0x35, 269 => 0x8f, 306 => 0x1, 311 => 0x100, 349 => [0x16,0x18], 371 => 0x28, 372 => 0x24, 373 => 0x29 },
'cameraowner' => { 122 => 0xc353 },
'cameraparameters' => { 254 => 0x2050 },
- 'cameraprofile' => { 396 => 'CameraProfile' },
- 'cameraprofiledigest' => { 396 => 'CameraProfileDigest' },
+ 'cameraprofile' => { 398 => 'CameraProfile' },
+ 'cameraprofiledigest' => { 398 => 'CameraProfileDigest' },
'cameraserialnumber' => { 105 => 0xc62f, 155 => 'CameraSerialNumber' },
'camerasettingsversion' => { 249 => 0x0 },
- 'cameratemperature' => { 6 => 0x18, 8 => 0x1b, 10 => 0x18, 12 => 0x19, 13 => 0x18, 14 => 0x18, 15 => 0x19, 16 => 0x19, 17 => 0x19, 18 => 0x17, 19 => 0x19, 20 => 0x1b, 21 => 0x19, 22 => 0x19, 23 => 0x1b, 24 => 0x1b, 25 => 0x1b, 26 => 0x19, 27 => [0x87,0x91], 28 => [0x99,0x9f,0xa4,0xa8,0x105], 30 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 67 => 0xc, 119 => 0x406, 253 => 0x1306, 265 => 0x320, 271 => 0x3402, 302 => 0x47, 331 => 0x43, 373 => 0x5 },
+ 'cameratemperature' => { 6 => 0x18, 8 => 0x1b, 10 => 0x18, 12 => 0x19, 13 => 0x18, 14 => 0x18, 15 => 0x19, 16 => 0x19, 17 => 0x19, 18 => 0x17, 19 => 0x19, 20 => 0x1b, 21 => 0x19, 22 => 0x19, 23 => 0x1b, 24 => 0x1b, 25 => 0x1b, 26 => 0x19, 27 => [0x87,0x91], 28 => [0x99,0x9f,0xa4,0xa8,0x105], 30 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 67 => 0xc, 119 => 0x406, 253 => 0x1306, 265 => 0x320, 271 => 0x3402, 302 => 0x47, 333 => 0x43, 375 => 0x5 },
'cameratemperature4' => { 307 => 0x14 },
'cameratemperature5' => { 307 => 0x16 },
'cameratemperaturerangemax' => { 107 => 0x5 },
@@ -954,123 +957,123 @@ my %tagLookup = (
'canonimagetype' => { 55 => 0x6, 86 => 0x815 },
'canonmodelid' => { 55 => 0x10, 86 => 0x1834 },
'canonvrd' => { 106 => 'CanonVRD' },
- 'caption' => { 390 => 'caption' },
+ 'caption' => { 392 => 'caption' },
'caption-abstract' => { 113 => 0x78 },
- 'captionsauthornames' => { 399 => 'CaptionsAuthorNames' },
- 'captionsdatetimestamps' => { 399 => 'CaptionsDateTimeStamps' },
- 'captionwriter' => { 408 => 'CaptionWriter' },
+ 'captionsauthornames' => { 401 => 'CaptionsAuthorNames' },
+ 'captionsdatetimestamps' => { 401 => 'CaptionsDateTimeStamps' },
+ 'captionwriter' => { 410 => 'CaptionWriter' },
'captureframerate' => { 101 => 0x4001 },
- 'capturesoftware' => { 385 => 'CaptureSoftware' },
+ 'capturesoftware' => { 387 => 'CaptureSoftware' },
'cardshutterlock' => { 160 => 0x49 },
'casioimagesize' => { 101 => 0x9 },
- 'catalogsets' => { 113 => 0xff, 384 => 'CatalogSets', 388 => 'CatalogSets' },
- 'categories' => { 55 => 0x23, 390 => 'categories' },
- 'category' => { 113 => 0xf, 248 => 0x30, 408 => 'Category' },
- 'cbcrgain' => { 331 => 0xa036 },
- 'cbcrgaindefault' => { 331 => 0xa035 },
- 'cbcrmatrix' => { 331 => 0xa034 },
- 'cbcrmatrixdefault' => { 331 => 0xa033 },
+ 'catalogsets' => { 113 => 0xff, 386 => 'CatalogSets', 390 => 'CatalogSets' },
+ 'categories' => { 55 => 0x23, 392 => 'categories' },
+ 'category' => { 113 => 0xf, 248 => 0x30, 410 => 'Category' },
+ 'cbcrgain' => { 333 => 0xa036 },
+ 'cbcrgaindefault' => { 333 => 0xa035 },
+ 'cbcrmatrix' => { 333 => 0xa034 },
+ 'cbcrmatrixdefault' => { 333 => 0xa033 },
'ccdboardversion' => { 265 => 0x331 },
'ccdscanmode' => { 254 => 0x1039 },
'ccdsensitivity' => { 219 => 0x6 },
'ccdversion' => { 265 => 0x330 },
- 'cellglobalid' => { 394 => 'cgi' },
+ 'cellglobalid' => { 396 => 'cgi' },
'celllength' => { 105 => 0x109 },
- 'cellr' => { 394 => 'r' },
- 'celltowerid' => { 394 => 'cellid' },
+ 'cellr' => { 396 => 'r' },
+ 'celltowerid' => { 396 => 'cellid' },
'cellwidth' => { 105 => 0x108 },
'centerafarea' => { 244 => '15.1' },
'centerfocuspoint' => { 247 => '2.2' },
'centerweightedareasize' => { 236 => '7.1', 237 => '8.1', 242 => '5.1', 243 => '7.1', 244 => '6.3', 246 => '8.1', 247 => '8.1' },
- 'certificate' => { 425 => 'Certificate' },
- 'cfapattern' => { 105 => 0xa302, 400 => 'CFAPattern' },
+ 'certificate' => { 427 => 'Certificate' },
+ 'cfapattern' => { 105 => 0xa302, 402 => 'CFAPattern' },
'cfapattern2' => { 105 => 0x828e },
- 'cfapatterncolumns' => { 400 => [\'CFAPattern','CFAPatternColumns'] },
- 'cfapatternrows' => { 400 => [\'CFAPattern','CFAPatternRows'] },
- 'cfapatternvalues' => { 400 => [\'CFAPattern','CFAPatternValues'] },
+ 'cfapatterncolumns' => { 402 => [\'CFAPattern','CFAPatternColumns'] },
+ 'cfapatternrows' => { 402 => [\'CFAPattern','CFAPatternRows'] },
+ 'cfapatternvalues' => { 402 => [\'CFAPattern','CFAPatternValues'] },
'cfarepeatpatterndim' => { 105 => 0x828d },
- 'channel' => { 411 => 'channel' },
- 'channela-lang' => { 411 => [\'channel','channelA-lang'] },
- 'channelchannel' => { 411 => [\'channel','channelChannel'] },
+ 'channel' => { 413 => 'channel' },
+ 'channela-lang' => { 413 => [\'channel','channelA-lang'] },
+ 'channelchannel' => { 413 => [\'channel','channelChannel'] },
'channels' => { 134 => 'Channels' },
- 'channelsubchannel1' => { 411 => [\'channel','channelSubchannel1'] },
- 'channelsubchannel2' => { 411 => [\'channel','channelSubchannel2'] },
- 'channelsubchannel3' => { 411 => [\'channel','channelSubchannel3'] },
- 'channelsubchannel4' => { 411 => [\'channel','channelSubchannel4'] },
+ 'channelsubchannel1' => { 413 => [\'channel','channelSubchannel1'] },
+ 'channelsubchannel2' => { 413 => [\'channel','channelSubchannel2'] },
+ 'channelsubchannel3' => { 413 => [\'channel','channelSubchannel3'] },
+ 'channelsubchannel4' => { 413 => [\'channel','channelSubchannel4'] },
'checkmark' => { 91 => 0x10101, 96 => 0x26a },
'checkmark2' => { 97 => 0x8e },
- 'childfontfiles' => { 426 => [\'Fonts','FontsChildFontFiles'] },
+ 'childfontfiles' => { 428 => [\'Fonts','FontsChildFontFiles'] },
'chmodeshootingspeed' => { 236 => '10.3', 237 => '11.2' },
'chromablurradius' => { 105 => 0xc631 },
- 'chromaticaberration' => { 91 => 0x20703, 97 => 0x66, 331 => 0xa051 },
- 'chromaticaberrationb' => { 396 => 'ChromaticAberrationB' },
+ 'chromaticaberration' => { 91 => 0x20703, 97 => 0x66, 333 => 0xa051 },
+ 'chromaticaberrationb' => { 398 => 'ChromaticAberrationB' },
'chromaticaberrationblue' => { 91 => 0x20708, 97 => 0x6b },
'chromaticaberrationcorr' => { 69 => [0x4,0x5] },
'chromaticaberrationcorrection' => { 292 => 0x1 },
'chromaticaberrationon' => { 91 => '0x20703.0', 97 => 0x62 },
- 'chromaticaberrationr' => { 396 => 'ChromaticAberrationR' },
+ 'chromaticaberrationr' => { 398 => 'ChromaticAberrationR' },
'chromaticaberrationred' => { 91 => 0x20707, 97 => 0x6a },
'chromaticaberrationsetting' => { 70 => 0x6 },
- 'chrominancenoisereduction' => { 91 => 0x20601, 97 => 0x5e, 334 => 0x1a },
+ 'chrominancenoisereduction' => { 91 => 0x20601, 97 => 0x5e, 336 => 0x1a },
'chrominancenr_tiff_jpeg' => { 97 => 0x60 },
- 'circgradbasedcorractive' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] },
- 'circgradbasedcorramount' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] },
- 'circgradbasedcorrbrightness' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] },
- 'circgradbasedcorrclarity' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] },
- 'circgradbasedcorrclarity2012' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] },
- 'circgradbasedcorrcontrast' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] },
- 'circgradbasedcorrcontrast2012' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] },
- 'circgradbasedcorrdefringe' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] },
- 'circgradbasedcorrexposure' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] },
- 'circgradbasedcorrexposure2012' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] },
- 'circgradbasedcorrhighlights2012' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] },
- 'circgradbasedcorrhue' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] },
- 'circgradbasedcorrluminancenoise' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] },
- 'circgradbasedcorrmaskalpha' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] },
- 'circgradbasedcorrmaskangle' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] },
- 'circgradbasedcorrmaskbottom' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] },
- 'circgradbasedcorrmaskcentervalue' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] },
- 'circgradbasedcorrmaskcenterweight' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'circgradbasedcorrmaskdabs' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] },
- 'circgradbasedcorrmaskfeather' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] },
- 'circgradbasedcorrmaskflipped' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] },
- 'circgradbasedcorrmaskflow' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] },
- 'circgradbasedcorrmaskfullx' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] },
- 'circgradbasedcorrmaskfully' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] },
- 'circgradbasedcorrmaskleft' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] },
- 'circgradbasedcorrmaskmidpoint' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] },
- 'circgradbasedcorrmaskperimetervalue' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'circgradbasedcorrmaskradius' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] },
- 'circgradbasedcorrmaskright' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] },
- 'circgradbasedcorrmaskroundness' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] },
- 'circgradbasedcorrmasks' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] },
- 'circgradbasedcorrmasksizex' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] },
- 'circgradbasedcorrmasksizey' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] },
- 'circgradbasedcorrmasktop' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] },
- 'circgradbasedcorrmaskvalue' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] },
- 'circgradbasedcorrmaskversion' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] },
- 'circgradbasedcorrmaskwhat' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] },
- 'circgradbasedcorrmaskx' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] },
- 'circgradbasedcorrmasky' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] },
- 'circgradbasedcorrmaskzerox' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] },
- 'circgradbasedcorrmaskzeroy' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] },
- 'circgradbasedcorrmoire' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] },
- 'circgradbasedcorrsaturation' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation','CircularGradientBasedCorrectionsLocalToningSaturation'] },
- 'circgradbasedcorrshadows2012' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] },
- 'circgradbasedcorrsharpness' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] },
- 'circgradbasedcorrtemperature' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] },
- 'circgradbasedcorrtint' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] },
- 'circgradbasedcorrwhat' => { 396 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] },
- 'circulargradientbasedcorrections' => { 396 => 'CircularGradientBasedCorrections' },
- 'city' => { 113 => 0x5a, 140 => 'City', 269 => 0x6d, 408 => 'City' },
+ 'circgradbasedcorractive' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] },
+ 'circgradbasedcorramount' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] },
+ 'circgradbasedcorrbrightness' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] },
+ 'circgradbasedcorrclarity' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] },
+ 'circgradbasedcorrclarity2012' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] },
+ 'circgradbasedcorrcontrast' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] },
+ 'circgradbasedcorrcontrast2012' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] },
+ 'circgradbasedcorrdefringe' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] },
+ 'circgradbasedcorrexposure' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] },
+ 'circgradbasedcorrexposure2012' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] },
+ 'circgradbasedcorrhighlights2012' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] },
+ 'circgradbasedcorrhue' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] },
+ 'circgradbasedcorrluminancenoise' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] },
+ 'circgradbasedcorrmaskalpha' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] },
+ 'circgradbasedcorrmaskangle' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] },
+ 'circgradbasedcorrmaskbottom' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] },
+ 'circgradbasedcorrmaskcentervalue' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'circgradbasedcorrmaskcenterweight' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'circgradbasedcorrmaskdabs' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] },
+ 'circgradbasedcorrmaskfeather' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] },
+ 'circgradbasedcorrmaskflipped' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] },
+ 'circgradbasedcorrmaskflow' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] },
+ 'circgradbasedcorrmaskfullx' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] },
+ 'circgradbasedcorrmaskfully' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] },
+ 'circgradbasedcorrmaskleft' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] },
+ 'circgradbasedcorrmaskmidpoint' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'circgradbasedcorrmaskperimetervalue' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'circgradbasedcorrmaskradius' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] },
+ 'circgradbasedcorrmaskright' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] },
+ 'circgradbasedcorrmaskroundness' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] },
+ 'circgradbasedcorrmasks' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] },
+ 'circgradbasedcorrmasksizex' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] },
+ 'circgradbasedcorrmasksizey' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] },
+ 'circgradbasedcorrmasktop' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] },
+ 'circgradbasedcorrmaskvalue' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'circgradbasedcorrmaskversion' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] },
+ 'circgradbasedcorrmaskwhat' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] },
+ 'circgradbasedcorrmaskx' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] },
+ 'circgradbasedcorrmasky' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] },
+ 'circgradbasedcorrmaskzerox' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] },
+ 'circgradbasedcorrmaskzeroy' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] },
+ 'circgradbasedcorrmoire' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] },
+ 'circgradbasedcorrsaturation' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation','CircularGradientBasedCorrectionsLocalToningSaturation'] },
+ 'circgradbasedcorrshadows2012' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] },
+ 'circgradbasedcorrsharpness' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] },
+ 'circgradbasedcorrtemperature' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] },
+ 'circgradbasedcorrtint' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] },
+ 'circgradbasedcorrwhat' => { 398 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] },
+ 'circulargradientbasedcorrections' => { 398 => 'CircularGradientBasedCorrections' },
+ 'city' => { 113 => 0x5a, 140 => 'City', 269 => 0x6d, 410 => 'City' },
'city2' => { 269 => 0x80 },
- 'clarity' => { 396 => 'Clarity' },
- 'clarity2012' => { 396 => 'Clarity2012' },
+ 'clarity' => { 398 => 'Clarity' },
+ 'clarity2012' => { 398 => 'Clarity2012' },
'classifystate' => { 113 => 0xe1 },
'clearretouch' => { 269 => 0x7c },
'clearretouchvalue' => { 269 => 0xa3 },
- 'client' => { 421 => 'client' },
- 'clientname' => { 402 => 'ClientName' },
+ 'client' => { 423 => 'client' },
+ 'clientname' => { 404 => 'ClientName' },
'clmodeshootingspeed' => { 236 => '10.2', 237 => '11.3', 242 => '11.2', 243 => '10.2', 246 => '11.2', 247 => '11.1' },
'cmcontrast' => { 257 => 0x2022 },
'cmexposurecompensation' => { 257 => 0x2000 },
@@ -1083,27 +1086,27 @@ my %tagLookup = (
'codec' => { 148 => 'Codec' },
'codedcharacterset' => { 114 => 0x5a },
'collectionname' => { 149 => [\'Collections','CollectionsCollectionName'] },
- 'collections' => { 149 => 'Collections', 390 => 'collections' },
+ 'collections' => { 149 => 'Collections', 392 => 'collections' },
'collectionuri' => { 149 => [\'Collections','CollectionsCollectionURI'] },
- 'color' => { 410 => 'color' },
+ 'color' => { 412 => 'color' },
'coloraberrationcontrol' => { 229 => 0xc89224b },
- 'coloradjustment' => { 334 => 0x14 },
- 'coloradjustmentmode' => { 333 => 0x210 },
- 'coloranta' => { 426 => [\'Colorants','ColorantsA'] },
- 'colorantb' => { 426 => [\'Colorants','ColorantsB'] },
- 'colorantblack' => { 426 => [\'Colorants','ColorantsBlack'] },
- 'colorantblue' => { 426 => [\'Colorants','ColorantsBlue'] },
- 'colorantcyan' => { 426 => [\'Colorants','ColorantsCyan'] },
- 'colorantgreen' => { 426 => [\'Colorants','ColorantsGreen'] },
- 'colorantl' => { 426 => [\'Colorants','ColorantsL'] },
- 'colorantmagenta' => { 426 => [\'Colorants','ColorantsMagenta'] },
- 'colorantmode' => { 426 => [\'Colorants','ColorantsMode'] },
- 'colorantred' => { 426 => [\'Colorants','ColorantsRed'] },
- 'colorants' => { 426 => 'Colorants' },
- 'colorantswatchname' => { 426 => [\'Colorants','ColorantsSwatchName'] },
- 'coloranttint' => { 426 => [\'Colorants','ColorantsTint'] },
- 'coloranttype' => { 426 => [\'Colorants','ColorantsType'] },
- 'colorantyellow' => { 426 => [\'Colorants','ColorantsYellow'] },
+ 'coloradjustment' => { 336 => 0x14 },
+ 'coloradjustmentmode' => { 335 => 0x210 },
+ 'coloranta' => { 428 => [\'Colorants','ColorantsA'] },
+ 'colorantb' => { 428 => [\'Colorants','ColorantsB'] },
+ 'colorantblack' => { 428 => [\'Colorants','ColorantsBlack'] },
+ 'colorantblue' => { 428 => [\'Colorants','ColorantsBlue'] },
+ 'colorantcyan' => { 428 => [\'Colorants','ColorantsCyan'] },
+ 'colorantgreen' => { 428 => [\'Colorants','ColorantsGreen'] },
+ 'colorantl' => { 428 => [\'Colorants','ColorantsL'] },
+ 'colorantmagenta' => { 428 => [\'Colorants','ColorantsMagenta'] },
+ 'colorantmode' => { 428 => [\'Colorants','ColorantsMode'] },
+ 'colorantred' => { 428 => [\'Colorants','ColorantsRed'] },
+ 'colorants' => { 428 => 'Colorants' },
+ 'colorantswatchname' => { 428 => [\'Colorants','ColorantsSwatchName'] },
+ 'coloranttint' => { 428 => [\'Colorants','ColorantsTint'] },
+ 'coloranttype' => { 428 => [\'Colorants','ColorantsType'] },
+ 'colorantyellow' => { 428 => [\'Colorants','ColorantsYellow'] },
'colorbalance' => { 135 => 'ColorBalance' },
'colorbalanceadj' => { 229 => 0x76a43202 },
'colorbalanceblue' => { 157 => 0x1e },
@@ -1115,41 +1118,41 @@ my %tagLookup = (
'colorbooster' => { 229 => 0x5f0e7d23 },
'colorboostlevel' => { 223 => 0x1 },
'colorboosttype' => { 223 => 0x0 },
- 'colorclass' => { 311 => 0xde, 312 => 'ColorClass' },
- 'colorcompensationfilter' => { 160 => [0x3a,0x5f], 162 => 0x111, 353 => 0xb022 },
- 'colorcompensationfiltercustom' => { 341 => 0xd, 342 => 0xc },
- 'colorcompensationfilterset' => { 341 => 0x8, 342 => 0x7, 343 => 0x18, 357 => 0xf },
+ 'colorclass' => { 313 => 0xde, 314 => 'ColorClass' },
+ 'colorcompensationfilter' => { 160 => [0x3a,0x5f], 162 => 0x111, 355 => 0xb022 },
+ 'colorcompensationfiltercustom' => { 343 => 0xd, 344 => 0xc },
+ 'colorcompensationfilterset' => { 343 => 0x8, 344 => 0x7, 345 => 0x18, 359 => 0xf },
'colorcontrol' => { 254 => 0x102b },
- 'colorcorrection' => { 381 => 0x8015 },
+ 'colorcorrection' => { 383 => 0x8015 },
'colordataversion' => { 37 => 0x0, 38 => 0x0, 40 => 0x0, 41 => 0x0, 42 => 0x0 },
'coloreffect' => { 269 => 0x28 },
'colorfilter' => { 100 => 0x17, 101 => 0x3017, 157 => 0x29, 165 => [0x38,0x4d,0x4f], 309 => 0x17 },
'colorgain' => { 199 => 0x51 },
'colorhue' => { 91 => 0x20900, 193 => 0x8d },
'colorimetricreference' => { 105 => 0xc6bf },
- 'colorlabel' => { 399 => 'ColorLabel' },
- 'colormatrix' => { 253 => 0x200, 254 => 0x1011, 331 => 0xa030 },
- 'colormatrix1' => { 105 => 0xc621 },
- 'colormatrix2' => { 105 => 0xc622, 257 => 0x200 },
+ 'colorlabel' => { 401 => 'ColorLabel' },
+ 'colormatrix' => { 253 => 0x200, 254 => 0x1011, 333 => 0xa030 },
+ 'colormatrix1' => { 105 => 0xc621, 311 => 0x106 },
+ 'colormatrix2' => { 105 => 0xc622, 257 => 0x200, 311 => 0x226 },
'colormatrixa' => { 302 => 0x203 },
- 'colormatrixadobergb' => { 331 => 0xa032 },
+ 'colormatrixadobergb' => { 333 => 0xa032 },
'colormatrixb' => { 302 => 0x204 },
'colormatrixnumber' => { 254 => 0x1019 },
- 'colormatrixsrgb' => { 331 => 0xa031 },
- 'colormode' => { 101 => 0x3015, 110 => 0x1210, 121 => 0x66, 157 => 0x28, 160 => 0x16, 162 => 0x101, 163 => 0x36, 165 => 0x7, 193 => 0x3, 219 => 0x4, 269 => 0x32, 334 => 0x2c, 353 => 0xb029, 408 => 'ColorMode' },
+ 'colormatrixsrgb' => { 333 => 0xa031 },
+ 'colormode' => { 101 => 0x3015, 110 => 0x1210, 121 => 0x66, 157 => 0x28, 160 => 0x16, 162 => 0x101, 163 => 0x36, 165 => 0x7, 193 => 0x3, 219 => 0x4, 269 => 0x32, 336 => 0x2c, 355 => 0xb029, 410 => 'ColorMode' },
'colormoirereduction' => { 230 => 0x15 },
'colormoirereductionmode' => { 230 => 0x5 },
- 'colornoisereduction' => { 381 => 0x8029, 396 => 'ColorNoiseReduction' },
- 'colornoisereductiondetail' => { 396 => 'ColorNoiseReductionDetail' },
+ 'colornoisereduction' => { 383 => 0x8029, 398 => 'ColorNoiseReduction' },
+ 'colornoisereductiondetail' => { 398 => 'ColorNoiseReductionDetail' },
'colornoisereductionintensity' => { 230 => 0x18 },
'colornoisereductionsharpness' => { 230 => 0x1c },
- 'colornoisereductionsmoothness' => { 396 => 'ColorNoiseReductionSmoothness' },
+ 'colornoisereductionsmoothness' => { 398 => 'ColorNoiseReductionSmoothness' },
'colorplanes' => { 109 => 0x2 },
'colorprofile' => { 157 => 0x33 },
'colorrepresentation' => { 115 => 0x3c },
'colorsaturationadj' => { 91 => 0x20305 },
'colorsequence' => { 115 => 0x41 },
- 'colorspace' => { 43 => 0x3, 55 => 0xb4, 86 => 0x10b4, 105 => 0xa001, 141 => 'ColorSpace', 158 => 0x2f, 159 => 0x25, 160 => 0x17, 193 => 0x1e, 249 => 0x507, 302 => 0x37, 331 => 0xa011, 334 => 0xb, 341 => 0x1b, 342 => 0x83, 343 => 0xe, 357 => 0x6, 400 => 'ColorSpace' },
+ 'colorspace' => { 43 => 0x3, 55 => 0xb4, 86 => 0x10b4, 105 => 0xa001, 141 => 'ColorSpace', 158 => 0x2f, 159 => 0x25, 160 => 0x17, 193 => 0x1e, 249 => 0x507, 302 => 0x37, 333 => 0xa011, 336 => 0xb, 343 => 0x1b, 344 => 0x83, 345 => 0xe, 359 => 0x6, 402 => 'ColorSpace' },
'colortempasshot' => { 34 => 0x4, 35 => 0x1d, 36 => 0x26, 37 => 0x43, 40 => 0x43, 41 => 0x43, 42 => 0x43 },
'colortempauto' => { 34 => 0x9, 35 => 0x22, 36 => 0x1c, 37 => 0x48, 40 => 0x48, 41 => 0x48, 42 => 0x48 },
'colortempcloudy' => { 34 => 0x22, 35 => 0x31, 36 => 0x35, 37 => 0x5c, 40 => 0x75, 41 => 0x8e, 42 => 0x93, 302 => 0x55 },
@@ -1157,20 +1160,20 @@ my %tagLookup = (
'colortempcustom1' => { 35 => 0x45 },
'colortempcustom2' => { 35 => 0x4a },
'colortempdaylight' => { 34 => 0x18, 35 => 0x27, 36 => 0x2b, 37 => 0x52, 40 => 0x6b, 41 => 0x84, 42 => 0x89, 302 => 0x53 },
- 'colortemperature' => { 6 => 0x73, 7 => [0x48,0x4e], 8 => 0xc0, 9 => 0x37, 10 => 0x62, 11 => 0x37, 12 => 0x7c, 13 => 0x73, 14 => 0x73, 15 => 0x77, 16 => 0x73, 17 => 0x7c, 18 => 0x58, 19 => 0x73, 20 => 0xc0, 21 => 0x7f, 22 => 0x7d, 23 => 0xc0, 24 => 0xc6, 25 => 0xc7, 26 => 0x7b, 55 => 0xae, 65 => 0x9, 86 => 0x10ae, 110 => 0x1005, 119 => 0x846, 135 => 'ColorTemperature', 158 => [0x6e,0x49], 159 => 0x3f, 160 => [0x39,0x5e], 162 => 0x10b, 165 => [0x3c,0x4c,0x4e], 265 => 0x321, 302 => 0x50, 325 => 0x1308, 353 => 0xb021, 396 => 'Temperature' },
- 'colortemperatureadj' => { 381 => 0x8013 },
+ 'colortemperature' => { 6 => 0x73, 7 => [0x48,0x4e], 8 => 0xc0, 9 => 0x37, 10 => 0x62, 11 => 0x37, 12 => 0x7c, 13 => 0x73, 14 => 0x73, 15 => 0x77, 16 => 0x73, 17 => 0x7c, 18 => 0x58, 19 => 0x73, 20 => 0xc0, 21 => 0x7f, 22 => 0x7d, 23 => 0xc0, 24 => 0xc6, 25 => 0xc7, 26 => 0x7b, 55 => 0xae, 65 => 0x9, 86 => 0x10ae, 110 => 0x1005, 119 => 0x846, 135 => 'ColorTemperature', 158 => [0x6e,0x49], 159 => 0x3f, 160 => [0x39,0x5e], 162 => 0x10b, 165 => [0x3c,0x4c,0x4e], 265 => 0x321, 302 => 0x50, 327 => 0x1308, 355 => 0xb021, 398 => 'Temperature' },
+ 'colortemperatureadj' => { 383 => 0x8013 },
'colortemperaturebg' => { 254 => 0x1013 },
- 'colortemperaturecustom' => { 341 => 0xc, 342 => 0xb },
+ 'colortemperaturecustom' => { 343 => 0xc, 344 => 0xb },
'colortemperaturerg' => { 254 => 0x1014 },
- 'colortemperatureset' => { 341 => 0x7, 342 => 0x6 },
- 'colortemperaturesetting' => { 160 => 0x25, 343 => 0x17, 357 => 0xe },
+ 'colortemperatureset' => { 343 => 0x7, 344 => 0x6 },
+ 'colortemperaturesetting' => { 160 => 0x25, 345 => 0x17, 359 => 0xe },
'colortempflash' => { 34 => 0x36, 35 => 0x40, 36 => 0x49, 37 => 0x70, 40 => 0x89, 41 => 0xa2, 42 => 0xa7, 302 => 0x5a },
'colortempflashdata' => { 37 => 0x24a },
'colortempfluorescent' => { 34 => 0x2c, 35 => 0x3b, 36 => 0x3f, 37 => 0x66, 40 => 0x7f, 41 => 0x98, 42 => 0x9d },
'colortempfluorescentd' => { 302 => 0x57 },
'colortempfluorescentn' => { 302 => 0x58 },
'colortempfluorescentw' => { 302 => 0x59 },
- 'colortempkelvin' => { 34 => 0x31, 36 => 0x44, 37 => 0x6b, 40 => 0x84, 41 => 0x9d, 42 => 0xa2, 269 => 0x44, 325 => 0x1307 },
+ 'colortempkelvin' => { 34 => 0x31, 36 => 0x44, 37 => 0x6b, 40 => 0x84, 41 => 0x9d, 42 => 0xa2, 269 => 0x44, 327 => 0x1307 },
'colortempmeasured' => { 34 => 0xe, 37 => 0x4d, 40 => 0x4d, 41 => 0x4d, 42 => 0x4d },
'colortemppc1' => { 36 => 0x94, 37 => 0x75 },
'colortemppc2' => { 36 => 0x99, 37 => 0x7a },
@@ -1241,35 +1244,35 @@ my %tagLookup = (
'commanderinternalttlcompgroupa' => { 242 => '21.1', 243 => '27.1' },
'commanderinternalttlcompgroupb' => { 242 => '22.1', 243 => '28.1' },
'comment' => { 0 => 0x2, 106 => 'Comment', 136 => 'Comment', 261 => 'Comment' },
- 'compass' => { 328 => 0x4 },
- 'complianceprofile' => { 411 => 'complianceProfile' },
- 'componentsconfiguration' => { 105 => 0x9101, 141 => 'Components', 400 => 'ComponentsConfiguration' },
+ 'compass' => { 330 => 0x4 },
+ 'complianceprofile' => { 413 => 'complianceProfile' },
+ 'componentsconfiguration' => { 105 => 0x9101, 141 => 'Components', 402 => 'ComponentsConfiguration' },
'componentversion' => { 86 => 0x80c },
- 'composer' => { 421 => 'composer' },
+ 'composer' => { 423 => 'composer' },
'compositionadjust' => { 301 => '0.1' },
'compositionadjustrotation' => { 301 => 0x7 },
'compositionadjustx' => { 301 => 0x5 },
'compositionadjusty' => { 301 => 0x6 },
- 'compressedbitsperpixel' => { 105 => 0x9102, 400 => 'CompressedBitsPerPixel' },
+ 'compressedbitsperpixel' => { 105 => 0x9102, 402 => 'CompressedBitsPerPixel' },
'compressedimagesize' => { 162 => 0x40, 254 => 0x40 },
- 'compression' => { 105 => 0x103, 417 => 'Compression' },
+ 'compression' => { 105 => 0x103, 419 => 'Compression' },
'compressionfactor' => { 249 => 0x50d },
'compressionratio' => { 141 => 'Compression', 254 => 0x1034 },
- 'confidencelevel' => { 391 => 'ConfidenceLevel' },
- 'constrainedcropheight' => { 96 => 0x266, 311 => 0xd6 },
- 'constrainedcropwidth' => { 96 => 0x262, 311 => 0xd5 },
+ 'confidencelevel' => { 393 => 'ConfidenceLevel' },
+ 'constrainedcropheight' => { 96 => 0x266, 313 => 0xd6 },
+ 'constrainedcropwidth' => { 96 => 0x262, 313 => 0xd5 },
'contact' => { 113 => 0x76 },
- 'contactinfo' => { 410 => 'contactInfo' },
+ 'contactinfo' => { 412 => 'contactInfo' },
'contentlocationcode' => { 113 => 0x1a },
'contentlocationname' => { 113 => 0x1b },
- 'contenttype' => { 411 => 'contentType' },
+ 'contenttype' => { 413 => 'contentType' },
'continuousbracketing' => { 160 => 0x20 },
'continuousdrive' => { 31 => 0x5 },
'continuousshootingspeed' => { 73 => 0x610 },
'continuousshotlimit' => { 73 => 0x611 },
- 'contrast' => { 9 => 0x73, 11 => 0x75, 31 => 0xd, 100 => 0xc, 101 => [0x3012,0x20], 105 => [0xa408,0xfe54], 110 => [0x1004,0x1006], 135 => 'Contrast', 153 => 'Contrast', 157 => 0x20, 158 => 0x31, 159 => 0x27, 160 => 0x19, 165 => 0x2, 195 => 0x33, 254 => 0x1029, 269 => 0x39, 271 => 0x300a, 302 => 0x20, 309 => 0xc, 321 => 0x24, 325 => 0x1012, 334 => 0xd, 341 => 0x1d, 342 => 0x1a, 353 => 0x2004, 396 => 'Contrast', 400 => 'Contrast' },
- 'contrast2012' => { 396 => 'Contrast2012' },
- 'contrastadj' => { 91 => 0x20303, 96 => 0x115, 232 => 0x2c, 381 => 0x8017 },
+ 'contrast' => { 9 => 0x73, 11 => 0x75, 31 => 0xd, 100 => 0xc, 101 => [0x3012,0x20], 105 => [0xa408,0xfe54], 110 => [0x1004,0x1006], 135 => 'Contrast', 153 => 'Contrast', 157 => 0x20, 158 => 0x31, 159 => 0x27, 160 => 0x19, 165 => 0x2, 195 => 0x33, 254 => 0x1029, 269 => 0x39, 271 => 0x300a, 302 => 0x20, 309 => 0xc, 323 => 0x24, 327 => 0x1012, 336 => 0xd, 343 => 0x1d, 344 => 0x1a, 355 => 0x2004, 398 => 'Contrast', 402 => 'Contrast' },
+ 'contrast2012' => { 398 => 'Contrast2012' },
+ 'contrastadj' => { 91 => 0x20303, 96 => 0x115, 232 => 0x2c, 383 => 0x8017 },
'contrastauto' => { 62 => 0x90 },
'contrastcurve' => { 193 => 0x8c },
'contrastdetectaf' => { 169 => 0x4 },
@@ -1283,97 +1286,97 @@ my %tagLookup = (
'contrastmonochrome' => { 18 => 0xed, 61 => 0x78, 62 => 0x78 },
'contrastneutral' => { 18 => 0xeb, 61 => 0x48, 62 => 0x48 },
'contrastportrait' => { 18 => 0xe9, 61 => 0x18, 62 => 0x18 },
- 'contrastsetting' => { 249 => 0x505, 257 => 0x1012, 343 => 0x10, 357 => 0x8 },
+ 'contrastsetting' => { 249 => 0x505, 257 => 0x1012, 345 => 0x10, 359 => 0x8 },
'contrastshadow' => { 302 => 0x6e },
'contraststandard' => { 18 => 0xe8, 61 => 0x0, 62 => 0x0 },
'contrastuserdef1' => { 18 => 0xee, 61 => 0x90, 62 => 0xa8 },
'contrastuserdef2' => { 18 => 0xef, 61 => 0xa8, 62 => 0xc0 },
'contrastuserdef3' => { 18 => 0xf0, 61 => 0xc0, 62 => 0xd8 },
- 'contributedmedia' => { 421 => 'contributedMedia' },
- 'contributedmediaduration' => { 421 => [\'contributedMedia','contributedMediaDuration'] },
- 'contributedmediadurationscale' => { 421 => [\'contributedMedia','contributedMediaDurationScale'] },
- 'contributedmediadurationvalue' => { 421 => [\'contributedMedia','contributedMediaDurationValue'] },
- 'contributedmediamanaged' => { 421 => [\'contributedMedia','contributedMediaManaged'] },
- 'contributedmediapath' => { 421 => [\'contributedMedia','contributedMediaPath'] },
- 'contributedmediastarttime' => { 421 => [\'contributedMedia','contributedMediaStartTime'] },
- 'contributedmediastarttimescale' => { 421 => [\'contributedMedia','contributedMediaStartTimeScale'] },
- 'contributedmediastarttimevalue' => { 421 => [\'contributedMedia','contributedMediaStartTimeValue'] },
- 'contributedmediatrack' => { 421 => [\'contributedMedia','contributedMediaTrack'] },
- 'contributedmediawebstatement' => { 421 => [\'contributedMedia','contributedMediaWebStatement'] },
- 'contributor' => { 397 => 'contributor' },
+ 'contributedmedia' => { 423 => 'contributedMedia' },
+ 'contributedmediaduration' => { 423 => [\'contributedMedia','contributedMediaDuration'] },
+ 'contributedmediadurationscale' => { 423 => [\'contributedMedia','contributedMediaDurationScale'] },
+ 'contributedmediadurationvalue' => { 423 => [\'contributedMedia','contributedMediaDurationValue'] },
+ 'contributedmediamanaged' => { 423 => [\'contributedMedia','contributedMediaManaged'] },
+ 'contributedmediapath' => { 423 => [\'contributedMedia','contributedMediaPath'] },
+ 'contributedmediastarttime' => { 423 => [\'contributedMedia','contributedMediaStartTime'] },
+ 'contributedmediastarttimescale' => { 423 => [\'contributedMedia','contributedMediaStartTimeScale'] },
+ 'contributedmediastarttimevalue' => { 423 => [\'contributedMedia','contributedMediaStartTimeValue'] },
+ 'contributedmediatrack' => { 423 => [\'contributedMedia','contributedMediaTrack'] },
+ 'contributedmediawebstatement' => { 423 => [\'contributedMedia','contributedMediaWebStatement'] },
+ 'contributor' => { 399 => 'contributor' },
'contributors' => { 136 => 'Contributors' },
'controldialset' => { 160 => 0x46 },
- 'controlledvocabularyterm' => { 406 => 'CVterm' },
+ 'controlledvocabularyterm' => { 408 => 'CVterm' },
'controllerboardversion' => { 265 => 0x332 },
'controlmode' => { 67 => 0x12 },
'conversionlens' => { 250 => 0x403, 269 => 0x35 },
- 'converter' => { 105 => 0xfe4d, 219 => 0xb, 396 => 'Converter' },
- 'converttograyscale' => { 396 => 'ConvertToGrayscale' },
- 'cookingequipment' => { 413 => 'cookingEquipment' },
- 'cookingmethod' => { 413 => 'cookingMethod' },
- 'copyright' => { 0 => 0x3, 105 => 0x8298, 136 => 'Copyright', 261 => 'Copyright', 302 => 0x22f, 316 => 'Copyright', 407 => 'Copyright', 414 => 'copyright', 417 => 'Copyright', 421 => 'copyright' },
- 'copyrightflag' => { 314 => 0x40a },
+ 'converter' => { 105 => 0xfe4d, 219 => 0xb, 398 => 'Converter' },
+ 'converttograyscale' => { 398 => 'ConvertToGrayscale' },
+ 'cookingequipment' => { 415 => 'cookingEquipment' },
+ 'cookingmethod' => { 415 => 'cookingMethod' },
+ 'copyright' => { 0 => 0x3, 105 => 0x8298, 136 => 'Copyright', 261 => 'Copyright', 302 => 0x22f, 318 => 'Copyright', 409 => 'Copyright', 416 => 'copyright', 419 => 'Copyright', 423 => 'copyright' },
+ 'copyrightflag' => { 316 => 0x40a },
'copyrightnotice' => { 113 => 0x74 },
- 'copyrightowner' => { 409 => 'CopyrightOwner' },
- 'copyrightownerid' => { 409 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] },
- 'copyrightownerimageid' => { 409 => 'CopyrightOwnerImageID' },
- 'copyrightownername' => { 409 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] },
- 'copyrightregistrationnumber' => { 409 => 'CopyrightRegistrationNumber' },
- 'copyrightstatus' => { 409 => 'CopyrightStatus' },
- 'copyrightyear' => { 411 => 'copyrightYear' },
+ 'copyrightowner' => { 411 => 'CopyrightOwner' },
+ 'copyrightownerid' => { 411 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] },
+ 'copyrightownerimageid' => { 411 => 'CopyrightOwnerImageID' },
+ 'copyrightownername' => { 411 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] },
+ 'copyrightregistrationnumber' => { 411 => 'CopyrightRegistrationNumber' },
+ 'copyrightstatus' => { 411 => 'CopyrightStatus' },
+ 'copyrightyear' => { 413 => 'copyrightYear' },
'coringfilter' => { 253 => 0x310, 254 => 0x102d, 257 => 0x310 },
'coringvalues' => { 253 => 0x311, 257 => 0x311 },
- 'corporateentity' => { 411 => 'corporateEntity' },
- 'country' => { 140 => 'Country', 269 => 0x69, 408 => 'Country' },
+ 'corporateentity' => { 413 => 'corporateEntity' },
+ 'country' => { 140 => 'Country', 269 => 0x69, 410 => 'Country' },
'country-primarylocationcode' => { 113 => 0x64 },
'country-primarylocationname' => { 113 => 0x65 },
- 'countrycode' => { 192 => 0x5, 312 => 'CountryCode', 405 => 'CountryCode' },
- 'course' => { 413 => 'course' },
- 'coverage' => { 397 => 'coverage' },
- 'coverdate' => { 411 => 'coverDate' },
- 'coverdisplaydate' => { 411 => 'coverDisplayDate' },
+ 'countrycode' => { 192 => 0x5, 314 => 'CountryCode', 407 => 'CountryCode' },
+ 'course' => { 415 => 'course' },
+ 'coverage' => { 399 => 'coverage' },
+ 'coverdate' => { 413 => 'coverDate' },
+ 'coverdisplaydate' => { 413 => 'coverDisplayDate' },
'cpufirmwareversion' => { 302 => 0x28 },
- 'crc32' => { 398 => 'crc32' },
- 'createdate' => { 105 => 0x9004, 136 => 'CreateDate', 258 => 'CreationDate', 261 => 'create-date', 316 => 'CreationDate', 318 => 0x1, 419 => 'CreateDate' },
- 'creationdate' => { 407 => 'CreationDate', 411 => 'creationDate' },
+ 'crc32' => { 400 => 'crc32' },
+ 'createdate' => { 105 => 0x9004, 136 => 'CreateDate', 258 => 'CreationDate', 261 => 'create-date', 318 => 'CreationDate', 320 => 0x1, 421 => 'CreateDate' },
+ 'creationdate' => { 409 => 'CreationDate', 413 => 'creationDate' },
'creationtime' => { 261 => 'Creation Time' },
- 'creativestyle' => { 341 => 0x1a, 342 => 0x18, 352 => 0x41, 353 => 0xb020, 377 => 0x4a },
- 'creativestylesetting' => { 343 => 0xf, 357 => 0x7 },
- 'creativestylewaschanged' => { 381 => 0x8001 },
- 'creator' => { 258 => 'Creator', 316 => 'Creator', 397 => 'creator', 407 => 'Creator' },
- 'creatoraddress' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] },
+ 'creativestyle' => { 343 => 0x1a, 344 => 0x18, 354 => 0x41, 355 => 0xb020, 379 => 0x4a },
+ 'creativestylesetting' => { 345 => 0xf, 359 => 0x7 },
+ 'creativestylewaschanged' => { 383 => 0x8001 },
+ 'creator' => { 258 => 'Creator', 318 => 'Creator', 399 => 'creator', 409 => 'Creator' },
+ 'creatoraddress' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] },
'creatorappid' => { 155 => 'CreatorAppId' },
- 'creatorcity' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] },
- 'creatorcontactinfo' => { 405 => 'CreatorContactInfo' },
- 'creatorcountry' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] },
+ 'creatorcity' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] },
+ 'creatorcontactinfo' => { 407 => 'CreatorContactInfo' },
+ 'creatorcountry' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] },
'creatoropenwithuioptions' => { 155 => 'CreatorOpenWithUIOptions' },
- 'creatorpostalcode' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] },
- 'creatorregion' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] },
- 'creatortool' => { 419 => 'CreatorTool' },
- 'creatorworkemail' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] },
- 'creatorworktelephone' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] },
- 'creatorworkurl' => { 405 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] },
- 'credit' => { 113 => 0x6e, 408 => 'Credit' },
- 'creditline' => { 414 => 'creditLine' },
- 'creditlinereq' => { 424 => 'CreditLineReq' },
- 'creditlinerequired' => { 409 => 'CreditLineRequired' },
+ 'creatorpostalcode' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] },
+ 'creatorregion' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] },
+ 'creatortool' => { 421 => 'CreatorTool' },
+ 'creatorworkemail' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] },
+ 'creatorworktelephone' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] },
+ 'creatorworkurl' => { 407 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] },
+ 'credit' => { 113 => 0x6e, 410 => 'Credit' },
+ 'creditline' => { 416 => 'creditLine' },
+ 'creditlinereq' => { 426 => 'CreditLineReq' },
+ 'creditlinerequired' => { 411 => 'CreditLineRequired' },
'cropactive' => { 90 => 0x0, 96 => 0x244 },
- 'cropangle' => { 396 => 'CropAngle' },
+ 'cropangle' => { 398 => 'CropAngle' },
'cropaspectratio' => { 91 => 0x30101, 96 => 0x260 },
'cropaspectratiocustom' => { 91 => 0x30102 },
- 'cropbottom' => { 109 => 0x9, 224 => 0x36, 273 => 0x31, 311 => 0xdc, 396 => 'CropBottom' },
+ 'cropbottom' => { 109 => 0x9, 224 => 0x36, 273 => 0x31, 313 => 0xdc, 398 => 'CropBottom' },
'cropbottommargin' => { 45 => 0x3 },
'cropcircleactive' => { 97 => 0xd6 },
'cropcircleradius' => { 97 => 0xd9 },
'cropcirclex' => { 97 => 0xd7 },
'cropcircley' => { 97 => 0xd8 },
- 'cropconstraintowarp' => { 396 => 'CropConstrainToWarp' },
- 'croph' => { 389 => 'CropH' },
- 'cropheight' => { 90 => 0x6, 96 => 0x24c, 253 => 0x615, 257 => 0x615, 396 => 'CropHeight' },
+ 'cropconstraintowarp' => { 398 => 'CropConstrainToWarp' },
+ 'croph' => { 391 => 'CropH' },
+ 'cropheight' => { 90 => 0x6, 96 => 0x24c, 253 => 0x615, 257 => 0x615, 398 => 'CropHeight' },
'crophispeed' => { 193 => 0x1b },
- 'cropleft' => { 96 => 0x246, 109 => 0x6, 224 => 0x1e, 253 => 0x612, 257 => 0x612, 273 => 0x30, 311 => 0xd9, 396 => 'CropLeft' },
+ 'cropleft' => { 96 => 0x246, 109 => 0x6, 224 => 0x1e, 253 => 0x612, 257 => 0x612, 273 => 0x30, 313 => 0xd9, 398 => 'CropLeft' },
'cropleftmargin' => { 45 => 0x0 },
- 'cropmode35mm' => { 325 => 0x1018 },
+ 'cropmode35mm' => { 327 => 0x1018 },
'croporiginalheight' => { 90 => 0xb },
'croporiginalwidth' => { 90 => 0xa },
'cropoutputheight' => { 224 => 0xce },
@@ -1383,56 +1386,56 @@ my %tagLookup = (
'cropoutputscale' => { 224 => 0xbe },
'cropoutputwidth' => { 224 => 0xc6 },
'cropoutputwidthinches' => { 224 => 0x8e },
- 'croppedareaimageheightpixels' => { 385 => 'CroppedAreaImageHeightPixels' },
- 'croppedareaimagewidthpixels' => { 385 => 'CroppedAreaImageWidthPixels' },
- 'croppedarealeftpixels' => { 385 => 'CroppedAreaLeftPixels' },
- 'croppedareatoppixels' => { 385 => 'CroppedAreaTopPixels' },
- 'croppedimageheight' => { 5 => 0x2, 325 => 0x1604 },
+ 'croppedareaimageheightpixels' => { 387 => 'CroppedAreaImageHeightPixels' },
+ 'croppedareaimagewidthpixels' => { 387 => 'CroppedAreaImageWidthPixels' },
+ 'croppedarealeftpixels' => { 387 => 'CroppedAreaLeftPixels' },
+ 'croppedareatoppixels' => { 387 => 'CroppedAreaTopPixels' },
+ 'croppedimageheight' => { 5 => 0x2, 327 => 0x1604 },
'croppedimageleft' => { 5 => 0x3 },
'croppedimagetop' => { 5 => 0x4 },
- 'croppedimagewidth' => { 5 => 0x1, 325 => 0x1603 },
- 'cropright' => { 109 => 0x8, 224 => 0x2e, 273 => 0x32, 311 => 0xdb, 396 => 'CropRight' },
+ 'croppedimagewidth' => { 5 => 0x1, 327 => 0x1603 },
+ 'cropright' => { 109 => 0x8, 224 => 0x2e, 273 => 0x32, 313 => 0xdb, 398 => 'CropRight' },
'croprightmargin' => { 45 => 0x1 },
'croprotatedoriginalheight' => { 90 => 0x2 },
'croprotatedoriginalwidth' => { 90 => 0x1 },
'croprotation' => { 90 => 0x8, 109 => 0xb },
'cropscaledresolution' => { 224 => 0x9e },
'cropsourceresolution' => { 224 => 0xae },
- 'croptop' => { 96 => 0x248, 109 => 0x7, 224 => 0x26, 253 => 0x613, 257 => 0x613, 273 => 0x2f, 311 => 0xda, 396 => 'CropTop' },
+ 'croptop' => { 96 => 0x248, 109 => 0x7, 224 => 0x26, 253 => 0x613, 257 => 0x613, 273 => 0x2f, 313 => 0xda, 398 => 'CropTop' },
'croptopmargin' => { 45 => 0x2 },
- 'cropunit' => { 396 => 'CropUnit' },
- 'cropunits' => { 396 => 'CropUnits' },
- 'cropw' => { 389 => 'CropW' },
- 'cropwidth' => { 90 => 0x5, 96 => 0x24a, 253 => 0x614, 257 => 0x614, 396 => 'CropWidth' },
- 'cropx' => { 90 => 0x3, 389 => 'CropX' },
- 'cropy' => { 90 => 0x4, 389 => 'CropY' },
+ 'cropunit' => { 398 => 'CropUnit' },
+ 'cropunits' => { 398 => 'CropUnits' },
+ 'cropw' => { 391 => 'CropW' },
+ 'cropwidth' => { 90 => 0x5, 96 => 0x24a, 253 => 0x614, 257 => 0x614, 398 => 'CropWidth' },
+ 'cropx' => { 90 => 0x3, 391 => 'CropX' },
+ 'cropy' => { 90 => 0x4, 391 => 'CropY' },
'crossprocess' => { 302 => 0x7b },
'crossprocessparams' => { 302 => 0x235 },
- 'cuisine' => { 413 => 'cuisine' },
+ 'cuisine' => { 415 => 'cuisine' },
'currenticcprofile' => { 105 => 0xc691 },
'currentpreprofilematrix' => { 105 => 0xc692 },
- 'currentversion' => { 381 => 0xd000 },
- 'curve0x' => { 389 => 'Curve0x' },
- 'curve0y' => { 389 => 'Curve0y' },
- 'curve1x' => { 389 => 'Curve1x' },
- 'curve1y' => { 389 => 'Curve1y' },
- 'curve2x' => { 389 => 'Curve2x' },
- 'curve2y' => { 389 => 'Curve2y' },
- 'curve3x' => { 389 => 'Curve3x' },
- 'curve3y' => { 389 => 'Curve3y' },
- 'curve4x' => { 389 => 'Curve4x' },
- 'curve4y' => { 389 => 'Curve4y' },
+ 'currentversion' => { 383 => 0xd000 },
+ 'curve0x' => { 391 => 'Curve0x' },
+ 'curve0y' => { 391 => 'Curve0y' },
+ 'curve1x' => { 391 => 'Curve1x' },
+ 'curve1y' => { 391 => 'Curve1y' },
+ 'curve2x' => { 391 => 'Curve2x' },
+ 'curve2y' => { 391 => 'Curve2y' },
+ 'curve3x' => { 391 => 'Curve3x' },
+ 'curve3y' => { 391 => 'Curve3y' },
+ 'curve4x' => { 391 => 'Curve4x' },
+ 'curve4y' => { 391 => 'Curve4y' },
'curves' => { 229 => 0x76a43201 },
- 'custom1' => { 409 => 'Custom1' },
- 'custom10' => { 409 => 'Custom10' },
- 'custom2' => { 409 => 'Custom2' },
- 'custom3' => { 409 => 'Custom3' },
- 'custom4' => { 409 => 'Custom4' },
- 'custom5' => { 409 => 'Custom5' },
- 'custom6' => { 409 => 'Custom6' },
- 'custom7' => { 409 => 'Custom7' },
- 'custom8' => { 409 => 'Custom8' },
- 'custom9' => { 409 => 'Custom9' },
+ 'custom1' => { 411 => 'Custom1' },
+ 'custom10' => { 411 => 'Custom10' },
+ 'custom2' => { 411 => 'Custom2' },
+ 'custom3' => { 411 => 'Custom3' },
+ 'custom4' => { 411 => 'Custom4' },
+ 'custom5' => { 411 => 'Custom5' },
+ 'custom6' => { 411 => 'Custom6' },
+ 'custom7' => { 411 => 'Custom7' },
+ 'custom8' => { 411 => 'Custom8' },
+ 'custom9' => { 411 => 'Custom9' },
'customcolortone' => { 97 => 0x4c },
'customcontrast' => { 97 => 0x4e },
'customcontrols' => { 73 => 0x70c },
@@ -1449,7 +1452,7 @@ my %tagLookup = (
'customrawhighlightpoint' => { 97 => 0x51 },
'customrawshadow' => { 97 => 0x85 },
'customrawshadowpoint' => { 97 => 0x52 },
- 'customrendered' => { 105 => 0xa401, 400 => 'CustomRendered' },
+ 'customrendered' => { 105 => 0xa401, 402 => 'CustomRendered' },
'customsaturation' => { 97 => 0x4d, 249 => 0x503 },
'customsettingsalldefault' => { 236 => '0.2', 242 => '0.2' },
'customsettingsbank' => { 236 => '0.1', 237 => '0.1', 242 => '0.1', 246 => '0.2' },
@@ -1457,8 +1460,8 @@ my %tagLookup = (
'customunsharpmaskfineness' => { 97 => 0xb8 },
'customunsharpmaskstrength' => { 97 => 0xb6 },
'customunsharpmaskthreshold' => { 97 => 0xba },
- 'customwb_rblevels' => { 357 => 0x1a },
- 'customwb_rgblevels' => { 342 => 0x8, 343 => 0x19 },
+ 'customwb_rblevels' => { 359 => 0x1a },
+ 'customwb_rgblevels' => { 344 => 0x8, 345 => 0x19 },
'customwbbluelevel' => { 160 => 0x36 },
'customwberror' => { 160 => 0x37 },
'customwbgreenlevel' => { 160 => 0x35 },
@@ -1472,26 +1475,26 @@ my %tagLookup = (
'd-lightinghs' => { 229 => 0xce5554aa },
'd-lightinghsadjustment' => { 226 => 0x0 },
'd-lightinghscolorboost' => { 226 => 0x1 },
- 'd-rangeoptimizerhighlight' => { 381 => 0x8024 },
- 'd-rangeoptimizermode' => { 381 => 0x8022 },
- 'd-rangeoptimizershadow' => { 381 => 0x802d },
- 'd-rangeoptimizervalue' => { 381 => 0x8023 },
+ 'd-rangeoptimizerhighlight' => { 383 => 0x8024 },
+ 'd-rangeoptimizermode' => { 383 => 0x8022 },
+ 'd-rangeoptimizershadow' => { 383 => 0x802d },
+ 'd-rangeoptimizervalue' => { 383 => 0x8023 },
'd810meteringmode' => { 217 => 0x175e },
'datacompressionmethod' => { 115 => 0x6e },
'dataimprint' => { 157 => 0x34 },
'datascaling' => { 302 => 0x3d },
- 'date' => { 302 => 0x6, 397 => 'date' },
+ 'date' => { 302 => 0x6, 399 => 'date' },
'dateacquired' => { 155 => 'DateAcquired' },
- 'datecreated' => { 113 => 0x37, 408 => 'DateCreated' },
+ 'datecreated' => { 113 => 0x37, 410 => 'DateCreated' },
'datedisplayformat' => { 221 => 0x3 },
'dateidentified' => { 104 => [\'Identification','IdentificationDateIdentified'] },
'dateimprint' => { 239 => '4.2' },
- 'daterecieved' => { 411 => 'dateRecieved' },
+ 'daterecieved' => { 413 => 'dateRecieved' },
'datesent' => { 114 => 0x46 },
'datestampmode' => { 55 => 0x1c },
- 'datetime' => { 390 => 'datetime', 417 => 'DateTime' },
- 'datetimedigitized' => { 400 => 'DateTimeDigitized' },
- 'datetimeoriginal' => { 89 => 0x0, 105 => 0x9003, 133 => 0x14, 136 => 'OriginalDate', 321 => 0xb, 400 => 'DateTimeOriginal' },
+ 'datetime' => { 392 => 'datetime', 419 => 'DateTime' },
+ 'datetimedigitized' => { 402 => 'DateTimeDigitized' },
+ 'datetimeoriginal' => { 89 => 0x0, 105 => 0x9003, 133 => 0x14, 136 => 'OriginalDate', 323 => 0xb, 402 => 'DateTimeOriginal' },
'datetimestamp' => { 121 => 0x64 },
'datetimeutc' => { 249 => 0x908 },
'daylightsavings' => { 68 => 0x3, 221 => 0x2 },
@@ -1549,54 +1552,54 @@ my %tagLookup = (
'defaulteraseoption' => { 73 => 0x813 },
'defaultscale' => { 105 => 0xc61e },
'defaultusercrop' => { 105 => 0xc7b5 },
- 'defringe' => { 396 => 'Defringe' },
- 'defringegreenamount' => { 396 => 'DefringeGreenAmount' },
- 'defringegreenhuehi' => { 396 => 'DefringeGreenHueHi' },
- 'defringegreenhuelo' => { 396 => 'DefringeGreenHueLo' },
- 'defringepurpleamount' => { 396 => 'DefringePurpleAmount' },
- 'defringepurplehuehi' => { 396 => 'DefringePurpleHueHi' },
- 'defringepurplehuelo' => { 396 => 'DefringePurpleHueLo' },
+ 'defringe' => { 398 => 'Defringe' },
+ 'defringegreenamount' => { 398 => 'DefringeGreenAmount' },
+ 'defringegreenhuehi' => { 398 => 'DefringeGreenHueHi' },
+ 'defringegreenhuelo' => { 398 => 'DefringeGreenHueLo' },
+ 'defringepurpleamount' => { 398 => 'DefringePurpleAmount' },
+ 'defringepurplehuehi' => { 398 => 'DefringePurpleHueHi' },
+ 'defringepurplehuelo' => { 398 => 'DefringePurpleHueLo' },
'deletedimagecount' => { 193 => 0xa6, 200 => 0x6e },
- 'deprecatedon' => { 393 => 'deprecatedOn' },
- 'derivedfrom' => { 422 => 'DerivedFrom' },
- 'derivedfromalternatepaths' => { 422 => [\'DerivedFrom','DerivedFromAlternatePaths'] },
- 'derivedfromdocumentid' => { 422 => [\'DerivedFrom','DerivedFromDocumentID'] },
- 'derivedfromfilepath' => { 422 => [\'DerivedFrom','DerivedFromFilePath'] },
- 'derivedfromfrompart' => { 422 => [\'DerivedFrom','DerivedFromFromPart'] },
- 'derivedfrominstanceid' => { 422 => [\'DerivedFrom','DerivedFromInstanceID'] },
- 'derivedfromlastmodifydate' => { 422 => [\'DerivedFrom','DerivedFromLastModifyDate'] },
- 'derivedfrommanager' => { 422 => [\'DerivedFrom','DerivedFromManager'] },
- 'derivedfrommanagervariant' => { 422 => [\'DerivedFrom','DerivedFromManagerVariant'] },
- 'derivedfrommanageto' => { 422 => [\'DerivedFrom','DerivedFromManageTo'] },
- 'derivedfrommanageui' => { 422 => [\'DerivedFrom','DerivedFromManageUI'] },
- 'derivedfrommaskmarkers' => { 422 => [\'DerivedFrom','DerivedFromMaskMarkers'] },
- 'derivedfromoriginaldocumentid' => { 422 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] },
- 'derivedfrompartmapping' => { 422 => [\'DerivedFrom','DerivedFromPartMapping'] },
- 'derivedfromrenditionclass' => { 422 => [\'DerivedFrom','DerivedFromRenditionClass'] },
- 'derivedfromrenditionparams' => { 422 => [\'DerivedFrom','DerivedFromRenditionParams'] },
- 'derivedfromtopart' => { 422 => [\'DerivedFrom','DerivedFromToPart'] },
- 'derivedfromversionid' => { 422 => [\'DerivedFrom','DerivedFromVersionID'] },
- 'description' => { 261 => 'Description', 397 => 'description', 419 => 'Description' },
+ 'deprecatedon' => { 395 => 'deprecatedOn' },
+ 'derivedfrom' => { 424 => 'DerivedFrom' },
+ 'derivedfromalternatepaths' => { 424 => [\'DerivedFrom','DerivedFromAlternatePaths'] },
+ 'derivedfromdocumentid' => { 424 => [\'DerivedFrom','DerivedFromDocumentID'] },
+ 'derivedfromfilepath' => { 424 => [\'DerivedFrom','DerivedFromFilePath'] },
+ 'derivedfromfrompart' => { 424 => [\'DerivedFrom','DerivedFromFromPart'] },
+ 'derivedfrominstanceid' => { 424 => [\'DerivedFrom','DerivedFromInstanceID'] },
+ 'derivedfromlastmodifydate' => { 424 => [\'DerivedFrom','DerivedFromLastModifyDate'] },
+ 'derivedfrommanager' => { 424 => [\'DerivedFrom','DerivedFromManager'] },
+ 'derivedfrommanagervariant' => { 424 => [\'DerivedFrom','DerivedFromManagerVariant'] },
+ 'derivedfrommanageto' => { 424 => [\'DerivedFrom','DerivedFromManageTo'] },
+ 'derivedfrommanageui' => { 424 => [\'DerivedFrom','DerivedFromManageUI'] },
+ 'derivedfrommaskmarkers' => { 424 => [\'DerivedFrom','DerivedFromMaskMarkers'] },
+ 'derivedfromoriginaldocumentid' => { 424 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] },
+ 'derivedfrompartmapping' => { 424 => [\'DerivedFrom','DerivedFromPartMapping'] },
+ 'derivedfromrenditionclass' => { 424 => [\'DerivedFrom','DerivedFromRenditionClass'] },
+ 'derivedfromrenditionparams' => { 424 => [\'DerivedFrom','DerivedFromRenditionParams'] },
+ 'derivedfromtopart' => { 424 => [\'DerivedFrom','DerivedFromToPart'] },
+ 'derivedfromversionid' => { 424 => [\'DerivedFrom','DerivedFromVersionID'] },
+ 'description' => { 261 => 'Description', 399 => 'description', 421 => 'Description' },
'destination' => { 114 => 0x5 },
'destinationcity' => { 302 => 0x24, 308 => 0x3 },
'destinationcitycode' => { 309 => 0x1001 },
'destinationdst' => { 302 => 0x26, 308 => '0.3' },
'developmentdynamicrange' => { 110 => 0x1403 },
- 'device' => { 411 => 'device' },
- 'devicesettingdescription' => { 400 => 'DeviceSettingDescription' },
- 'devicesettingdescriptioncolumns' => { 400 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] },
- 'devicesettingdescriptionrows' => { 400 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] },
- 'devicesettingdescriptionsettings' => { 400 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] },
- 'devicetype' => { 331 => 0x2 },
+ 'device' => { 413 => 'device' },
+ 'devicesettingdescription' => { 402 => 'DeviceSettingDescription' },
+ 'devicesettingdescriptioncolumns' => { 402 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] },
+ 'devicesettingdescriptionrows' => { 402 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] },
+ 'devicesettingdescriptionsettings' => { 402 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] },
+ 'devicetype' => { 333 => 0x2 },
'dialdirectiontvav' => { 73 => 0x706 },
- 'dietaryneeds' => { 413 => 'dietaryNeeds' },
+ 'dietaryneeds' => { 415 => 'dietaryNeeds' },
'diffractioncorrection' => { 292 => 0x3 },
'digitalcreationdate' => { 113 => 0x3e },
'digitalcreationtime' => { 113 => 0x3f },
'digitaldeehighlightadj' => { 199 => 0x202 },
'digitaldeeshadowadj' => { 199 => 0x200 },
'digitaldeethreshold' => { 199 => 0x201 },
- 'digitalfilter' => { 334 => 0x59 },
+ 'digitalfilter' => { 336 => 0x59 },
'digitalfilter01' => { 289 => 0x5 },
'digitalfilter02' => { 289 => 0x16 },
'digitalfilter03' => { 289 => 0x27 },
@@ -1620,38 +1623,38 @@ my %tagLookup = (
'digitalgain' => { 65 => 0xb },
'digitalgem' => { 185 => 0x0 },
'digitalice' => { 199 => 0x100 },
- 'digitalimageguid' => { 406 => 'DigImageGUID' },
+ 'digitalimageguid' => { 408 => 'DigImageGUID' },
'digitalroc' => { 197 => 0x0 },
- 'digitalsourcefiletype' => { 406 => 'DigitalSourcefileType' },
- 'digitalsourcetype' => { 406 => 'DigitalSourceType' },
- 'digitalzoom' => { 31 => 0xc, 100 => 0xa, 121 => 0x68, 135 => 'DigitalZoom', 157 => 0xc, 193 => 0x86, 219 => 0xa, 254 => 0x204, 302 => 0x1e, 309 => 0xa, 333 => 0x204, 369 => 0x12, 370 => 0x12 },
- 'digitalzoomon' => { 333 => 0x21b },
- 'digitalzoomratio' => { 105 => 0xa404, 362 => 0x200, 364 => 0x21c, 400 => 'DigitalZoomRatio' },
- 'director' => { 421 => 'director' },
- 'directorphotography' => { 421 => 'directorPhotography' },
+ 'digitalsourcefiletype' => { 408 => 'DigitalSourcefileType' },
+ 'digitalsourcetype' => { 408 => 'DigitalSourceType' },
+ 'digitalzoom' => { 31 => 0xc, 100 => 0xa, 121 => 0x68, 135 => 'DigitalZoom', 157 => 0xc, 193 => 0x86, 219 => 0xa, 254 => 0x204, 302 => 0x1e, 309 => 0xa, 335 => 0x204, 371 => 0x12, 372 => 0x12 },
+ 'digitalzoomon' => { 335 => 0x21b },
+ 'digitalzoomratio' => { 105 => 0xa404, 364 => 0x200, 366 => 0x21c, 402 => 'DigitalZoomRatio' },
+ 'director' => { 423 => 'director' },
+ 'directorphotography' => { 423 => 'directorPhotography' },
'directory' => { 106 => 'Directory' },
'directoryindex' => { 6 => 0x137, 8 => 0x2dc, 10 => 0x17e, 12 => 0x238, 13 => 0x13f, 14 => 0x133, 15 => 0x1df, 16 => 0x1a7, 17 => 0x1f0, 18 => 0xcc, 19 => 0x1c7, 20 => 0x298, 21 => 0x1e7, 22 => 0x1e5, 23 => [0x27c,0x280], 24 => 0x2b6, 25 => 0x2bf, 26 => 0x1f7 },
'directoryindex2' => { 20 => 0x29c },
'directorynumber' => { 181 => 0x3 },
'disclaimer' => { 261 => 'Disclaimer' },
- 'discnumber' => { 421 => 'discNumber' },
- 'dishtype' => { 413 => 'dishType' },
+ 'discnumber' => { 423 => 'discNumber' },
+ 'dishtype' => { 415 => 'dishType' },
'displayallafpoints' => { 73 => 0x514 },
'displayaperture' => { 31 => 0x23 },
- 'displayedunitsx' => { 315 => 0x2 },
- 'displayedunitsy' => { 315 => 0x6 },
- 'displayname' => { 410 => 'displayName' },
+ 'displayedunitsx' => { 317 => 0x2 },
+ 'displayedunitsy' => { 317 => 0x6 },
+ 'displayname' => { 412 => 'displayName' },
'distance1' => { 121 => 0x28 },
'distance2' => { 121 => 0x2c },
'distance3' => { 121 => 0x30 },
'distance4' => { 121 => 0x34 },
- 'distortion' => { 331 => 0xa050 },
+ 'distortion' => { 333 => 0xa050 },
'distortioncontrol' => { 200 => 0x10 },
- 'distortioncorrection' => { 91 => 0x20705, 97 => 0x67, 249 => 0x50b, 272 => '7.1', 292 => 0x0, 376 => 0x601, 377 => 0x5b },
+ 'distortioncorrection' => { 91 => 0x20705, 97 => 0x67, 249 => 0x50b, 272 => '7.1', 292 => 0x0, 378 => 0x601, 379 => 0x5b },
'distortioncorrection2' => { 253 => 0x1011 },
- 'distortioncorrectionalreadyapplied' => { 392 => 'DistortionCorrectionAlreadyApplied' },
+ 'distortioncorrectionalreadyapplied' => { 394 => 'DistortionCorrectionAlreadyApplied' },
'distortioncorrectionon' => { 91 => '0x20705.0', 97 => 0x63 },
- 'distortioncorrectionsetting' => { 353 => 0x2013 },
+ 'distortioncorrectionsetting' => { 355 => 0x2013 },
'distortioneffect' => { 91 => 0x20709 },
'distortionn' => { 272 => 0xc },
'distortionparam02' => { 272 => 0x2 },
@@ -1660,48 +1663,48 @@ my %tagLookup = (
'distortionparam09' => { 272 => 0x9 },
'distortionparam11' => { 272 => 0xb },
'distortionscale' => { 272 => 0x5 },
- 'distributor' => { 411 => 'distributor' },
- 'distributorproductid' => { 410 => 'distributorProductID' },
+ 'distributor' => { 413 => 'distributor' },
+ 'distributorproductid' => { 412 => 'distributorProductID' },
'dloon' => { 91 => '0x20706.0', 97 => 0xdc },
'dlosetting' => { 91 => 0x20706, 97 => 0xdd },
'dlosettingapplied' => { 97 => 0xe4 },
'dloshootingdistance' => { 97 => 0xde },
'dloversion' => { 97 => 0xe5 },
- 'dmcomment' => { 421 => 'comment' },
+ 'dmcomment' => { 423 => 'comment' },
'dngadobedata' => { 105 => 0xc634 },
'dngbackwardversion' => { 105 => 0xc613 },
'dnglensinfo' => { 105 => 0xc630 },
'dngprivatedata' => { 105 => 0xc634 },
'dngversion' => { 105 => 0xc612 },
'document' => { 261 => 'Document' },
- 'documentancestors' => { 408 => 'DocumentAncestors' },
+ 'documentancestors' => { 410 => 'DocumentAncestors' },
'documenthistory' => { 113 => 0xe7 },
- 'documentid' => { 422 => 'DocumentID' },
+ 'documentid' => { 424 => 'DocumentID' },
'documentname' => { 105 => 0x10d },
'documentnotes' => { 113 => 0xe6 },
- 'doi' => { 411 => 'doi' },
+ 'doi' => { 413 => 'doi' },
'dotrange' => { 105 => 0x150 },
- 'dpp' => { 390 => 'dpp' },
+ 'dpp' => { 392 => 'dpp' },
'dr4cameramodel' => { 92 => 0x3 },
- 'drivemode' => { 101 => 0x3103, 157 => 0x6, 160 => 0x1e, 163 => 0xe, 249 => 0x600, 302 => 0x34, 325 => 0x1002, 334 => 0x3, 341 => 0x4, 342 => 0x7e, 343 => 0x34 },
- 'drivemode2' => { 160 => 0xa, 283 => 0x7, 352 => 0xe, 357 => 0x1 },
- 'drivemodesetting' => { 343 => 0x4 },
+ 'drivemode' => { 101 => 0x3103, 157 => 0x6, 160 => 0x1e, 163 => 0xe, 249 => 0x600, 302 => 0x34, 327 => 0x1002, 336 => 0x3, 343 => 0x4, 344 => 0x7e, 345 => 0x34 },
+ 'drivemode2' => { 160 => 0xa, 283 => 0x7, 354 => 0xe, 359 => 0x1 },
+ 'drivemodesetting' => { 345 => 0x4 },
'dspfirmwareversion' => { 302 => 0x27 },
- 'duration' => { 58 => 0x6a, 134 => 'Duration', 148 => 'Duration', 413 => 'duration', 421 => 'duration' },
- 'durationscale' => { 421 => [\'duration','durationScale'] },
- 'durationvalue' => { 421 => [\'duration','durationValue'] },
+ 'duration' => { 58 => 0x6a, 134 => 'Duration', 148 => 'Duration', 415 => 'duration', 423 => 'duration' },
+ 'durationscale' => { 423 => [\'duration','durationScale'] },
+ 'durationvalue' => { 423 => [\'duration','durationValue'] },
'dustremovaldata' => { 55 => 0x97 },
'dynamicafarea' => { 236 => '1.4', 242 => '1.4' },
'dynamicareaafdisplay' => { 237 => '46.1', 246 => '47.1' },
'dynamicrange' => { 110 => 0x1400 },
- 'dynamicrangeexpansion' => { 302 => 0x69, 325 => 0x100e },
+ 'dynamicrangeexpansion' => { 302 => 0x69, 327 => 0x100e },
'dynamicrangemax' => { 96 => 0x7c },
'dynamicrangemin' => { 96 => 0x7a },
- 'dynamicrangeoptimizer' => { 160 => 0x15, 353 => [0xb025,0xb04f], 360 => 0x1144, 361 => [0x1144,0x324], 362 => [0x1120,0x300], 363 => [0x119c,0x37c], 364 => [0x1178,0x328], 365 => [0x1030,0x50], 366 => [0x228,0x50], 367 => [0x228,0x50] },
- 'dynamicrangeoptimizerbracket' => { 352 => 0x2e },
- 'dynamicrangeoptimizerlevel' => { 341 => 0x19, 342 => 0x17, 343 => 0xd, 352 => 0x79, 357 => 0x5 },
- 'dynamicrangeoptimizermode' => { 163 => 0x15, 341 => 0x18, 342 => 0x16, 352 => [0x77,0x15] },
- 'dynamicrangeoptimizersetting' => { 160 => 0x27, 343 => 0xc, 357 => 0x4 },
+ 'dynamicrangeoptimizer' => { 160 => 0x15, 355 => [0xb025,0xb04f], 362 => 0x1144, 363 => [0x1144,0x324], 364 => [0x1120,0x300], 365 => [0x119c,0x37c], 366 => [0x1178,0x328], 367 => [0x1030,0x50], 368 => [0x228,0x50], 369 => [0x228,0x50] },
+ 'dynamicrangeoptimizerbracket' => { 354 => 0x2e },
+ 'dynamicrangeoptimizerlevel' => { 343 => 0x19, 344 => 0x17, 345 => 0xd, 354 => 0x79, 359 => 0x5 },
+ 'dynamicrangeoptimizermode' => { 163 => 0x15, 343 => 0x18, 344 => 0x16, 354 => [0x77,0x15] },
+ 'dynamicrangeoptimizersetting' => { 160 => 0x27, 345 => 0xc, 359 => 0x4 },
'dynamicrangesetting' => { 110 => 0x1402 },
'e-dialinprogram' => { 283 => '1.3' },
'earliestageorloweststage' => { 104 => [\'GeologicalContext','GeologicalContextEarliestAgeOrLowestStage'] },
@@ -1712,30 +1715,30 @@ my %tagLookup = (
'easyexposurecomp' => { 247 => '6.1' },
'easyexposurecompensation' => { 236 => '6.4', 237 => '6.5', 242 => '4.4', 243 => '5.2', 246 => '6.3' },
'easymode' => { 31 => 0xb },
- 'edgenoisereduction' => { 230 => 0x4, 381 => 0x8028 },
- 'edition' => { 411 => 'edition' },
+ 'edgenoisereduction' => { 230 => 0x4, 383 => 0x8028 },
+ 'edition' => { 413 => 'edition' },
'editorialupdate' => { 113 => 0x8 },
- 'editstatus' => { 113 => 0x7, 312 => 'EditStatus' },
+ 'editstatus' => { 113 => 0x7, 314 => 'EditStatus' },
'editversionname' => { 229 => 0x3d136244 },
'effectivelv' => { 302 => 0x2d },
'effectivemaxaperture' => { 189 => 0x12, 190 => 0x13 },
- 'eissn' => { 411 => 'eIssn' },
+ 'eissn' => { 413 => 'eIssn' },
'electronicfront-curtainshutter' => { 246 => '5.3' },
'elevation' => { 144 => 'Elevation' },
'email' => { 136 => 'EMail' },
- 'embargodate' => { 414 => 'embargoDate' },
- 'embdencrightsexpr' => { 406 => 'EmbdEncRightsExpr' },
- 'embeddedencodedrightsexpr' => { 406 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] },
- 'embeddedencodedrightsexprlangid' => { 406 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] },
- 'embeddedencodedrightsexprtype' => { 406 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] },
- 'embeddedxmpdigest' => { 408 => 'EmbeddedXMPDigest' },
+ 'embargodate' => { 416 => 'embargoDate' },
+ 'embdencrightsexpr' => { 408 => 'EmbdEncRightsExpr' },
+ 'embeddedencodedrightsexpr' => { 408 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] },
+ 'embeddedencodedrightsexprlangid' => { 408 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] },
+ 'embeddedencodedrightsexprtype' => { 408 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] },
+ 'embeddedxmpdigest' => { 410 => 'EmbeddedXMPDigest' },
'emissivity' => { 107 => 0x3 },
- 'encryptionkey' => { 331 => 0xa020 },
- 'endingpage' => { 411 => 'endingPage' },
- 'enduser' => { 409 => 'EndUser' },
- 'enduserid' => { 409 => [\'EndUser','EndUserEndUserID'] },
- 'endusername' => { 409 => [\'EndUser','EndUserEndUserName'] },
- 'engineer' => { 421 => 'engineer' },
+ 'encryptionkey' => { 333 => 0xa020 },
+ 'endingpage' => { 413 => 'endingPage' },
+ 'enduser' => { 411 => 'EndUser' },
+ 'enduserid' => { 411 => [\'EndUser','EndUserEndUserID'] },
+ 'endusername' => { 411 => [\'EndUser','EndUserEndUserName'] },
+ 'engineer' => { 423 => 'engineer' },
'enhancedarktones' => { 222 => 0x8 },
'enhancement' => { 100 => 0x16, 101 => 0x3016 },
'enhancer' => { 253 => 0x300 },
@@ -1746,15 +1749,15 @@ my %tagLookup = (
'epsonimageheight' => { 254 => 0x20c },
'epsonimagewidth' => { 254 => 0x20b },
'epsonsoftware' => { 254 => 0x20d },
- 'equipmentinstitution' => { 383 => 'EquipmentInstitution' },
- 'equipmentmanufacturer' => { 383 => 'EquipmentManufacturer' },
+ 'equipmentinstitution' => { 385 => 'EquipmentInstitution' },
+ 'equipmentmanufacturer' => { 385 => 'EquipmentManufacturer' },
'equipmentversion' => { 250 => 0x0 },
'ettlii' => { 73 => 0x304, 74 => 0xd, 75 => 0xe, 76 => 0x7, 77 => 0x7, 78 => 0xe },
- 'event' => { 384 => 'Event', 388 => 'Event', 406 => 'Event', 411 => 'event' },
- 'eventalias' => { 410 => 'eventAlias' },
+ 'event' => { 386 => 'Event', 390 => 'Event', 408 => 'Event', 413 => 'event' },
+ 'eventalias' => { 412 => 'eventAlias' },
'eventday' => { 104 => [\'Event','EventDay'] },
'eventearliestdate' => { 104 => [\'Event','EventEarliestDate'] },
- 'eventend' => { 410 => 'eventEnd' },
+ 'eventend' => { 412 => 'eventEnd' },
'eventenddayofyear' => { 104 => [\'Event','EventEndDayOfYear'] },
'eventfieldnotes' => { 104 => [\'Event','EventFieldNotes'] },
'eventfieldnumber' => { 104 => [\'Event','EventFieldNumber'] },
@@ -1762,44 +1765,44 @@ my %tagLookup = (
'eventid' => { 104 => [\'Event','EventEventID'] },
'eventlatestdate' => { 104 => [\'Event','EventLatestDate'] },
'eventmonth' => { 104 => [\'Event','EventMonth'] },
- 'eventnumber' => { 321 => 0x9 },
+ 'eventnumber' => { 323 => 0x9 },
'eventremarks' => { 104 => [\'Event','EventEventRemarks'] },
'eventsamplingeffort' => { 104 => [\'Event','EventSamplingEffort'] },
'eventsamplingprotocol' => { 104 => [\'Event','EventSamplingProtocol'] },
- 'eventstart' => { 410 => 'eventStart' },
+ 'eventstart' => { 412 => 'eventStart' },
'eventstartdayofyear' => { 104 => [\'Event','EventStartDayOfYear'] },
- 'eventsubtype' => { 410 => 'eventSubtype' },
+ 'eventsubtype' => { 412 => 'eventSubtype' },
'eventtime' => { 104 => [\'Event','EventEventTime'] },
- 'eventtype' => { 410 => 'eventType' },
+ 'eventtype' => { 412 => 'eventType' },
'eventverbatimeventdate' => { 104 => [\'Event','EventVerbatimEventDate'] },
'eventyear' => { 104 => [\'Event','EventYear'] },
'evsteps' => { 283 => '1.2', 285 => 0x0 },
'evstepsize' => { 239 => '5.1', 240 => '6.1', 241 => '6.1', 244 => '0.7' },
- 'exclusivityenddate' => { 414 => 'exclusivityEndDate' },
+ 'exclusivityenddate' => { 416 => 'exclusivityEndDate' },
'excursiontolerance' => { 115 => 0x82 },
'exif' => { 106 => 'EXIF' },
'exifbyteorder' => { 106 => 'ExifByteOrder' },
'exifcamerainfo' => { 113 => 0xe8 },
- 'exifimageheight' => { 105 => 0xa003, 400 => 'PixelYDimension' },
- 'exifimagewidth' => { 105 => 0xa002, 400 => 'PixelXDimension' },
+ 'exifimageheight' => { 105 => 0xa003, 402 => 'PixelYDimension' },
+ 'exifimagewidth' => { 105 => 0xa002, 402 => 'PixelXDimension' },
'exifunicodebyteorder' => { 106 => 'ExifUnicodeByteOrder' },
- 'exifversion' => { 105 => 0x9000, 400 => 'ExifVersion' },
+ 'exifversion' => { 105 => 0x9000, 402 => 'ExifVersion' },
'exitpupilposition' => { 189 => 0x4, 190 => 0x4 },
- 'expirationdate' => { 113 => 0x25, 414 => 'expirationDate' },
+ 'expirationdate' => { 113 => 0x25, 416 => 'expirationDate' },
'expirationtime' => { 113 => 0x26 },
- 'exposure' => { 105 => 0xfe51, 396 => 'Exposure' },
- 'exposure2012' => { 396 => 'Exposure2012' },
+ 'exposure' => { 105 => 0xfe51, 398 => 'Exposure' },
+ 'exposure2012' => { 398 => 'Exposure2012' },
'exposureadj' => { 227 => 0x0 },
'exposureadj2' => { 227 => 0x12 },
- 'exposureadjust' => { 334 => 0xc },
+ 'exposureadjust' => { 336 => 0xc },
'exposurebracketingindicatorlast' => { 160 => 0x52 },
- 'exposurebracketshotnumber' => { 163 => 0x2d, 352 => 0x2f },
+ 'exposurebracketshotnumber' => { 163 => 0x2d, 354 => 0x2f },
'exposurebracketstepsize' => { 283 => 0x8 },
'exposurebracketvalue' => { 193 => 0x19 },
- 'exposurecompensation' => { 67 => 0x6, 82 => 0x0, 105 => 0x9204, 121 => 0x24, 135 => 'ExposureComp', 153 => 'ExposureCompensation', 157 => 0xd, 158 => 0x53, 159 => 0x1e, 163 => 0x49c0, 254 => 0x1006, 302 => 0x16, 331 => 0xa013, 334 => [0xc,0x35,0x4d], 360 => 0x114c, 361 => 0x114c, 362 => 0x1128, 364 => 0x1180, 365 => 0x1038, 366 => 0x230, 367 => 0x230, 400 => 'ExposureBiasValue' },
- 'exposurecompensation2' => { 357 => [0x24,0x26,0x2a] },
+ 'exposurecompensation' => { 67 => 0x6, 82 => 0x0, 105 => 0x9204, 121 => 0x24, 135 => 'ExposureComp', 153 => 'ExposureCompensation', 157 => 0xd, 158 => 0x53, 159 => 0x1e, 163 => 0x49c0, 254 => 0x1006, 302 => 0x16, 311 => 0x402, 333 => 0xa013, 336 => [0xc,0x35,0x4d], 362 => 0x114c, 363 => 0x114c, 364 => 0x1128, 366 => 0x1180, 367 => 0x1038, 368 => 0x230, 369 => 0x230, 402 => 'ExposureBiasValue' },
+ 'exposurecompensation2' => { 359 => [0x24,0x26,0x2a] },
'exposurecompensationmode' => { 160 => 0x47, 163 => 0x2a },
- 'exposurecompensationset' => { 341 => 0x3, 342 => 0x3, 343 => 0x3, 357 => 0x1e },
+ 'exposurecompensationset' => { 343 => 0x3, 344 => 0x3, 345 => 0x3, 359 => 0x1e },
'exposurecompensationsetting' => { 160 => 0x1 },
'exposurecompstepsize' => { 236 => '6.3', 237 => '7.3', 242 => '4.3', 246 => '7.3' },
'exposurecontrolstep' => { 243 => '6.1' },
@@ -1807,16 +1810,16 @@ my %tagLookup = (
'exposurecount' => { 110 => 0x1032 },
'exposuredelaymode' => { 236 => '10.1', 237 => '11.1', 239 => '9.1', 240 => '10.1', 241 => '10.1', 242 => '10.4', 243 => '10.1', 244 => '6.4', 246 => '11.1', 247 => '11.2' },
'exposuredifference' => { 193 => 0xe },
- 'exposureindex' => { 105 => 0xa215, 400 => 'ExposureIndex' },
+ 'exposureindex' => { 105 => 0xa215, 402 => 'ExposureIndex' },
'exposureindicator' => { 160 => 0x50 },
- 'exposurelevelincrements' => { 71 => 0x6, 72 => 0x6, 73 => 0x101, 74 => 0x5, 75 => 0x6, 76 => 0x5, 77 => 0x5, 78 => 0x6, 79 => 0x4, 341 => 0x58, 342 => 0x58 },
- 'exposurelockused' => { 385 => 'ExposureLockUsed' },
- 'exposuremode' => { 105 => 0xa402, 135 => 'ExposureMode', 157 => 0x1, 158 => 0xa, 159 => 0x0, 160 => 0x0, 163 => 0x34, 249 => 0x200, 267 => 0x40d, 334 => 0x8, 353 => 0xb041, 400 => 'ExposureMode' },
+ 'exposurelevelincrements' => { 71 => 0x6, 72 => 0x6, 73 => 0x101, 74 => 0x5, 75 => 0x6, 76 => 0x5, 77 => 0x5, 78 => 0x6, 79 => 0x4, 343 => 0x58, 344 => 0x58 },
+ 'exposurelockused' => { 387 => 'ExposureLockUsed' },
+ 'exposuremode' => { 105 => 0xa402, 135 => 'ExposureMode', 157 => 0x1, 158 => 0xa, 159 => 0x0, 160 => 0x0, 163 => 0x34, 249 => 0x200, 267 => 0x40d, 336 => 0x8, 355 => 0xb041, 402 => 'ExposureMode' },
'exposuremodeinmanual' => { 73 => 0x10b },
- 'exposureprogram' => { 105 => 0x8822, 325 => 0x1001, 335 => 0x17e, 341 => 0x3c, 342 => 0x3c, 343 => 0x5, 347 => 0x14, 352 => 0x3f, 357 => 0x2, 360 => 0x1175, 361 => 0x1179, 362 => 0x1155, 363 => 0x11d1, 364 => 0x11ad, 365 => 0x1065, 366 => 0x25d, 367 => 0x25d, 377 => 0x48, 400 => 'ExposureProgram' },
+ 'exposureprogram' => { 105 => 0x8822, 327 => 0x1001, 337 => 0x17e, 343 => 0x3c, 344 => 0x3c, 345 => 0x5, 349 => 0x14, 354 => 0x3f, 359 => 0x2, 362 => 0x1175, 363 => 0x1179, 364 => 0x1155, 365 => 0x11d1, 366 => 0x11ad, 367 => 0x1065, 368 => 0x25d, 369 => 0x25d, 379 => 0x48, 402 => 'ExposureProgram' },
'exposureshift' => { 249 => 0x203 },
- 'exposuretime' => { 6 => 0x4, 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 => 0x6, 28 => 0x7, 67 => 0x16, 105 => 0x829a, 118 => 0xfd05, 121 => 0x20, 123 => 0xfa24, 125 => 0xf104, 128 => 0x12, 130 => 0x38, 133 => 0x10, 135 => 'ExposureTime', 157 => 0x9, 158 => 0x35, 159 => 0x48, 160 => 0x8, 163 => 0x49b8, 302 => 0x12, 331 => 0xa018, 334 => [0x32,0x4a], 341 => 0x0, 342 => 0x0, 357 => [0x21,0x23,0x27], 377 => 0x10, 400 => 'ExposureTime' },
- 'exposuretime2' => { 334 => [0x33,0x4b] },
+ 'exposuretime' => { 6 => 0x4, 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 => 0x6, 28 => 0x7, 67 => 0x16, 105 => 0x829a, 118 => 0xfd05, 121 => 0x20, 123 => 0xfa24, 125 => 0xf104, 128 => 0x12, 130 => 0x38, 133 => 0x10, 135 => 'ExposureTime', 157 => 0x9, 158 => 0x35, 159 => 0x48, 160 => 0x8, 163 => 0x49b8, 302 => 0x12, 333 => 0xa018, 336 => [0x32,0x4a], 343 => 0x0, 344 => 0x0, 359 => [0x21,0x23,0x27], 379 => 0x10, 402 => 'ExposureTime' },
+ 'exposuretime2' => { 336 => [0x33,0x4b] },
'exposuretuning' => { 193 => 0x1c },
'exposurevalue' => { 119 => 0x3 },
'exposurewarning' => { 110 => 0x1302 },
@@ -1845,7 +1848,7 @@ my %tagLookup = (
'externalflashmode' => { 254 => 0x1028, 290 => 0x2 },
'externalflashzoom' => { 252 => 0x1205, 254 => 0x1027 },
'externalsensorbrightnessvalue' => { 265 => 0x311, 271 => 0x3408 },
- 'extrainfoversion' => { 345 => 0x1a },
+ 'extrainfoversion' => { 347 => 0x1a },
'eyestartaf' => { 160 => 0x40 },
'face10position' => { 98 => 0x3f4, 99 => 0x1ec, 180 => 0x28, 287 => 0x12 },
'face10size' => { 288 => 0x12 },
@@ -1867,7 +1870,7 @@ my %tagLookup = (
'face18size' => { 288 => 0x22 },
'face19position' => { 287 => 0x24 },
'face19size' => { 288 => 0x24 },
- 'face1position' => { 46 => 0x8, 98 => 0xd, 99 => 0x18, 180 => 0x4, 263 => 0x1, 287 => 0x0, 322 => 0xbc, 348 => 0x1, 349 => 0x0, 350 => 0x0, 351 => 0x5b },
+ 'face1position' => { 46 => 0x8, 98 => 0xd, 99 => 0x18, 180 => 0x4, 263 => 0x1, 287 => 0x0, 324 => 0xbc, 350 => 0x1, 351 => 0x0, 352 => 0x0, 353 => 0x5b },
'face1size' => { 288 => 0x0 },
'face20position' => { 287 => 0x26 },
'face20size' => { 288 => 0x26 },
@@ -1889,7 +1892,7 @@ my %tagLookup = (
'face28size' => { 288 => 0x36 },
'face29position' => { 287 => 0x38 },
'face29size' => { 288 => 0x38 },
- 'face2position' => { 46 => 0xa, 98 => 0x7c, 99 => 0x4c, 180 => 0x8, 263 => 0x5, 287 => 0x2, 322 => 0xc8, 348 => 0x6, 349 => 0x20, 350 => 0x25, 351 => 0x65 },
+ 'face2position' => { 46 => 0xa, 98 => 0x7c, 99 => 0x4c, 180 => 0x8, 263 => 0x5, 287 => 0x2, 324 => 0xc8, 350 => 0x6, 351 => 0x20, 352 => 0x25, 353 => 0x65 },
'face2size' => { 288 => 0x2 },
'face30position' => { 287 => 0x3a },
'face30size' => { 288 => 0x3a },
@@ -1897,33 +1900,33 @@ my %tagLookup = (
'face31size' => { 288 => 0x3c },
'face32position' => { 287 => 0x3e },
'face32size' => { 288 => 0x3e },
- 'face3position' => { 46 => 0xc, 98 => 0xeb, 99 => 0x80, 180 => 0xc, 263 => 0x9, 287 => 0x4, 322 => 0xd4, 348 => 0xb, 349 => 0x40, 350 => 0x4a, 351 => 0x6f },
+ 'face3position' => { 46 => 0xc, 98 => 0xeb, 99 => 0x80, 180 => 0xc, 263 => 0x9, 287 => 0x4, 324 => 0xd4, 350 => 0xb, 351 => 0x40, 352 => 0x4a, 353 => 0x6f },
'face3size' => { 288 => 0x4 },
- 'face4position' => { 46 => 0xe, 98 => 0x15a, 99 => 0xb4, 180 => 0x10, 263 => 0xd, 287 => 0x6, 322 => 0xe0, 348 => 0x10, 349 => 0x60, 350 => 0x6f, 351 => 0x79 },
+ 'face4position' => { 46 => 0xe, 98 => 0x15a, 99 => 0xb4, 180 => 0x10, 263 => 0xd, 287 => 0x6, 324 => 0xe0, 350 => 0x10, 351 => 0x60, 352 => 0x6f, 353 => 0x79 },
'face4size' => { 288 => 0x6 },
- 'face5position' => { 46 => 0x10, 98 => 0x1c9, 99 => 0xe8, 180 => 0x14, 263 => 0x11, 287 => 0x8, 322 => 0xec, 348 => 0x15, 349 => 0x80, 350 => 0x94 },
+ 'face5position' => { 46 => 0x10, 98 => 0x1c9, 99 => 0xe8, 180 => 0x14, 263 => 0x11, 287 => 0x8, 324 => 0xec, 350 => 0x15, 351 => 0x80, 352 => 0x94 },
'face5size' => { 288 => 0x8 },
- 'face6position' => { 46 => 0x12, 98 => 0x238, 99 => 0x11c, 180 => 0x18, 287 => 0xa, 322 => 0xf8, 348 => 0x1a, 349 => 0xa0, 350 => 0xb9 },
+ 'face6position' => { 46 => 0x12, 98 => 0x238, 99 => 0x11c, 180 => 0x18, 287 => 0xa, 324 => 0xf8, 350 => 0x1a, 351 => 0xa0, 352 => 0xb9 },
'face6size' => { 288 => 0xa },
- 'face7position' => { 46 => 0x14, 98 => 0x2a7, 99 => 0x150, 180 => 0x1c, 287 => 0xc, 322 => 0x104, 348 => 0x1f, 349 => 0xc0, 350 => 0xde },
+ 'face7position' => { 46 => 0x14, 98 => 0x2a7, 99 => 0x150, 180 => 0x1c, 287 => 0xc, 324 => 0x104, 350 => 0x1f, 351 => 0xc0, 352 => 0xde },
'face7size' => { 288 => 0xc },
- 'face8position' => { 46 => 0x16, 98 => 0x316, 99 => 0x184, 180 => 0x20, 287 => 0xe, 322 => 0x110, 348 => 0x24, 349 => 0xe0, 350 => 0x103 },
+ 'face8position' => { 46 => 0x16, 98 => 0x316, 99 => 0x184, 180 => 0x20, 287 => 0xe, 324 => 0x110, 350 => 0x24, 351 => 0xe0, 352 => 0x103 },
'face8size' => { 288 => 0xe },
'face9position' => { 46 => 0x18, 98 => 0x385, 99 => 0x1b8, 180 => 0x24, 287 => 0x10 },
'face9size' => { 288 => 0x10 },
- 'facedetect' => { 302 => 0x76, 331 => 0x100 },
+ 'facedetect' => { 302 => 0x76, 333 => 0x100 },
'facedetectarea' => { 253 => 0x1201 },
'facedetectframecrop' => { 253 => 0x1207 },
- 'facedetectframesize' => { 46 => 0x3, 98 => 0x1, 99 => 0x4, 180 => 0x1, 253 => 0x1203, 302 => 0x77, 322 => 0xb6 },
- 'facedetection' => { 343 => 0x30, 357 => 0x19 },
- 'faceid' => { 391 => 'FaceID' },
+ 'facedetectframesize' => { 46 => 0x3, 98 => 0x1, 99 => 0x4, 180 => 0x1, 253 => 0x1203, 302 => 0x77, 324 => 0xb6 },
+ 'facedetection' => { 345 => 0x30, 359 => 0x19 },
+ 'faceid' => { 393 => 'FaceID' },
'faceinfounknown' => { 101 => 0x2089 },
- 'facename' => { 331 => 0x123 },
+ 'facename' => { 333 => 0x123 },
'faceorientation' => { 99 => 0x8 },
- 'faceposition' => { 286 => 0x2, 332 => 0x4 },
+ 'faceposition' => { 286 => 0x2, 334 => 0x4 },
'facepositions' => { 110 => 0x4103 },
- 'facerecognition' => { 331 => 0x120 },
- 'facesdetected' => { 46 => 0x2, 47 => 0x2, 48 => 0x3, 98 => 0x0, 99 => 0x2, 101 => 0x211c, 110 => 0x4100, 180 => 0x3, 253 => 0x1200, 269 => 0x3f, 286 => 0x0, 322 => 0xb5, 332 => 0x0, 348 => 0x0, 351 => 0x3, 359 => 0x30 },
+ 'facerecognition' => { 333 => 0x120 },
+ 'facesdetected' => { 46 => 0x2, 47 => 0x2, 48 => 0x3, 98 => 0x0, 99 => 0x2, 101 => 0x211c, 110 => 0x4100, 180 => 0x3, 253 => 0x1200, 269 => 0x3f, 286 => 0x0, 324 => 0xb5, 334 => 0x0, 350 => 0x0, 353 => 0x3, 361 => 0x30 },
'facesrecognized' => { 264 => 0x0 },
'facewidth' => { 47 => 0x1 },
'faithfuloutputhighlightpoint' => { 97 => 0x38 },
@@ -1941,24 +1944,24 @@ my %tagLookup = (
'faithfulunsharpmaskstrength' => { 97 => 0xaa },
'faithfulunsharpmaskthreshold' => { 97 => 0xae },
'femicroadjustment' => { 73 => 0x111 },
- 'ffid' => { 398 => 'ffid' },
- 'field' => { 410 => 'field' },
+ 'ffid' => { 400 => 'ffid' },
+ 'field' => { 412 => 'field' },
'fieldcount' => { 254 => 0x103f },
'filecreatedate' => { 106 => 'FileCreateDate' },
- 'filedatarate' => { 421 => 'fileDataRate' },
- 'fileformat' => { 84 => 0x0, 114 => 0x14, 334 => [0x22,0x26], 353 => 0xb000 },
+ 'filedatarate' => { 423 => 'fileDataRate' },
+ 'fileformat' => { 84 => 0x0, 114 => 0x14, 336 => [0x22,0x26], 355 => 0xb000 },
'fileindex' => { 6 => 0x143, 8 => 0x2d0, 10 => 0x172, 12 => 0x22c, 13 => 0x133, 14 => 0x13f, 15 => 0x1d3, 16 => 0x19b, 17 => 0x1e4, 18 => 0xd0, 19 => 0x1bb, 20 => 0x28c, 21 => 0x1db, 22 => 0x1d9, 23 => [0x270,0x274], 24 => 0x2aa, 25 => 0x2b3, 26 => 0x1eb, 270 => 0x0 },
'fileindex2' => { 20 => 0x290 },
'filemodifydate' => { 106 => 'FileModifyDate' },
'filename' => { 106 => 'FileName' },
- 'filenameasdelivered' => { 409 => 'FileNameAsDelivered' },
+ 'filenameasdelivered' => { 411 => 'FileNameAsDelivered' },
'filenumber' => { 49 => 0x1, 55 => 0x8, 86 => 0x1817, 102 => 'FileNumber', 181 => 0x4 },
'filenumbermemory' => { 157 => 0x1a },
'filenumbersequence' => { 236 => '12.2', 239 => '3.1', 240 => '4.1', 241 => '4.1', 242 => '11.1', 243 => '4.3', 247 => '5.2' },
- 'filesource' => { 105 => 0xa300, 110 => 0x8000, 400 => 'FileSource' },
+ 'filesource' => { 105 => 0xa300, 110 => 0x8000, 402 => 'FileSource' },
'fileversion' => { 114 => 0x16 },
'fillflashautoreduction' => { 71 => 0xe, 72 => 0xe, 79 => 0xa },
- 'filllight' => { 396 => 'FillLight' },
+ 'filllight' => { 398 => 'FillLight' },
'fillorder' => { 105 => 0x10a },
'filmmode' => { 110 => 0x1401, 267 => 0x412, 269 => 0x42 },
'filmtype' => { 199 => 0x2 },
@@ -1979,20 +1982,21 @@ my %tagLookup = (
'finetuneopthighlightweighted' => { 246 => '46.1' },
'finetuneoptmatrixmetering' => { 236 => '8.1', 237 => '8.2', 242 => '6.1', 246 => '8.2', 247 => '8.2' },
'finetuneoptspotmetering' => { 236 => '8.2', 237 => '9.2', 242 => '6.2', 246 => '9.2', 247 => '9.2' },
- 'firmware' => { 254 => 0x405, 334 => [0x17,0x3b,0x57], 392 => 'Firmware' },
- 'firmwaredate' => { 100 => 0x15, 101 => 0x2001, 321 => 0x4 },
+ 'firmware' => { 254 => 0x405, 336 => [0x17,0x3b,0x57], 394 => 'Firmware' },
+ 'firmwaredate' => { 100 => 0x15, 101 => 0x2001, 323 => 0x4 },
'firmwareid' => { 164 => 0x0 },
- 'firmwarename' => { 331 => 0xa001 },
- 'firmwarerevision' => { 18 => 0xa4, 55 => 0x1e, 323 => 0x0 },
- 'firmwarerevision2' => { 323 => 0xc },
- 'firmwareversion' => { 6 => 0x10b, 10 => 0x136, 13 => 0xff, 14 => 0x107, 119 => 0xce5, 133 => 0x57, 135 => 'FirmwareVersion', 269 => 0x2, 271 => 0x3109, 302 => 0x230, 325 => 0x2 },
- 'firstphotodate' => { 385 => 'FirstPhotoDate' },
- 'firstpublicationdate' => { 409 => 'FirstPublicationDate' },
+ 'firmwarename' => { 333 => 0xa001 },
+ 'firmwarerevision' => { 18 => 0xa4, 55 => 0x1e, 325 => 0x0 },
+ 'firmwarerevision2' => { 325 => 0xc },
+ 'firmwareversion' => { 6 => 0x10b, 10 => 0x136, 13 => 0xff, 14 => 0x107, 119 => 0xce5, 133 => 0x57, 135 => 'FirmwareVersion', 269 => 0x2, 271 => 0x3109, 302 => 0x230, 327 => 0x2 },
+ 'firmwareversions' => { 311 => 0x301 },
+ 'firstphotodate' => { 387 => 'FirstPhotoDate' },
+ 'firstpublicationdate' => { 411 => 'FirstPublicationDate' },
'fixtureidentifier' => { 113 => 0x16 },
- 'flash' => { 102 => 'Flash', 105 => 0x9209, 158 => 0x1f, 159 => 0x15, 400 => 'Flash' },
- 'flashaction' => { 341 => 0x3e, 342 => 0x3e, 353 => 0x2017, 357 => [0x2a,0x2c,0x30] },
- 'flashaction2' => { 341 => 0x4c, 342 => 0x4c, 357 => 0x77 },
- 'flashactionexternal' => { 357 => [0x78,0x7c] },
+ 'flash' => { 102 => 'Flash', 105 => 0x9209, 158 => 0x1f, 159 => 0x15, 402 => 'Flash' },
+ 'flashaction' => { 343 => 0x3e, 344 => 0x3e, 355 => 0x2017, 359 => [0x2a,0x2c,0x30] },
+ 'flashaction2' => { 343 => 0x4c, 344 => 0x4c, 359 => 0x77 },
+ 'flashactionexternal' => { 359 => [0x78,0x7c] },
'flashactivity' => { 31 => 0x1c },
'flashbatterylevel' => { 37 => 0x249 },
'flashbias' => { 269 => 0x24 },
@@ -2001,32 +2005,32 @@ my %tagLookup = (
'flashchargelevel' => { 254 => 0x1010 },
'flashcolorfilter' => { 184 => 0x10 },
'flashcommandermode' => { 182 => '9.1', 183 => '9.1', 184 => '9.1' },
- 'flashcompensation' => { 182 => 0xa, 183 => 0xa, 184 => 0xa, 392 => 'FlashCompensation' },
- 'flashcontrol' => { 341 => 0x23, 342 => 0x1f, 343 => 0x21 },
+ 'flashcompensation' => { 182 => 0xa, 183 => 0xa, 184 => 0xa, 394 => 'FlashCompensation' },
+ 'flashcontrol' => { 343 => 0x23, 344 => 0x1f, 345 => 0x21 },
'flashcontrolbuilt-in' => { 242 => '16.1', 243 => '23.1', 245 => '23.1', 246 => '24.1' },
'flashcontrolmode' => { 182 => '9.2', 183 => '9.2', 184 => '9.2', 249 => 0x404 },
'flashcurtain' => { 269 => 0x48 },
'flashdefault' => { 160 => 0x42 },
'flashdevice' => { 254 => 0x1005 },
'flashdistance' => { 101 => 0x2034 },
- 'flashenergy' => { 105 => 0xa20b, 400 => 'FlashEnergy' },
+ 'flashenergy' => { 105 => 0xa20b, 402 => 'FlashEnergy' },
'flashexposurebracketvalue' => { 193 => 0x18 },
- 'flashexposurecomp' => { 67 => 0xf, 110 => 0x1011, 138 => 'ExposureComp', 157 => 0x23, 162 => 0x104, 163 => 0x49c1, 193 => 0x12, 249 => 0x401, 254 => 0x1023, 302 => 0x4d, 325 => 0x100b, 334 => [0x3a,0x56], 353 => 0x104 },
+ 'flashexposurecomp' => { 67 => 0xf, 110 => 0x1011, 138 => 'ExposureComp', 157 => 0x23, 162 => 0x104, 163 => 0x49c1, 193 => 0x12, 249 => 0x401, 254 => 0x1023, 302 => 0x4d, 327 => 0x100b, 336 => [0x3a,0x56], 355 => 0x104 },
'flashexposurecomp2' => { 216 => 0x4d2 },
'flashexposurecomp3' => { 184 => 0x1d },
'flashexposurecomp4' => { 184 => 0x27 },
'flashexposurecomparea' => { 237 => '38.4', 246 => '38.4' },
- 'flashexposurecompset' => { 160 => 0x10, 276 => 0xe, 341 => 0x14, 342 => 0x12, 343 => 0x23, 357 => 0x1f },
- 'flashexposurecompset2' => { 357 => [0x26,0x2c] },
+ 'flashexposurecompset' => { 160 => 0x10, 276 => 0xe, 343 => 0x14, 344 => 0x12, 345 => 0x23, 359 => 0x1f },
+ 'flashexposurecompset2' => { 359 => [0x26,0x2c] },
'flashexposureindicator' => { 160 => 0x54 },
'flashexposureindicatorlast' => { 160 => 0x56 },
'flashexposureindicatornext' => { 160 => 0x55 },
'flashexposurelock' => { 49 => 0x19 },
- 'flashfired' => { 121 => 0x5d, 138 => 'Fired', 157 => 0x14, 215 => '590.3', 269 => 0x8007, 400 => [\'Flash','FlashFired'] },
+ 'flashfired' => { 121 => 0x5d, 138 => 'Fired', 157 => 0x14, 215 => '590.3', 269 => 0x8007, 402 => [\'Flash','FlashFired'] },
'flashfiring' => { 73 => 0x306, 74 => 0x6, 75 => 0x7, 78 => 0x7 },
'flashfirmwareversion' => { 250 => 0x1002 },
'flashfocallength' => { 182 => 0xb, 183 => 0xc, 184 => 0xc },
- 'flashfunction' => { 163 => 0x31, 400 => [\'Flash','FlashFunction'] },
+ 'flashfunction' => { 163 => 0x31, 402 => [\'Flash','FlashFunction'] },
'flashgndistance' => { 182 => 0xe, 183 => 0xf, 184 => 0xf },
'flashgroupacompensation' => { 182 => 0x11, 183 => 0x12, 184 => 0x13 },
'flashgroupacontrolmode' => { 182 => 0xf, 183 => '16.1', 184 => '17.1' },
@@ -2039,47 +2043,47 @@ my %tagLookup = (
'flashgroupcoutput' => { 183 => 0x14, 184 => 0x15 },
'flashguidenumber' => { 67 => 0xd, 83 => 0x0, 138 => 'GuideNumber' },
'flashintensity' => { 100 => [0x19,0x5], 249 => 0x405 },
- 'flashlevel' => { 238 => 0x9, 353 => 0xb048 },
+ 'flashlevel' => { 238 => 0x9, 355 => 0xb048 },
'flashmake' => { 138 => 'Make' },
'flashmanufacturer' => { 155 => 'FlashManufacturer' },
'flashmetering' => { 157 => 0x3f, 160 => 0x1c },
'flashmeteringmode' => { 6 => 0x15, 12 => 0x15, 13 => 0x15, 14 => 0x15, 15 => 0x15, 16 => 0x15, 17 => 0x15, 19 => 0x15, 21 => 0x15, 26 => 0x15 },
'flashmeteringsegments' => { 302 => 0x20a },
- 'flashmode' => { 100 => 0x4, 121 => 0x5c, 138 => 'Mode', 157 => 0x2, 158 => 0x20, 159 => 0x16, 160 => 0xf, 193 => 0x87, 249 => 0x400, 254 => 0x1004, 302 => 0xc, 309 => 0x4, 324 => 0x20, 325 => 0x100a, 333 => 0x225, 341 => 0x13, 342 => 0x7f, 343 => 0x20, 357 => 0x10, 360 => 0x1138, 361 => 0x1138, 362 => 0x1114, 363 => 0x1190, 364 => 0x116c, 365 => 0x1024, 366 => 0x21c, 367 => 0x21c, 400 => [\'Flash','FlashMode'] },
+ 'flashmode' => { 100 => 0x4, 121 => 0x5c, 138 => 'Mode', 157 => 0x2, 158 => 0x20, 159 => 0x16, 160 => 0xf, 193 => 0x87, 249 => 0x400, 254 => 0x1004, 302 => 0xc, 309 => 0x4, 326 => 0x20, 327 => 0x100a, 335 => 0x225, 343 => 0x13, 344 => 0x7f, 345 => 0x20, 359 => 0x10, 362 => 0x1138, 363 => 0x1138, 364 => 0x1114, 365 => 0x1190, 366 => 0x116c, 367 => 0x1024, 368 => 0x21c, 369 => 0x21c, 402 => [\'Flash','FlashMode'] },
'flashmodel' => { 138 => 'Model', 155 => 'FlashModel', 250 => 0x1001 },
'flashoptions' => { 283 => 0x2 },
'flashoptions2' => { 283 => 0x10 },
'flashoutput' => { 37 => 0x248, 67 => 0x21, 182 => 0xa, 183 => 0xa, 184 => 0xa },
- 'flashpixversion' => { 105 => 0xa000, 400 => 'FlashpixVersion' },
- 'flashredeyemode' => { 400 => [\'Flash','FlashRedEyeMode'] },
+ 'flashpixversion' => { 105 => 0xa000, 402 => 'FlashpixVersion' },
+ 'flashredeyemode' => { 402 => [\'Flash','FlashRedEyeMode'] },
'flashremotecontrol' => { 249 => 0x403 },
- 'flashreturn' => { 400 => [\'Flash','FlashReturn'] },
+ 'flashreturn' => { 402 => [\'Flash','FlashReturn'] },
'flashserialnumber' => { 138 => 'SerialNumber', 250 => 0x1003 },
'flashsetting' => { 193 => 0x8 },
'flashshutterspeed' => { 236 => '20.2', 237 => '23.2', 242 => '15.2', 243 => '22.2', 244 => '7.2', 245 => '22.2', 246 => '23.2', 247 => '23.1' },
'flashsource' => { 182 => 0x4, 183 => 0x4, 184 => 0x4 },
- 'flashstatus' => { 290 => 0x0, 357 => [0x82,0x86], 368 => [0x31,0x39] },
- 'flashstatusbuilt-in' => { 343 => [0x87,0x287] },
- 'flashstatusexternal' => { 343 => [0x88,0x288] },
+ 'flashstatus' => { 290 => 0x0, 359 => [0x82,0x86], 370 => [0x31,0x39] },
+ 'flashstatusbuilt-in' => { 345 => [0x87,0x287] },
+ 'flashstatusexternal' => { 345 => [0x88,0x288] },
'flashsyncspeed' => { 236 => '20.1', 237 => '23.1', 242 => '15.1', 243 => '22.1', 245 => '22.1', 246 => '23.1' },
'flashsyncspeedav' => { 71 => 0x3, 73 => 0x10f, 74 => 0x2, 75 => 0x3, 76 => 0x2, 77 => 0x2, 78 => 0x3, 79 => 0x6 },
'flashthreshold' => { 83 => 0x1 },
'flashtype' => { 138 => 'Type', 160 => 0x59, 193 => 0x9, 250 => 0x1000 },
'flashwarning' => { 243 => '30.1', 244 => '7.1', 247 => '31.1', 269 => 0x62 },
- 'flexiblespotposition' => { 353 => 0x201d },
- 'flickerreduce' => { 333 => 0x218 },
+ 'flexiblespotposition' => { 355 => 0x201d },
+ 'flickerreduce' => { 335 => 0x218 },
'fliphorizontal' => { 229 => 0x76a43206 },
- 'fnumber' => { 6 => 0x3, 8 => 0x3, 10 => 0x3, 12 => 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 => 0x5, 28 => 0x6, 67 => 0x15, 105 => 0x829d, 118 => 0xfd04, 121 => 0x1e, 123 => 0xfa23, 125 => 0xf103, 128 => 0x13, 130 => 0x3c, 133 => 0xc, 142 => 'FNumber', 157 => 0xa, 158 => 0x36, 159 => 0x47, 160 => 0x9, 163 => 0x49c7, 302 => 0x13, 331 => 0xa019, 334 => [0x31,0x49], 341 => 0x1, 342 => 0x1, 357 => [0x20,0x22,0x26], 400 => 'FNumber' },
- 'focallength' => { 6 => 0x1d, 7 => 0xa, 8 => 0x23, 9 => 0x9, 10 => 0x1d, 11 => 0x9, 12 => 0x1e, 13 => 0x1d, 14 => 0x1d, 15 => 0x1e, 16 => 0x1e, 17 => 0x1e, 18 => 0x28, 19 => 0x1e, 20 => 0x23, 21 => 0x1e, 22 => 0x1e, 23 => 0x23, 24 => 0x23, 25 => 0x23, 26 => 0x1e, 51 => 0x1, 101 => 0x1d, 105 => 0x920a, 128 => 0x1d, 142 => 'FocalLength', 157 => 0x12, 189 => 0xa, 190 => 0xb, 302 => 0x1d, 325 => 0x1500, 340 => 0xe, 364 => 0x1278, 365 => 0x1134, 366 => 0x32c, 367 => 0x32c, 400 => 'FocalLength' },
- 'focallength2' => { 357 => [0x23,0x25,0x29] },
- 'focallengthin35mmformat' => { 105 => 0xa405, 331 => 0xa01a, 400 => 'FocalLengthIn35mmFilm' },
- 'focallengthtelezoom' => { 340 => 0x10 },
+ 'fnumber' => { 6 => 0x3, 8 => 0x3, 10 => 0x3, 12 => 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 => 0x5, 28 => 0x6, 67 => 0x15, 105 => 0x829d, 118 => 0xfd04, 121 => 0x1e, 123 => 0xfa23, 125 => 0xf103, 128 => 0x13, 130 => 0x3c, 133 => 0xc, 142 => 'FNumber', 157 => 0xa, 158 => 0x36, 159 => 0x47, 160 => 0x9, 163 => 0x49c7, 302 => 0x13, 333 => 0xa019, 336 => [0x31,0x49], 343 => 0x1, 344 => 0x1, 359 => [0x20,0x22,0x26], 402 => 'FNumber' },
+ 'focallength' => { 6 => 0x1d, 7 => 0xa, 8 => 0x23, 9 => 0x9, 10 => 0x1d, 11 => 0x9, 12 => 0x1e, 13 => 0x1d, 14 => 0x1d, 15 => 0x1e, 16 => 0x1e, 17 => 0x1e, 18 => 0x28, 19 => 0x1e, 20 => 0x23, 21 => 0x1e, 22 => 0x1e, 23 => 0x23, 24 => 0x23, 25 => 0x23, 26 => 0x1e, 51 => 0x1, 101 => 0x1d, 105 => 0x920a, 128 => 0x1d, 142 => 'FocalLength', 157 => 0x12, 189 => 0xa, 190 => 0xb, 302 => 0x1d, 311 => 0x403, 327 => 0x1500, 342 => 0xe, 366 => 0x1278, 367 => 0x1134, 368 => 0x32c, 369 => 0x32c, 402 => 'FocalLength' },
+ 'focallength2' => { 359 => [0x23,0x25,0x29] },
+ 'focallengthin35mmformat' => { 105 => 0xa405, 333 => 0xa01a, 402 => 'FocalLengthIn35mmFilm' },
+ 'focallengthtelezoom' => { 342 => 0x10 },
'focalplanediagonal' => { 250 => 0x103, 254 => 0x205 },
- 'focalplaneresolutionunit' => { 105 => 0xa210, 400 => 'FocalPlaneResolutionUnit' },
- 'focalplanexresolution' => { 105 => 0xa20e, 400 => 'FocalPlaneXResolution' },
+ 'focalplaneresolutionunit' => { 105 => 0xa210, 402 => 'FocalPlaneResolutionUnit' },
+ 'focalplanexresolution' => { 105 => 0xa20e, 402 => 'FocalPlaneXResolution' },
'focalplanexsize' => { 51 => 0x2 },
'focalplanexunknown' => { 51 => 0x2 },
- 'focalplaneyresolution' => { 105 => 0xa20f, 400 => 'FocalPlaneYResolution' },
+ 'focalplaneyresolution' => { 105 => 0xa20f, 402 => 'FocalPlaneYResolution' },
'focalplaneysize' => { 51 => 0x3 },
'focalplaneyunknown' => { 51 => 0x3 },
'focaltype' => { 9 => 0x2d, 51 => 0x0 },
@@ -2096,53 +2100,53 @@ my %tagLookup = (
'focusinfoversion' => { 252 => 0x0 },
'focusingscreen' => { 72 => 0x0, 73 => 0x80b, 78 => 0x0 },
'focuslocked' => { 156 => 0x14 },
- 'focusmode' => { 31 => 0x7, 100 => 0x3, 101 => [0x3003,0xd], 110 => 0x1021, 121 => 0x38, 135 => 'FocusMode', 157 => 0x30, 159 => 0xe, 160 => 0xc, 193 => 0x7, 249 => 0x301, 254 => 0x100b, 269 => 0x7, 302 => 0xd, 309 => 0x3, 325 => 0x1006, 335 => [0xb,0x5], 340 => [0x15,0x1d], 341 => 0x4d, 342 => 0x4d, 353 => [0xb042,0xb04e,0x201b], 357 => 0x13, 372 => 0x16 },
- 'focusmode2' => { 283 => '3.1', 357 => [0x2c,0x2e,0x32] },
- 'focusmodesetting' => { 238 => '10.1', 338 => 0x14, 339 => 0x15, 341 => 0x10, 342 => 0xf, 343 => 0x6 },
- 'focusmodeswitch' => { 160 => 0x58, 341 => 0x2e },
+ 'focusmode' => { 31 => 0x7, 100 => 0x3, 101 => [0x3003,0xd], 110 => 0x1021, 121 => 0x38, 135 => 'FocusMode', 157 => 0x30, 159 => 0xe, 160 => 0xc, 193 => 0x7, 249 => 0x301, 254 => 0x100b, 269 => 0x7, 302 => 0xd, 309 => 0x3, 327 => 0x1006, 337 => [0xb,0x5], 342 => [0x15,0x1d], 343 => 0x4d, 344 => 0x4d, 355 => [0xb042,0xb04e,0x201b], 359 => 0x13, 374 => 0x16 },
+ 'focusmode2' => { 283 => '3.1', 359 => [0x2c,0x2e,0x32] },
+ 'focusmodesetting' => { 238 => '10.1', 340 => 0x14, 341 => 0x15, 343 => 0x10, 344 => 0xf, 345 => 0x6 },
+ 'focusmodeswitch' => { 160 => 0x58, 343 => 0x2e },
'focuspixel' => { 110 => 0x1023 },
'focuspointwrap' => { 236 => '2.2', 237 => '2.2', 242 => '2.2', 243 => '1.2', 246 => '2.2', 247 => '2.5' },
- 'focusposition' => { 189 => 0x8, 190 => 0x8, 302 => 0x10, 352 => 0x9bb },
- 'focusposition2' => { 357 => [0x29,0x2b,0x2f], 372 => 0x2d, 375 => 0x20 },
+ 'focusposition' => { 189 => 0x8, 190 => 0x8, 302 => 0x10, 354 => 0x9bb },
+ 'focusposition2' => { 359 => [0x29,0x2b,0x2f], 374 => 0x2d, 377 => 0x20 },
'focusprocess' => { 249 => 0x302 },
'focusrange' => { 31 => 0x12, 254 => 0x100a },
'focusrangeindex' => { 293 => '3.1' },
- 'focussetting' => { 334 => 0x6 },
- 'focusstatus' => { 340 => 0x19, 341 => 0x53, 342 => 0x53 },
+ 'focussetting' => { 336 => 0x6 },
+ 'focusstatus' => { 342 => 0x19, 343 => 0x53, 344 => 0x53 },
'focusstepcount' => { 252 => 0x301, 254 => 0x100e },
'focusstepinfinity' => { 252 => 0x303, 254 => 0x103b },
'focusstepnear' => { 252 => 0x304, 254 => 0x103c },
'focustrackinglockon' => { 236 => ['1.5','4.1'], 237 => '1.4', 242 => '3.1', 243 => '0.4', 246 => '1.4' },
'focuswarning' => { 110 => 0x1301 },
'foldername' => { 157 => 0x27 },
- 'foldernumber' => { 341 => 0x9a, 343 => [0x402,0x114,0x316] },
- 'fontcomposite' => { 426 => [\'Fonts','FontsComposite'] },
- 'fontface' => { 426 => [\'Fonts','FontsFontFace'] },
- 'fontfamily' => { 426 => [\'Fonts','FontsFontFamily'] },
- 'fontfilename' => { 426 => [\'Fonts','FontsFontFileName'] },
- 'fontname' => { 426 => [\'Fonts','FontsFontName'] },
- 'fonts' => { 426 => 'Fonts' },
- 'fonttype' => { 426 => [\'Fonts','FontsFontType'] },
- 'fontversion' => { 426 => [\'Fonts','FontsVersionString'] },
- 'for' => { 316 => 'For' },
- 'format' => { 397 => 'format', 419 => 'Format' },
- 'forwardlock' => { 416 => 'forwardlock' },
+ 'foldernumber' => { 343 => 0x9a, 345 => [0x402,0x114,0x316] },
+ 'fontcomposite' => { 428 => [\'Fonts','FontsComposite'] },
+ 'fontface' => { 428 => [\'Fonts','FontsFontFace'] },
+ 'fontfamily' => { 428 => [\'Fonts','FontsFontFamily'] },
+ 'fontfilename' => { 428 => [\'Fonts','FontsFontFileName'] },
+ 'fontname' => { 428 => [\'Fonts','FontsFontName'] },
+ 'fonts' => { 428 => 'Fonts' },
+ 'fonttype' => { 428 => [\'Fonts','FontsFontType'] },
+ 'fontversion' => { 428 => [\'Fonts','FontsVersionString'] },
+ 'for' => { 318 => 'For' },
+ 'format' => { 399 => 'format', 421 => 'Format' },
+ 'forwardlock' => { 418 => 'forwardlock' },
'forwardmatrix1' => { 105 => 0xc714 },
'forwardmatrix2' => { 105 => 0xc715 },
'framecount' => { 58 => [0x2,0x4] },
'frameheight' => { 110 => 0x3822 },
- 'framenum' => { 311 => 0xd7 },
+ 'framenum' => { 313 => 0xd7 },
'framenumber' => { 110 => 0x8003, 163 => 0x3c, 302 => 0x29 },
'framerate' => { 58 => [0x1,0x6], 105 => 0xc764, 110 => 0x3820 },
'framewidth' => { 110 => 0x3821 },
- 'framing' => { 410 => 'framing' },
+ 'framing' => { 412 => 'framing' },
'freebytes' => { 86 => 0x1 },
'freememorycardimages' => { 158 => [0x37,0x54], 159 => [0x2d,0x4a], 160 => 0x32 },
'fujiflashmode' => { 110 => 0x1010 },
- 'fullimagesize' => { 353 => 0xb02b },
- 'fullpanoheightpixels' => { 385 => 'FullPanoHeightPixels' },
- 'fullpanowidthpixels' => { 385 => 'FullPanoWidthPixels' },
- 'fullpresssnap' => { 325 => 0x100d },
+ 'fullimagesize' => { 355 => 0xb02b },
+ 'fullpanoheightpixels' => { 387 => 'FullPanoHeightPixels' },
+ 'fullpanowidthpixels' => { 387 => 'FullPanoWidthPixels' },
+ 'fullpresssnap' => { 327 => 0x100d },
'fullsizeimage' => { 141 => 'data' },
'fullsizeimagename' => { 141 => '1Name' },
'fullsizeimagetype' => { 141 => '0Type' },
@@ -2150,8 +2154,8 @@ my %tagLookup = (
'funcbuttonplusdials' => { 236 => ['14.2','15.2'], 237 => '14.2', 242 => '31.1', 246 => '42.1' },
'functionbutton' => { 241 => '13.1', 244 => '5.2' },
'gainbase' => { 253 => 0x610 },
- 'gaincontrol' => { 105 => 0xa407, 400 => 'GainControl' },
- 'gamma' => { 105 => 0xa500, 401 => 'Gamma' },
+ 'gaincontrol' => { 105 => 0xa407, 402 => 'GainControl' },
+ 'gamma' => { 105 => 0xa500, 403 => 'Gamma' },
'gammablackpoint' => { 93 => 0xc },
'gammacolortone' => { 93 => 0x3 },
'gammacompensatedvalue' => { 115 => 0x91 },
@@ -2170,8 +2174,8 @@ my %tagLookup = (
'geimagesize' => { 110 => 0x1304 },
'gemake' => { 111 => 0x300 },
'gemodel' => { 111 => 0x207 },
- 'genre' => { 411 => 'genre', 421 => 'genre' },
- 'geography' => { 412 => 'geography' },
+ 'genre' => { 413 => 'genre', 423 => 'genre' },
+ 'geography' => { 414 => 'geography' },
'geologicalcontext' => { 104 => 'GeologicalContext' },
'geologicalcontextbed' => { 104 => [\'GeologicalContext','GeologicalContextBed'] },
'geologicalcontextformation' => { 104 => [\'GeologicalContext','GeologicalContextFormation'] },
@@ -2184,111 +2188,111 @@ my %tagLookup = (
'geotiffdirectory' => { 105 => 0x87af },
'geotiffdoubleparams' => { 105 => 0x87b0 },
'geotime' => { 106 => 'Geotime' },
- 'globalaltitude' => { 314 => 0x419 },
- 'globalangle' => { 314 => 0x40d },
- 'good' => { 421 => 'good' },
+ 'globalaltitude' => { 316 => 0x419 },
+ 'globalangle' => { 316 => 0x40d },
+ 'good' => { 423 => 'good' },
'googleplusuploadcode' => { 105 => 0x9009 },
- 'gpsaltitude' => { 112 => 0x6, 139 => 'Altitude', 400 => 'GPSAltitude' },
- 'gpsaltituderef' => { 112 => 0x5, 400 => 'GPSAltitudeRef' },
- 'gpsareainformation' => { 112 => 0x1c, 400 => 'GPSAreaInformation' },
+ 'gpsaltitude' => { 112 => 0x6, 139 => 'Altitude', 402 => 'GPSAltitude' },
+ 'gpsaltituderef' => { 112 => 0x5, 402 => 'GPSAltitudeRef' },
+ 'gpsareainformation' => { 112 => 0x1c, 402 => 'GPSAreaInformation' },
'gpsdatestamp' => { 112 => 0x1d },
- 'gpsdatetime' => { 139 => 'DateTime', 400 => 'GPSTimeStamp' },
- 'gpsdestbearing' => { 112 => 0x18, 139 => 'Bearing', 400 => 'GPSDestBearing' },
- 'gpsdestbearingref' => { 112 => 0x17, 400 => 'GPSDestBearingRef' },
- 'gpsdestdistance' => { 112 => 0x1a, 139 => 'Distance', 400 => 'GPSDestDistance' },
- 'gpsdestdistanceref' => { 112 => 0x19, 400 => 'GPSDestDistanceRef' },
- 'gpsdestlatitude' => { 112 => 0x14, 400 => 'GPSDestLatitude' },
+ 'gpsdatetime' => { 139 => 'DateTime', 402 => 'GPSTimeStamp' },
+ 'gpsdestbearing' => { 112 => 0x18, 139 => 'Bearing', 402 => 'GPSDestBearing' },
+ 'gpsdestbearingref' => { 112 => 0x17, 402 => 'GPSDestBearingRef' },
+ 'gpsdestdistance' => { 112 => 0x1a, 139 => 'Distance', 402 => 'GPSDestDistance' },
+ 'gpsdestdistanceref' => { 112 => 0x19, 402 => 'GPSDestDistanceRef' },
+ 'gpsdestlatitude' => { 112 => 0x14, 402 => 'GPSDestLatitude' },
'gpsdestlatituderef' => { 112 => 0x13 },
- 'gpsdestlongitude' => { 112 => 0x16, 400 => 'GPSDestLongitude' },
+ 'gpsdestlongitude' => { 112 => 0x16, 402 => 'GPSDestLongitude' },
'gpsdestlongituderef' => { 112 => 0x15 },
- 'gpsdifferential' => { 112 => 0x1e, 139 => 'Differential', 400 => 'GPSDifferential' },
- 'gpsdop' => { 112 => 0xb, 400 => 'GPSDOP' },
- 'gpshpositioningerror' => { 112 => 0x1f, 400 => 'GPSHPositioningError' },
- 'gpsimgdirection' => { 112 => 0x11, 400 => 'GPSImgDirection' },
- 'gpsimgdirectionref' => { 112 => 0x10, 400 => 'GPSImgDirectionRef' },
- 'gpslatitude' => { 112 => 0x2, 139 => 'Latitude', 400 => 'GPSLatitude' },
+ 'gpsdifferential' => { 112 => 0x1e, 139 => 'Differential', 402 => 'GPSDifferential' },
+ 'gpsdop' => { 112 => 0xb, 402 => 'GPSDOP' },
+ 'gpshpositioningerror' => { 112 => 0x1f, 402 => 'GPSHPositioningError' },
+ 'gpsimgdirection' => { 112 => 0x11, 402 => 'GPSImgDirection' },
+ 'gpsimgdirectionref' => { 112 => 0x10, 402 => 'GPSImgDirectionRef' },
+ 'gpslatitude' => { 112 => 0x2, 139 => 'Latitude', 402 => 'GPSLatitude' },
'gpslatituderef' => { 112 => 0x1 },
- 'gpslongitude' => { 112 => 0x4, 139 => 'Longitude', 400 => 'GPSLongitude' },
+ 'gpslongitude' => { 112 => 0x4, 139 => 'Longitude', 402 => 'GPSLongitude' },
'gpslongituderef' => { 112 => 0x3 },
- 'gpsmapdatum' => { 112 => 0x12, 139 => 'Datum', 400 => 'GPSMapDatum' },
- 'gpsmeasuremode' => { 112 => 0xa, 139 => 'MeasureMode', 400 => 'GPSMeasureMode' },
- 'gpsprocessingmethod' => { 112 => 0x1b, 400 => 'GPSProcessingMethod' },
- 'gpssatellites' => { 112 => 0x8, 139 => 'Satellites', 400 => 'GPSSatellites' },
- 'gpsspeed' => { 112 => 0xd, 139 => 'Speed', 400 => 'GPSSpeed' },
- 'gpsspeedref' => { 112 => 0xc, 400 => 'GPSSpeedRef' },
- 'gpsstatus' => { 112 => 0x9, 400 => 'GPSStatus' },
+ 'gpsmapdatum' => { 112 => 0x12, 139 => 'Datum', 402 => 'GPSMapDatum' },
+ 'gpsmeasuremode' => { 112 => 0xa, 139 => 'MeasureMode', 402 => 'GPSMeasureMode' },
+ 'gpsprocessingmethod' => { 112 => 0x1b, 402 => 'GPSProcessingMethod' },
+ 'gpssatellites' => { 112 => 0x8, 139 => 'Satellites', 402 => 'GPSSatellites' },
+ 'gpsspeed' => { 112 => 0xd, 139 => 'Speed', 402 => 'GPSSpeed' },
+ 'gpsspeedref' => { 112 => 0xc, 402 => 'GPSSpeedRef' },
+ 'gpsstatus' => { 112 => 0x9, 402 => 'GPSStatus' },
'gpstimestamp' => { 112 => 0x7 },
- 'gpstrack' => { 112 => 0xf, 139 => 'Heading', 400 => 'GPSTrack' },
- 'gpstrackref' => { 112 => 0xe, 400 => 'GPSTrackRef' },
- 'gpsversionid' => { 112 => 0x0, 400 => 'GPSVersionID' },
+ 'gpstrack' => { 112 => 0xf, 139 => 'Heading', 402 => 'GPSTrack' },
+ 'gpstrackref' => { 112 => 0xe, 402 => 'GPSTrackRef' },
+ 'gpsversionid' => { 112 => 0x0, 402 => 'GPSVersionID' },
'gradation' => { 249 => 0x50f },
- 'gradientbasedcorractive' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] },
- 'gradientbasedcorramount' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] },
- 'gradientbasedcorrbrightness' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] },
- 'gradientbasedcorrclarity' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] },
- 'gradientbasedcorrclarity2012' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] },
- 'gradientbasedcorrcontrast' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] },
- 'gradientbasedcorrcontrast2012' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] },
- 'gradientbasedcorrdefringe' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] },
- 'gradientbasedcorrections' => { 396 => 'GradientBasedCorrections' },
- 'gradientbasedcorrexposure' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] },
- 'gradientbasedcorrexposure2012' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] },
- 'gradientbasedcorrhighlights2012' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] },
- 'gradientbasedcorrhue' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] },
- 'gradientbasedcorrluminancenoise' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] },
- 'gradientbasedcorrmaskalpha' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] },
- 'gradientbasedcorrmaskangle' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] },
- 'gradientbasedcorrmaskbottom' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] },
- 'gradientbasedcorrmaskcentervalue' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] },
- 'gradientbasedcorrmaskcenterweight' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'gradientbasedcorrmaskdabs' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] },
- 'gradientbasedcorrmaskfeather' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] },
- 'gradientbasedcorrmaskflipped' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] },
- 'gradientbasedcorrmaskflow' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] },
- 'gradientbasedcorrmaskfullx' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] },
- 'gradientbasedcorrmaskfully' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] },
- 'gradientbasedcorrmaskleft' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] },
- 'gradientbasedcorrmaskmidpoint' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] },
- 'gradientbasedcorrmaskperimetervalue' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'gradientbasedcorrmaskradius' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] },
- 'gradientbasedcorrmaskright' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] },
- 'gradientbasedcorrmaskroundness' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] },
- 'gradientbasedcorrmasks' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] },
- 'gradientbasedcorrmasksizex' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] },
- 'gradientbasedcorrmasksizey' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] },
- 'gradientbasedcorrmasktop' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] },
- 'gradientbasedcorrmaskvalue' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] },
- 'gradientbasedcorrmaskversion' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] },
- 'gradientbasedcorrmaskwhat' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] },
- 'gradientbasedcorrmaskx' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] },
- 'gradientbasedcorrmasky' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] },
- 'gradientbasedcorrmaskzerox' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] },
- 'gradientbasedcorrmaskzeroy' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] },
- 'gradientbasedcorrmoire' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] },
- 'gradientbasedcorrsaturation' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation','GradientBasedCorrectionsLocalToningSaturation'] },
- 'gradientbasedcorrshadows2012' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] },
- 'gradientbasedcorrsharpness' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] },
- 'gradientbasedcorrtemperature' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] },
- 'gradientbasedcorrtint' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] },
- 'gradientbasedcorrwhat' => { 396 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] },
- 'grainamount' => { 396 => 'GrainAmount' },
- 'grainfrequency' => { 396 => 'GrainFrequency' },
- 'grainsize' => { 396 => 'GrainSize' },
- 'graymixeraqua' => { 396 => 'GrayMixerAqua' },
- 'graymixerblue' => { 396 => 'GrayMixerBlue' },
- 'graymixergreen' => { 396 => 'GrayMixerGreen' },
- 'graymixermagenta' => { 396 => 'GrayMixerMagenta' },
- 'graymixerorange' => { 396 => 'GrayMixerOrange' },
- 'graymixerpurple' => { 396 => 'GrayMixerPurple' },
- 'graymixerred' => { 396 => 'GrayMixerRed' },
- 'graymixeryellow' => { 396 => 'GrayMixerYellow' },
- 'graypoint' => { 381 => 0x8021 },
+ 'gradientbasedcorractive' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] },
+ 'gradientbasedcorramount' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] },
+ 'gradientbasedcorrbrightness' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] },
+ 'gradientbasedcorrclarity' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] },
+ 'gradientbasedcorrclarity2012' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] },
+ 'gradientbasedcorrcontrast' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] },
+ 'gradientbasedcorrcontrast2012' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] },
+ 'gradientbasedcorrdefringe' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] },
+ 'gradientbasedcorrections' => { 398 => 'GradientBasedCorrections' },
+ 'gradientbasedcorrexposure' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] },
+ 'gradientbasedcorrexposure2012' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] },
+ 'gradientbasedcorrhighlights2012' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] },
+ 'gradientbasedcorrhue' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] },
+ 'gradientbasedcorrluminancenoise' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] },
+ 'gradientbasedcorrmaskalpha' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] },
+ 'gradientbasedcorrmaskangle' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] },
+ 'gradientbasedcorrmaskbottom' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] },
+ 'gradientbasedcorrmaskcentervalue' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'gradientbasedcorrmaskcenterweight' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'gradientbasedcorrmaskdabs' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] },
+ 'gradientbasedcorrmaskfeather' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] },
+ 'gradientbasedcorrmaskflipped' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] },
+ 'gradientbasedcorrmaskflow' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] },
+ 'gradientbasedcorrmaskfullx' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] },
+ 'gradientbasedcorrmaskfully' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] },
+ 'gradientbasedcorrmaskleft' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] },
+ 'gradientbasedcorrmaskmidpoint' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'gradientbasedcorrmaskperimetervalue' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'gradientbasedcorrmaskradius' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] },
+ 'gradientbasedcorrmaskright' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] },
+ 'gradientbasedcorrmaskroundness' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] },
+ 'gradientbasedcorrmasks' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] },
+ 'gradientbasedcorrmasksizex' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] },
+ 'gradientbasedcorrmasksizey' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] },
+ 'gradientbasedcorrmasktop' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] },
+ 'gradientbasedcorrmaskvalue' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'gradientbasedcorrmaskversion' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] },
+ 'gradientbasedcorrmaskwhat' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] },
+ 'gradientbasedcorrmaskx' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] },
+ 'gradientbasedcorrmasky' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] },
+ 'gradientbasedcorrmaskzerox' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] },
+ 'gradientbasedcorrmaskzeroy' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] },
+ 'gradientbasedcorrmoire' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] },
+ 'gradientbasedcorrsaturation' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation','GradientBasedCorrectionsLocalToningSaturation'] },
+ 'gradientbasedcorrshadows2012' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] },
+ 'gradientbasedcorrsharpness' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] },
+ 'gradientbasedcorrtemperature' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] },
+ 'gradientbasedcorrtint' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] },
+ 'gradientbasedcorrwhat' => { 398 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] },
+ 'grainamount' => { 398 => 'GrainAmount' },
+ 'grainfrequency' => { 398 => 'GrainFrequency' },
+ 'grainsize' => { 398 => 'GrainSize' },
+ 'graymixeraqua' => { 398 => 'GrayMixerAqua' },
+ 'graymixerblue' => { 398 => 'GrayMixerBlue' },
+ 'graymixergreen' => { 398 => 'GrayMixerGreen' },
+ 'graymixermagenta' => { 398 => 'GrayMixerMagenta' },
+ 'graymixerorange' => { 398 => 'GrayMixerOrange' },
+ 'graymixerpurple' => { 398 => 'GrayMixerPurple' },
+ 'graymixerred' => { 398 => 'GrayMixerRed' },
+ 'graymixeryellow' => { 398 => 'GrayMixerYellow' },
+ 'graypoint' => { 383 => 0x8021 },
'grayresponseunit' => { 105 => 0x122 },
'greencurvelimits' => { 96 => 0x1c4 },
'greencurvepoints' => { 95 => 0x53, 96 => 0x19a },
'greenhsl' => { 91 => 0x20912 },
- 'greenhue' => { 396 => 'GreenHue' },
- 'greensaturation' => { 396 => 'GreenSaturation' },
+ 'greenhue' => { 398 => 'GreenHue' },
+ 'greensaturation' => { 398 => 'GreenSaturation' },
'griddisplay' => { 236 => '13.3', 237 => '4.3', 239 => '2.2', 242 => '10.5', 243 => '3.4', 244 => '6.1', 246 => '4.4', 247 => '4.2' },
'gripbatteryadload' => { 281 => 0x5 },
'gripbatteryadnoload' => { 281 => 0x4 },
@@ -2296,24 +2300,24 @@ my %tagLookup = (
'groupareaafillumination' => { 237 => '46.4', 246 => '47.4' },
'halftonehints' => { 105 => 0x141 },
'hardlink' => { 106 => 'HardLink' },
- 'hasalternative' => { 411 => 'hasAlternative' },
- 'hascorrection' => { 411 => 'hasCorrection' },
- 'hascorrectiona-lang' => { 411 => [\'hasCorrection','hasCorrectionA-lang'] },
- 'hascorrectiona-platform' => { 411 => [\'hasCorrection','hasCorrectionA-platform'] },
- 'hascorrectiontext' => { 411 => [\'hasCorrection','hasCorrectionText'] },
- 'hascrop' => { 396 => 'HasCrop' },
- 'hasextendedxmp' => { 423 => 'HasExtendedXMP' },
- 'hassettings' => { 396 => 'HasSettings' },
- 'hastranslation' => { 411 => 'hasTranslation' },
- 'hdr' => { 52 => 0x1, 186 => 0x4, 269 => 0x9e, 302 => 0x85, 353 => 0x200a },
+ 'hasalternative' => { 413 => 'hasAlternative' },
+ 'hascorrection' => { 413 => 'hasCorrection' },
+ 'hascorrectiona-lang' => { 413 => [\'hasCorrection','hasCorrectionA-lang'] },
+ 'hascorrectiona-platform' => { 413 => [\'hasCorrection','hasCorrectionA-platform'] },
+ 'hascorrectiontext' => { 413 => [\'hasCorrection','hasCorrectionText'] },
+ 'hascrop' => { 398 => 'HasCrop' },
+ 'hasextendedxmp' => { 425 => 'HasExtendedXMP' },
+ 'hassettings' => { 398 => 'HasSettings' },
+ 'hastranslation' => { 413 => 'hasTranslation' },
+ 'hdr' => { 52 => 0x1, 186 => 0x4, 269 => 0x9e, 302 => 0x85, 355 => 0x200a },
'hdreffect' => { 52 => 0x2 },
'hdrimagetype' => { 1 => 0xa },
'hdrinfoversion' => { 186 => 0x0 },
- 'hdrlevel' => { 186 => 0x5, 343 => 0x2e, 357 => 0x17 },
+ 'hdrlevel' => { 186 => 0x5, 345 => 0x2e, 359 => 0x17 },
'hdrlevel2' => { 186 => 0x7 },
- 'hdrsetting' => { 343 => 0x2d, 357 => 0x16, 360 => 0x1148, 361 => 0x1148, 362 => 0x1124, 363 => 0x11a0, 364 => 0x117c, 365 => 0x1034, 366 => 0x22c, 367 => 0x22c },
+ 'hdrsetting' => { 345 => 0x2d, 359 => 0x16, 362 => 0x1148, 363 => 0x1148, 364 => 0x1124, 365 => 0x11a0, 366 => 0x117c, 367 => 0x1034, 368 => 0x22c, 369 => 0x22c },
'hdrsmoothing' => { 186 => 0x6 },
- 'headline' => { 113 => 0x69, 408 => 'Headline' },
+ 'headline' => { 113 => 0x69, 410 => 'Headline' },
'hierarchicalkeywords' => { 150 => [\'Keywords','KeywordsHierarchy'] },
'hierarchicalkeywords1' => { 150 => [\'Keywords','KeywordsHierarchyKeyword'] },
'hierarchicalkeywords1applied' => { 150 => [\'Keywords','KeywordsHierarchyApplied'] },
@@ -2332,54 +2336,54 @@ my %tagLookup = (
'hierarchicalkeywords5children' => { 150 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildren'] },
'hierarchicalkeywords6' => { 150 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenKeyword'] },
'hierarchicalkeywords6applied' => { 150 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenApplied'] },
- 'hierarchicalsubject' => { 387 => 'hierarchicalSubject' },
+ 'hierarchicalsubject' => { 389 => 'hierarchicalSubject' },
'highestbiostratigraphiczone' => { 104 => [\'GeologicalContext','GeologicalContextHighestBiostratigraphicZone'] },
'highisomultiplierblue' => { 273 => 0x1a },
'highisomultipliergreen' => { 273 => 0x19 },
'highisomultiplierred' => { 273 => 0x18 },
- 'highisonoisereduction' => { 15 => 0xbc, 16 => 0xbd, 19 => 0xbd, 26 => 0xc9, 54 => 0x5, 73 => 0x202, 110 => 0x100e, 193 => 0xb1, 302 => 0x71, 341 => 0x2c, 342 => 0x26, 343 => 0x26, 353 => 0x2009, 357 => 0x12, 377 => 0x42 },
- 'highisonoisereduction2' => { 353 => 0xb050 },
- 'highlight' => { 334 => 0xf },
+ 'highisonoisereduction' => { 15 => 0xbc, 16 => 0xbd, 19 => 0xbd, 26 => 0xc9, 54 => 0x5, 73 => 0x202, 110 => 0x100e, 193 => 0xb1, 302 => 0x71, 343 => 0x2c, 344 => 0x26, 345 => 0x26, 355 => 0x2009, 359 => 0x12, 379 => 0x42 },
+ 'highisonoisereduction2' => { 355 => 0xb050 },
+ 'highlight' => { 336 => 0xf },
'highlightadj' => { 91 => 0x2030c },
- 'highlightcolordistortreduct' => { 381 => 0x8026 },
+ 'highlightcolordistortreduct' => { 383 => 0x8026 },
'highlightprotection' => { 228 => 0x6 },
- 'highlightrecovery' => { 396 => 'HighlightRecovery' },
- 'highlights' => { 389 => 'Highlights' },
- 'highlights2012' => { 396 => 'Highlights2012' },
+ 'highlightrecovery' => { 398 => 'HighlightRecovery' },
+ 'highlights' => { 391 => 'Highlights' },
+ 'highlights2012' => { 398 => 'Highlights2012' },
'highlighttone' => { 110 => 0x1041 },
'highlighttonepriority' => { 12 => 0x7, 15 => 0x7, 16 => 0x7, 17 => 0x7, 19 => 0x7, 21 => 0x7, 26 => 0x7, 54 => 0x3, 73 => 0x203 },
'highlowkeyadj' => { 302 => 0x6c },
- 'highspeedsync' => { 160 => 0x5, 341 => 0x2, 342 => 0x2 },
+ 'highspeedsync' => { 160 => 0x5, 343 => 0x2, 344 => 0x2 },
'histogramxml' => { 229 => 0x83a1a25 },
- 'history' => { 408 => 'History', 422 => 'History' },
- 'historyaction' => { 422 => [\'History','HistoryAction'] },
- 'historychanged' => { 422 => [\'History','HistoryChanged'] },
- 'historyinstanceid' => { 422 => [\'History','HistoryInstanceID'] },
- 'historyparameters' => { 422 => [\'History','HistoryParameters'] },
- 'historysoftwareagent' => { 422 => [\'History','HistorySoftwareAgent'] },
- 'historywhen' => { 422 => [\'History','HistoryWhen'] },
+ 'history' => { 410 => 'History', 424 => 'History' },
+ 'historyaction' => { 424 => [\'History','HistoryAction'] },
+ 'historychanged' => { 424 => [\'History','HistoryChanged'] },
+ 'historyinstanceid' => { 424 => [\'History','HistoryInstanceID'] },
+ 'historyparameters' => { 424 => [\'History','HistoryParameters'] },
+ 'historysoftwareagent' => { 424 => [\'History','HistorySoftwareAgent'] },
+ 'historywhen' => { 424 => [\'History','HistoryWhen'] },
'hometowncity' => { 101 => 0x3006, 302 => 0x23, 308 => 0x2 },
'hometowncitycode' => { 309 => 0x1000 },
'hometowndst' => { 302 => 0x25, 308 => '0.2' },
'hostcomputer' => { 105 => 0x13c },
'hue' => { 165 => 0x3b, 302 => 0x67 },
- 'hueadj' => { 232 => 0x2f, 381 => 0x8019 },
- 'hueadjust' => { 325 => 0x1016 },
+ 'hueadj' => { 232 => 0x2f, 383 => 0x8019 },
+ 'hueadjust' => { 327 => 0x1016 },
'hueadjustment' => { 158 => 0x4a, 159 => 0x40, 193 => 0x92, 195 => 0x36 },
- 'hueadjustmentaqua' => { 396 => 'HueAdjustmentAqua' },
- 'hueadjustmentblue' => { 396 => 'HueAdjustmentBlue' },
- 'hueadjustmentgreen' => { 396 => 'HueAdjustmentGreen' },
- 'hueadjustmentmagenta' => { 396 => 'HueAdjustmentMagenta' },
- 'hueadjustmentorange' => { 396 => 'HueAdjustmentOrange' },
- 'hueadjustmentpurple' => { 396 => 'HueAdjustmentPurple' },
- 'hueadjustmentred' => { 396 => 'HueAdjustmentRed' },
- 'hueadjustmentyellow' => { 396 => 'HueAdjustmentYellow' },
+ 'hueadjustmentaqua' => { 398 => 'HueAdjustmentAqua' },
+ 'hueadjustmentblue' => { 398 => 'HueAdjustmentBlue' },
+ 'hueadjustmentgreen' => { 398 => 'HueAdjustmentGreen' },
+ 'hueadjustmentmagenta' => { 398 => 'HueAdjustmentMagenta' },
+ 'hueadjustmentorange' => { 398 => 'HueAdjustmentOrange' },
+ 'hueadjustmentpurple' => { 398 => 'HueAdjustmentPurple' },
+ 'hueadjustmentred' => { 398 => 'HueAdjustmentRed' },
+ 'hueadjustmentyellow' => { 398 => 'HueAdjustmentYellow' },
'huesetting' => { 257 => 0x1011 },
'icc_profile' => { 106 => 'ICC_Profile' },
- 'iccprofilename' => { 408 => 'ICCProfile' },
- 'idccreativestyle' => { 381 => 0x8000 },
- 'idcpreviewlength' => { 381 => 0x202 },
- 'idcpreviewstart' => { 381 => 0x201 },
+ 'iccprofilename' => { 410 => 'ICCProfile' },
+ 'idccreativestyle' => { 383 => 0x8000 },
+ 'idcpreviewlength' => { 383 => 0x202 },
+ 'idcpreviewstart' => { 383 => 0x201 },
'identification' => { 104 => 'Identification' },
'identificationid' => { 104 => [\'Identification','IdentificationIdentificationID'] },
'identificationqualifier' => { 104 => [\'Identification','IdentificationIdentificationQualifier'] },
@@ -2387,36 +2391,36 @@ my %tagLookup = (
'identificationremarks' => { 104 => [\'Identification','IdentificationIdentificationRemarks'] },
'identificationverificationstatus' => { 104 => [\'Identification','IdentificationIdentificationVerificationStatus'] },
'identifiedby' => { 104 => [\'Identification','IdentificationIdentifiedBy'] },
- 'identifier' => { 397 => 'identifier', 419 => 'Identifier' },
+ 'identifier' => { 399 => 'identifier', 421 => 'Identifier' },
'illumination' => { 244 => '0.5' },
'imageadjustment' => { 193 => 0x80, 219 => 0x5 },
- 'imagealterationconstraints' => { 409 => 'ImageAlterationConstraints' },
+ 'imagealterationconstraints' => { 411 => 'ImageAlterationConstraints' },
'imagearea' => { 204 => 0x10, 207 => 0x10 },
'imageareaoffset' => { 302 => 0x38 },
'imageauthentication' => { 193 => 0x20 },
'imageboundary' => { 193 => 0x16 },
- 'imagecount' => { 110 => 0x1438, 193 => 0xa5, 355 => 0x11b, 368 => [0x32,0x3a] },
- 'imagecount2' => { 368 => [0x4c,0x58] },
- 'imagecount3' => { 368 => [0x1a0,0x1aa,0x1bd,0x1cb] },
- 'imagecreator' => { 409 => 'ImageCreator' },
- 'imagecreatorid' => { 409 => [\'ImageCreator','ImageCreatorImageCreatorID'] },
- 'imagecreatorimageid' => { 409 => 'ImageCreatorImageID' },
- 'imagecreatorname' => { 409 => [\'ImageCreator','ImageCreatorImageCreatorName'] },
+ 'imagecount' => { 110 => 0x1438, 193 => 0xa5, 357 => 0x11b, 370 => [0x32,0x3a] },
+ 'imagecount2' => { 370 => [0x4c,0x58] },
+ 'imagecount3' => { 370 => [0x1a0,0x1aa,0x1bd,0x1cb] },
+ 'imagecreator' => { 411 => 'ImageCreator' },
+ 'imagecreatorid' => { 411 => [\'ImageCreator','ImageCreatorImageCreatorID'] },
+ 'imagecreatorimageid' => { 411 => 'ImageCreatorImageID' },
+ 'imagecreatorname' => { 411 => [\'ImageCreator','ImageCreatorImageCreatorName'] },
'imagedatasize' => { 193 => 0xa2 },
- 'imagedescription' => { 105 => 0x10e, 417 => 'ImageDescription' },
- 'imageduplicationconstraints' => { 409 => 'ImageDuplicationConstraints' },
+ 'imagedescription' => { 105 => 0x10e, 419 => 'ImageDescription' },
+ 'imageduplicationconstraints' => { 411 => 'ImageDuplicationConstraints' },
'imagedustoff' => { 229 => 0xfe443a45 },
'imageeditcount' => { 302 => 0x41 },
'imageediting' => { 302 => 0x32 },
- 'imageeffects' => { 325 => 0x1010 },
- 'imagefileconstraints' => { 409 => 'ImageFileConstraints' },
- 'imagefileformatasdelivered' => { 409 => 'ImageFileFormatAsDelivered' },
- 'imagefilesizeasdelivered' => { 409 => 'ImageFileSizeAsDelivered' },
+ 'imageeffects' => { 327 => 0x1010 },
+ 'imagefileconstraints' => { 411 => 'ImageFileConstraints' },
+ 'imagefileformatasdelivered' => { 411 => 'ImageFileFormatAsDelivered' },
+ 'imagefilesizeasdelivered' => { 411 => 'ImageFileSizeAsDelivered' },
'imagegeneration' => { 110 => 0x1436 },
- 'imageheight' => { 105 => 0x101, 164 => 0xc, 417 => 'ImageLength' },
- 'imagehistory' => { 105 => 0x9213, 399 => 'ImageHistory' },
+ 'imageheight' => { 105 => 0x101, 164 => 0xc, 311 => 0x10d, 419 => 'ImageLength' },
+ 'imagehistory' => { 105 => 0x9213, 401 => 'ImageHistory' },
'imageidnumber' => { 265 => 0x340 },
- 'imagenumber' => { 105 => 0x9211, 135 => 'ImageNumber', 158 => 0xae, 159 => 0x5e, 341 => 0x9b, 343 => [0x400,'276.1',0x314], 392 => 'ImageNumber' },
+ 'imagenumber' => { 105 => 0x9211, 135 => 'ImageNumber', 158 => 0xae, 159 => 0x5e, 311 => 0x113, 343 => 0x9b, 345 => [0x400,'276.1',0x314], 394 => 'ImageNumber' },
'imagenumber2' => { 159 => 0x62 },
'imageoptimization' => { 193 => 0xa9 },
'imageorientation' => { 113 => 0x83 },
@@ -2424,66 +2428,66 @@ my %tagLookup = (
'imageprocessingversion' => { 253 => 0x0 },
'imagequality' => { 135 => 'ImageQuality', 206 => '723.2', 207 => '732.2', 215 => '708.1', 269 => 0x1 },
'imagequality2' => { 249 => 0x603 },
- 'imageref' => { 404 => 'ImageRef' },
+ 'imageref' => { 406 => 'ImageRef' },
'imagereview' => { 238 => '0.4', 244 => '0.4' },
'imagereviewmonitorofftime' => { 237 => '21.1', 246 => '21.1' },
'imagereviewtime' => { 236 => '25.1', 238 => '2.1', 239 => '19.1', 240 => '20.1', 241 => '20.1', 242 => '9.2', 243 => '20.1', 247 => '21.2' },
'imagesize' => { 141 => 'ImageSize' },
- 'imagesizerestriction' => { 414 => 'imageSizeRestriction' },
+ 'imagesizerestriction' => { 416 => 'imageSizeRestriction' },
'imagesourcedata' => { 105 => 0x935c },
- 'imagestabilization' => { 31 => 0x22, 101 => 0x3020, 110 => 0x1422, 135 => 'ImageStabilization', 158 => 0xbd, 159 => 0x71, 160 => 0x57, 161 => 0x0, 162 => [0x18,0x107,0x113], 163 => 0x49c2, 193 => 0xac, 249 => 0x604, 252 => 0x1600, 269 => 0x1a, 346 => 0x12, 347 => 0x11, 353 => 0xb026 },
- 'imagestabilization2' => { 345 => 0xa },
- 'imagestabilizationsetting' => { 163 => 0x14, 341 => 0x3d, 342 => 0x3d, 352 => 0x14 },
- 'imagestyle' => { 341 => 0x2d, 342 => 0x27 },
- 'imagesupplier' => { 409 => 'ImageSupplier' },
- 'imagesupplierid' => { 409 => [\'ImageSupplier','ImageSupplierImageSupplierID'] },
- 'imagesupplierimageid' => { 409 => 'ImageSupplierImageID' },
- 'imagesuppliername' => { 409 => [\'ImageSupplier','ImageSupplierImageSupplierName'] },
+ 'imagestabilization' => { 31 => 0x22, 101 => 0x3020, 110 => 0x1422, 135 => 'ImageStabilization', 158 => 0xbd, 159 => 0x71, 160 => 0x57, 161 => 0x0, 162 => [0x18,0x107,0x113], 163 => 0x49c2, 193 => 0xac, 249 => 0x604, 252 => 0x1600, 269 => 0x1a, 348 => 0x12, 349 => 0x11, 355 => 0xb026 },
+ 'imagestabilization2' => { 347 => 0xa },
+ 'imagestabilizationsetting' => { 163 => 0x14, 343 => 0x3d, 344 => 0x3d, 354 => 0x14 },
+ 'imagestyle' => { 343 => 0x2d, 344 => 0x27 },
+ 'imagesupplier' => { 411 => 'ImageSupplier' },
+ 'imagesupplierid' => { 411 => [\'ImageSupplier','ImageSupplierImageSupplierID'] },
+ 'imagesupplierimageid' => { 411 => 'ImageSupplierImageID' },
+ 'imagesuppliername' => { 411 => [\'ImageSupplier','ImageSupplierImageSupplierName'] },
'imagetemperaturemax' => { 107 => 0x1 },
'imagetemperaturemin' => { 107 => 0x2 },
'imagetone' => { 302 => 0x4f },
- 'imagetype' => { 113 => 0x82, 409 => 'ImageType' },
- 'imageuniqueid' => { 55 => 0x28, 105 => 0xa420, 400 => 'ImageUniqueID' },
- 'imagewidth' => { 105 => 0x100, 164 => 0xe, 417 => 'ImageWidth' },
- 'incrementaltemperature' => { 396 => 'IncrementalTemperature' },
- 'incrementaltint' => { 396 => 'IncrementalTint' },
- 'industry' => { 411 => 'industry', 412 => 'industry' },
+ 'imagetype' => { 113 => 0x82, 411 => 'ImageType' },
+ 'imageuniqueid' => { 55 => 0x28, 105 => 0xa420, 402 => 'ImageUniqueID' },
+ 'imagewidth' => { 105 => 0x100, 164 => 0xe, 311 => 0x10c, 419 => 'ImageWidth' },
+ 'incrementaltemperature' => { 398 => 'IncrementalTemperature' },
+ 'incrementaltint' => { 398 => 'IncrementalTint' },
+ 'industry' => { 413 => 'industry', 414 => 'industry' },
'infobuttonwhenshooting' => { 73 => 0x409 },
- 'infraredilluminator' => { 321 => 0x28 },
- 'ingredientexclusion' => { 413 => 'ingredientExclusion' },
- 'ingredients' => { 422 => 'Ingredients' },
- 'ingredientsalternatepaths' => { 422 => [\'Ingredients','IngredientsAlternatePaths'] },
- 'ingredientsdocumentid' => { 422 => [\'Ingredients','IngredientsDocumentID'] },
- 'ingredientsfilepath' => { 422 => [\'Ingredients','IngredientsFilePath'] },
- 'ingredientsfrompart' => { 422 => [\'Ingredients','IngredientsFromPart'] },
- 'ingredientsinstanceid' => { 422 => [\'Ingredients','IngredientsInstanceID'] },
- 'ingredientslastmodifydate' => { 422 => [\'Ingredients','IngredientsLastModifyDate'] },
- 'ingredientsmanager' => { 422 => [\'Ingredients','IngredientsManager'] },
- 'ingredientsmanagervariant' => { 422 => [\'Ingredients','IngredientsManagerVariant'] },
- 'ingredientsmanageto' => { 422 => [\'Ingredients','IngredientsManageTo'] },
- 'ingredientsmanageui' => { 422 => [\'Ingredients','IngredientsManageUI'] },
- 'ingredientsmaskmarkers' => { 422 => [\'Ingredients','IngredientsMaskMarkers'] },
- 'ingredientsoriginaldocumentid' => { 422 => [\'Ingredients','IngredientsOriginalDocumentID'] },
- 'ingredientspartmapping' => { 422 => [\'Ingredients','IngredientsPartMapping'] },
- 'ingredientsrenditionclass' => { 422 => [\'Ingredients','IngredientsRenditionClass'] },
- 'ingredientsrenditionparams' => { 422 => [\'Ingredients','IngredientsRenditionParams'] },
- 'ingredientstopart' => { 422 => [\'Ingredients','IngredientsToPart'] },
- 'ingredientsversionid' => { 422 => [\'Ingredients','IngredientsVersionID'] },
- 'initialhorizontalfovdegrees' => { 385 => 'InitialHorizontalFOVDegrees' },
- 'initialviewheadingdegrees' => { 385 => 'InitialViewHeadingDegrees' },
- 'initialviewpitchdegrees' => { 385 => 'InitialViewPitchDegrees' },
- 'initialviewrolldegrees' => { 385 => 'InitialViewRollDegrees' },
+ 'infraredilluminator' => { 323 => 0x28 },
+ 'ingredientexclusion' => { 415 => 'ingredientExclusion' },
+ 'ingredients' => { 424 => 'Ingredients' },
+ 'ingredientsalternatepaths' => { 424 => [\'Ingredients','IngredientsAlternatePaths'] },
+ 'ingredientsdocumentid' => { 424 => [\'Ingredients','IngredientsDocumentID'] },
+ 'ingredientsfilepath' => { 424 => [\'Ingredients','IngredientsFilePath'] },
+ 'ingredientsfrompart' => { 424 => [\'Ingredients','IngredientsFromPart'] },
+ 'ingredientsinstanceid' => { 424 => [\'Ingredients','IngredientsInstanceID'] },
+ 'ingredientslastmodifydate' => { 424 => [\'Ingredients','IngredientsLastModifyDate'] },
+ 'ingredientsmanager' => { 424 => [\'Ingredients','IngredientsManager'] },
+ 'ingredientsmanagervariant' => { 424 => [\'Ingredients','IngredientsManagerVariant'] },
+ 'ingredientsmanageto' => { 424 => [\'Ingredients','IngredientsManageTo'] },
+ 'ingredientsmanageui' => { 424 => [\'Ingredients','IngredientsManageUI'] },
+ 'ingredientsmaskmarkers' => { 424 => [\'Ingredients','IngredientsMaskMarkers'] },
+ 'ingredientsoriginaldocumentid' => { 424 => [\'Ingredients','IngredientsOriginalDocumentID'] },
+ 'ingredientspartmapping' => { 424 => [\'Ingredients','IngredientsPartMapping'] },
+ 'ingredientsrenditionclass' => { 424 => [\'Ingredients','IngredientsRenditionClass'] },
+ 'ingredientsrenditionparams' => { 424 => [\'Ingredients','IngredientsRenditionParams'] },
+ 'ingredientstopart' => { 424 => [\'Ingredients','IngredientsToPart'] },
+ 'ingredientsversionid' => { 424 => [\'Ingredients','IngredientsVersionID'] },
+ 'initialhorizontalfovdegrees' => { 387 => 'InitialHorizontalFOVDegrees' },
+ 'initialviewheadingdegrees' => { 387 => 'InitialViewHeadingDegrees' },
+ 'initialviewpitchdegrees' => { 387 => 'InitialViewPitchDegrees' },
+ 'initialviewrolldegrees' => { 387 => 'InitialViewRollDegrees' },
'initialzoomliveview' => { 236 => '4.4' },
'initialzoomsetting' => { 236 => '9.3', 242 => '27.3' },
'inkset' => { 105 => 0x14c },
'inputprofile' => { 119 => 0x1389 },
- 'instanceid' => { 422 => 'InstanceID' },
+ 'instanceid' => { 424 => 'InstanceID' },
'instantplaybacksetup' => { 160 => 0x3e },
'instantplaybacktime' => { 160 => 0x3d },
- 'instructions' => { 408 => 'Instructions' },
- 'instrument' => { 421 => 'instrument' },
- 'intellectualgenre' => { 405 => 'IntellectualGenre' },
- 'intelligentauto' => { 353 => 0xb052 },
+ 'instructions' => { 410 => 'Instructions' },
+ 'instrument' => { 423 => 'instrument' },
+ 'intellectualgenre' => { 407 => 'IntellectualGenre' },
+ 'intelligentauto' => { 355 => 0xb052 },
'intelligentcontrast' => { 44 => 0x4 },
'intelligentd-range' => { 269 => 0x79 },
'intelligentexposure' => { 269 => 0x5d },
@@ -2497,35 +2501,35 @@ my %tagLookup = (
'internalflashmode' => { 290 => 0x1 },
'internalflashstrength' => { 290 => 0x3 },
'internalflashtable' => { 254 => 0x1024 },
- 'internallensserialnumber' => { 331 => 0xa005 },
+ 'internallensserialnumber' => { 333 => 0xa005 },
'internalndfilter' => { 269 => 0x9d },
- 'internalserialnumber' => { 55 => 0x96, 66 => 0x9, 110 => 0x10, 163 => 0x49dc, 248 => 0x18, 250 => 0x102, 269 => 0x25, 282 => 0x4, 325 => 0x5, 368 => [0x7c,0x88,0xf0] },
- 'interopindex' => { 105 => 0x1, 401 => 'InteroperabilityIndex' },
+ 'internalserialnumber' => { 55 => 0x96, 66 => 0x9, 110 => 0x10, 163 => 0x49dc, 248 => 0x18, 250 => 0x102, 269 => 0x25, 282 => 0x4, 327 => 0x5, 370 => [0x7c,0x88,0xf0] },
+ 'interopindex' => { 105 => 0x1, 403 => 'InteroperabilityIndex' },
'interopversion' => { 105 => 0x2 },
'intervallength' => { 157 => 0x10 },
'intervalmode' => { 157 => 0x26 },
'intervalnumber' => { 157 => 0x11 },
- 'introtime' => { 421 => 'introTime' },
- 'introtimescale' => { 421 => [\'introTime','introTimeScale'] },
- 'introtimevalue' => { 421 => [\'introTime','introTimeValue'] },
+ 'introtime' => { 423 => 'introTime' },
+ 'introtimescale' => { 423 => [\'introTime','introTimeScale'] },
+ 'introtimevalue' => { 423 => [\'introTime','introTimeValue'] },
'iptc' => { 106 => 'IPTC' },
'iptc-naa' => { 105 => 0x83bb, 273 => 0x83bb },
'iptcbitspersample' => { 115 => 0x56 },
- 'iptcdigest' => { 314 => 0x425 },
+ 'iptcdigest' => { 316 => 0x425 },
'iptcimageheight' => { 115 => 0x1e },
'iptcimagerotation' => { 115 => 0x66 },
'iptcimagewidth' => { 115 => 0x14 },
- 'iptclastedited' => { 406 => 'IptcLastEdited' },
+ 'iptclastedited' => { 408 => 'IptcLastEdited' },
'iptcpicturenumber' => { 115 => 0xa },
'iptcpixelheight' => { 115 => 0x32 },
'iptcpixelwidth' => { 115 => 0x28 },
- 'isalternativeof' => { 411 => 'isAlternativeOf' },
- 'isbn' => { 411 => 'isbn' },
- 'iscorrectionof' => { 411 => 'isCorrectionOf' },
+ 'isalternativeof' => { 413 => 'isAlternativeOf' },
+ 'isbn' => { 413 => 'isbn' },
+ 'iscorrectionof' => { 413 => 'isCorrectionOf' },
'iscustompicturestyle' => { 97 => 0x3 },
- 'ismergedhdr' => { 392 => 'IsMergedHDR' },
- 'ismergedpanorama' => { 392 => 'IsMergedPanorama' },
- 'iso' => { 6 => 0x6, 8 => 0x6, 9 => 0x75, 10 => 0x6, 11 => 0x79, 12 => 0x6, 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 => 0x0, 28 => 0x1, 100 => 0x14, 101 => [0x3014,0x14], 105 => 0x8827, 118 => 0xfd06, 119 => 0x1784, 121 => 0x60, 123 => [0xfa2e,0xfa46], 124 => [0x27,0x28], 125 => 0xf105, 128 => 0x14, 130 => 0x4e, 133 => 0x34, 135 => 'ISO', 157 => 0x8, 163 => 0x49ba, 187 => 0x0, 193 => 0x2, 273 => 0x17, 302 => [0x8b,0x14], 309 => 0x14, 331 => 0xa014, 352 => 0x6f, 357 => [0x1f,0x21,0x25], 400 => 'ISOSpeedRatings' },
+ 'ismergedhdr' => { 394 => 'IsMergedHDR' },
+ 'ismergedpanorama' => { 394 => 'IsMergedPanorama' },
+ 'iso' => { 6 => 0x6, 8 => 0x6, 9 => 0x75, 10 => 0x6, 11 => 0x79, 12 => 0x6, 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 => 0x0, 28 => 0x1, 100 => 0x14, 101 => [0x3014,0x14], 105 => 0x8827, 118 => 0xfd06, 119 => 0x1784, 121 => 0x60, 123 => [0xfa2e,0xfa46], 124 => [0x27,0x28], 125 => 0xf105, 128 => 0x14, 130 => 0x4e, 133 => 0x34, 135 => 'ISO', 157 => 0x8, 163 => 0x49ba, 187 => 0x0, 193 => 0x2, 273 => 0x17, 302 => [0x8b,0x14], 309 => 0x14, 311 => 0x105, 333 => 0xa014, 354 => 0x6f, 359 => [0x1f,0x21,0x25], 402 => 'ISOSpeedRatings' },
'iso2' => { 187 => 0x6, 201 => 0x265, 202 => 0x25c, 203 => 0x265, 204 => 0x221, 205 => 0x25d, 206 => 0x256, 207 => 0x25d, 210 => 0x2b5, 213 => 0x265, 218 => 0x2b5 },
'isoauto' => { 283 => '14.4' },
'isoautoparameters' => { 302 => 0x7a },
@@ -2535,35 +2539,35 @@ my %tagLookup = (
'isofloor' => { 283 => 0x6 },
'isoselection' => { 193 => 0xf },
'isosensitivitystep' => { 243 => '6.2' },
- 'isosetting' => { 121 => 0x5e, 135 => 'ISOSetting', 157 => 0x24, 158 => 0x26, 159 => 0x1c, 160 => 0x13, 165 => 0x6, 193 => 0x13, 283 => '17.3', 324 => 0x27, 341 => 0x16, 342 => 0x14, 343 => 0x2, 352 => 0x6d },
- 'isospeed' => { 105 => 0x8833, 401 => 'ISOSpeed' },
+ 'isosetting' => { 121 => 0x5e, 135 => 'ISOSetting', 157 => 0x24, 158 => 0x26, 159 => 0x1c, 160 => 0x13, 165 => 0x6, 193 => 0x13, 283 => '17.3', 326 => 0x27, 343 => 0x16, 344 => 0x14, 345 => 0x2, 354 => 0x6d },
+ 'isospeed' => { 105 => 0x8833, 403 => 'ISOSpeed' },
'isospeedexpansion' => { 72 => 0x3 },
'isospeedincrements' => { 73 => 0x102 },
- 'isospeedlatitudeyyy' => { 105 => 0x8834, 401 => 'ISOSpeedLatitudeyyy' },
- 'isospeedlatitudezzz' => { 105 => 0x8835, 401 => 'ISOSpeedLatitudezzz' },
+ 'isospeedlatitudeyyy' => { 105 => 0x8834, 403 => 'ISOSpeedLatitudeyyy' },
+ 'isospeedlatitudezzz' => { 105 => 0x8835, 403 => 'ISOSpeedLatitudezzz' },
'isospeedrange' => { 73 => 0x103 },
'isostepsize' => { 236 => '6.1', 237 => '7.2', 242 => '4.1', 246 => '7.2' },
'isovalue' => { 254 => 0x1001 },
- 'issn' => { 411 => 'issn' },
- 'issueidentifier' => { 411 => 'issueIdentifier' },
- 'issuename' => { 411 => 'issueName' },
- 'issueteaser' => { 411 => 'issueTeaser' },
- 'issuetype' => { 411 => 'issueType' },
- 'istranslationof' => { 411 => 'isTranslationOf' },
+ 'issn' => { 413 => 'issn' },
+ 'issueidentifier' => { 413 => 'issueIdentifier' },
+ 'issuename' => { 413 => 'issueName' },
+ 'issueteaser' => { 413 => 'issueTeaser' },
+ 'issuetype' => { 413 => 'issueType' },
+ 'istranslationof' => { 413 => 'isTranslationOf' },
'jobid' => { 113 => 0xb8 },
- 'jobname' => { 402 => 'JobName' },
- 'jobref' => { 420 => 'JobRef' },
- 'jobrefid' => { 420 => [\'JobRef','JobRefId'] },
- 'jobrefname' => { 420 => [\'JobRef','JobRefName'] },
- 'jobrefurl' => { 420 => [\'JobRef','JobRefUrl'] },
- 'jobstatus' => { 402 => 'JobStatus' },
- 'jpegquality' => { 9 => 0x66, 271 => 0x3034, 353 => 0xb047 },
+ 'jobname' => { 404 => 'JobName' },
+ 'jobref' => { 422 => 'JobRef' },
+ 'jobrefid' => { 422 => [\'JobRef','JobRefId'] },
+ 'jobrefname' => { 422 => [\'JobRef','JobRefName'] },
+ 'jobrefurl' => { 422 => [\'JobRef','JobRefUrl'] },
+ 'jobstatus' => { 404 => 'JobStatus' },
+ 'jpegquality' => { 9 => 0x66, 271 => 0x3034, 355 => 0xb047 },
'jpegsize' => { 271 => 0x303a },
'jpgfromraw' => { 86 => 0x2007, 102 => 'JpgFromRaw', 273 => 0x2e },
'jpgfromrawlength' => { 105 => [0x117,0x202] },
'jpgfromrawstart' => { 105 => [0x111,0x201] },
'jpgrecordedpixels' => { 283 => '14.1' },
- 'jurisdiction' => { 393 => 'jurisdiction' },
+ 'jurisdiction' => { 395 => 'jurisdiction' },
'kelvinwb_01' => { 291 => 0x5 },
'kelvinwb_02' => { 291 => 0x9 },
'kelvinwb_03' => { 291 => 0xd },
@@ -2581,13 +2585,13 @@ my %tagLookup = (
'kelvinwb_15' => { 291 => 0x3d },
'kelvinwb_16' => { 291 => 0x41 },
'kelvinwb_daylight' => { 291 => 0x1 },
- 'key' => { 421 => 'key' },
- 'keyword' => { 411 => 'keyword' },
+ 'key' => { 423 => 'key' },
+ 'keyword' => { 413 => 'keyword' },
'keywordinfo' => { 150 => 'Keywords' },
- 'keywords' => { 113 => 0x19, 136 => 'Keywords', 258 => 'Keywords', 316 => 'Keywords', 390 => 'keywords', 407 => 'Keywords', 419 => 'Keywords' },
- 'killdate' => { 411 => 'killDate' },
- 'killdatea-platform' => { 411 => [\'killDate','killDateA-platform'] },
- 'killdatedate' => { 411 => [\'killDate','killDateDate'] },
+ 'keywords' => { 113 => 0x19, 136 => 'Keywords', 258 => 'Keywords', 318 => 'Keywords', 392 => 'keywords', 409 => 'Keywords', 421 => 'Keywords' },
+ 'killdate' => { 413 => 'killDate' },
+ 'killdatea-platform' => { 413 => [\'killDate','killDateA-platform'] },
+ 'killdatedate' => { 413 => [\'killDate','killDateDate'] },
'kodakimageheight' => { 118 => 0xf908, 121 => 0xe, 123 => [0xfa1e,0xfa52], 129 => 0x70 },
'kodakimagewidth' => { 118 => 0xf907, 121 => 0xc, 123 => [0xfa1d,0xfa51], 129 => 0x6c },
'kodakinfotype' => { 118 => 0xfa00 },
@@ -2595,13 +2599,13 @@ my %tagLookup = (
'kodaklookprofile' => { 119 => 0x138a },
'kodakmaker' => { 129 => 0x8 },
'kodakmodel' => { 121 => 0x0, 129 => 0x28 },
- 'label' => { 261 => 'Label', 419 => 'Label' },
- 'labelname1' => { 404 => [\'TagStructure','TagStructureLabelName'] },
- 'labelname2' => { 404 => [\'TagStructure','TagStructureSubLabelsLabelName'] },
- 'labelname3' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] },
- 'labelname4' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] },
- 'labelname5' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
- 'labelname6' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'label' => { 261 => 'Label', 421 => 'Label' },
+ 'labelname1' => { 406 => [\'TagStructure','TagStructureLabelName'] },
+ 'labelname2' => { 406 => [\'TagStructure','TagStructureSubLabelsLabelName'] },
+ 'labelname3' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] },
+ 'labelname4' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'labelname5' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'labelname6' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
'landmark' => { 269 => 0x6f },
'landscapeoutputhighlightpoint' => { 97 => 0x26 },
'landscapeoutputshadowpoint' => { 97 => 0x27 },
@@ -2617,19 +2621,19 @@ my %tagLookup = (
'landscapeunsharpmaskfineness' => { 97 => 0xa0 },
'landscapeunsharpmaskstrength' => { 97 => 0x9e },
'landscapeunsharpmaskthreshold' => { 97 => 0xa2 },
- 'language' => { 397 => 'language' },
+ 'language' => { 399 => 'language' },
'languageidentifier' => { 113 => 0x87 },
- 'largestvalidinteriorrectheight' => { 385 => 'LargestValidInteriorRectHeight' },
- 'largestvalidinteriorrectleft' => { 385 => 'LargestValidInteriorRectLeft' },
- 'largestvalidinteriorrecttop' => { 385 => 'LargestValidInteriorRectTop' },
- 'largestvalidinteriorrectwidth' => { 385 => 'LargestValidInteriorRectWidth' },
+ 'largestvalidinteriorrectheight' => { 387 => 'LargestValidInteriorRectHeight' },
+ 'largestvalidinteriorrectleft' => { 387 => 'LargestValidInteriorRectLeft' },
+ 'largestvalidinteriorrecttop' => { 387 => 'LargestValidInteriorRectTop' },
+ 'largestvalidinteriorrectwidth' => { 387 => 'LargestValidInteriorRectWidth' },
'lastfilenumber' => { 157 => 0x1b },
'lastkeywordiptc' => { 155 => 'LastKeywordIPTC' },
'lastkeywordxmp' => { 155 => 'LastKeywordXMP' },
- 'lastphotodate' => { 385 => 'LastPhotoDate' },
- 'lasturl' => { 422 => 'LastURL' },
- 'lateralchromaticaberration' => { 353 => 0x2012 },
- 'lateralchromaticaberrationcorrectionalreadyapplied' => { 392 => 'LateralChromaticAberrationCorrectionAlreadyApplied' },
+ 'lastphotodate' => { 387 => 'LastPhotoDate' },
+ 'lasturl' => { 424 => 'LastURL' },
+ 'lateralchromaticaberration' => { 355 => 0x2012 },
+ 'lateralchromaticaberrationcorrectionalreadyapplied' => { 394 => 'LateralChromaticAberrationCorrectionAlreadyApplied' },
'latestageorhigheststage' => { 104 => [\'GeologicalContext','GeologicalContextLatestAgeOrHighestStage'] },
'latesteonorhighesteonothem' => { 104 => [\'GeologicalContext','GeologicalContextLatestEonOrHighestEonothem'] },
'latestepochorhighestseries' => { 104 => [\'GeologicalContext','GeologicalContextLatestEpochOrHighestSeries'] },
@@ -2653,98 +2657,98 @@ my %tagLookup = (
'lcdilluminationduringbulb' => { 73 => 0x408 },
'lcdpanels' => { 72 => 0x8 },
'lcheditor' => { 229 => 0x8ae85e },
- 'legacyiptcdigest' => { 408 => 'LegacyIPTCDigest' },
- 'legalcode' => { 393 => 'legalcode' },
- 'lens' => { 105 => 0xfdea, 193 => 0x84, 392 => 'Lens' },
+ 'legacyiptcdigest' => { 410 => 'LegacyIPTCDigest' },
+ 'legalcode' => { 395 => 'legalcode' },
+ 'lens' => { 105 => 0xfdea, 193 => 0x84, 394 => 'Lens' },
'lensafstopbutton' => { 71 => 0x11, 72 => 0x13, 73 => 0x506, 74 => 0x10, 75 => 0x12, 78 => 0x13, 79 => 0x9 },
- 'lensaperturerange' => { 334 => [0x30,0x48] },
- 'lenscorrectionsettings' => { 399 => 'LensCorrectionSettings' },
+ 'lensaperturerange' => { 336 => [0x30,0x48] },
+ 'lenscorrectionsettings' => { 401 => 'LensCorrectionSettings' },
'lensdistortionparams' => { 254 => 0x206 },
'lensdrivenoaf' => { 73 => 0x505 },
- 'lense-mountversion' => { 343 => 0x3f0, 380 => 0xd },
- 'lensfirmware' => { 326 => 0x20, 331 => 0xa004 },
- 'lensfirmwareversion' => { 250 => 0x204, 269 => 0x60, 343 => 0x3f4, 380 => 0x15 },
+ 'lense-mountversion' => { 345 => 0x3f0, 382 => 0xd },
+ 'lensfirmware' => { 328 => 0x20, 333 => 0xa004 },
+ 'lensfirmwareversion' => { 250 => 0x204, 269 => 0x60, 345 => 0x3f4, 382 => 0x15 },
'lensfocallength' => { 91 => 0xf0512, 293 => 0x9 },
- 'lensfocalrange' => { 334 => [0xa,0x2a] },
+ 'lensfocalrange' => { 336 => [0xa,0x2a] },
'lensfocusfunctionbuttons' => { 237 => '55.1', 246 => '52.1' },
- 'lensformat' => { 364 => 0x1891, 366 => 0x18bd, 367 => 0x18ed, 368 => 0x106, 376 => 0x603, 377 => 0x5d },
+ 'lensformat' => { 366 => 0x1891, 368 => 0x18bd, 369 => 0x18ed, 370 => 0x106, 378 => 0x603, 379 => 0x5d },
'lensfstops' => { 188 => 0x7, 189 => 0xc, 190 => 0xd, 193 => 0x8b, 293 => '0.3' },
- 'lensid' => { 392 => 'LensID' },
+ 'lensid' => { 394 => 'LensID' },
'lensidnumber' => { 188 => 0x6, 189 => 0xb, 190 => 0xc },
- 'lensinfo' => { 105 => 0xa432, 299 => 0x2a, 392 => 'LensInfo', 401 => 'LensSpecification' },
+ 'lensinfo' => { 105 => 0xa432, 299 => 0x2a, 394 => 'LensInfo', 403 => 'LensSpecification' },
'lenskind' => { 293 => 0x1 },
- 'lensmake' => { 105 => 0xa433, 142 => 'Make', 401 => 'LensMake' },
- 'lensmanualdistortionamount' => { 396 => 'LensManualDistortionAmount' },
+ 'lensmake' => { 105 => 0xa433, 142 => 'Make', 403 => 'LensMake' },
+ 'lensmanualdistortionamount' => { 398 => 'LensManualDistortionAmount' },
'lensmanufacturer' => { 155 => 'LensManufacturer' },
- 'lensmaxaperturerange' => { 334 => 0x2b },
- 'lensmodel' => { 6 => 0x937, 13 => 0x92b, 14 => 0x933, 55 => 0x95, 105 => 0xa434, 142 => 'Model', 155 => 'LensModel', 191 => 0x18a, 250 => 0x203, 267 => 0x303, 299 => 0xc, 401 => 'LensModel' },
- 'lensmount' => { 343 => 0x99, 364 => 0x1892, 366 => 0x18be, 367 => 0x18ee, 368 => 0x105, 376 => 0x604, 377 => 0x5e },
- 'lensmount2' => { 380 => 0x8 },
- 'lensparameters' => { 361 => 0x1a23, 364 => 0x1870, 366 => 0x189c, 367 => 0x18cc, 376 => 0x6ca, 377 => 0x64 },
- 'lensprofilechromaticaberrationscale' => { 396 => 'LensProfileChromaticAberrationScale' },
- 'lensprofiledigest' => { 396 => 'LensProfileDigest' },
- 'lensprofiledistortionscale' => { 396 => 'LensProfileDistortionScale' },
- 'lensprofileenable' => { 396 => 'LensProfileEnable' },
- 'lensprofilefilename' => { 396 => 'LensProfileFilename' },
- 'lensprofilematchkeycameramodelname' => { 396 => 'LensProfileMatchKeyCameraModelName' },
- 'lensprofilematchkeyexifmake' => { 396 => 'LensProfileMatchKeyExifMake' },
- 'lensprofilematchkeyexifmodel' => { 396 => 'LensProfileMatchKeyExifModel' },
- 'lensprofilematchkeyisraw' => { 396 => 'LensProfileMatchKeyIsRaw' },
- 'lensprofilematchkeylensid' => { 396 => 'LensProfileMatchKeyLensID' },
- 'lensprofilematchkeylensinfo' => { 396 => 'LensProfileMatchKeyLensInfo' },
- 'lensprofilematchkeylensname' => { 396 => 'LensProfileMatchKeyLensName' },
- 'lensprofilematchkeysensorformatfactor' => { 396 => 'LensProfileMatchKeySensorFormatFactor' },
- 'lensprofilename' => { 396 => 'LensProfileName' },
- 'lensprofilesetup' => { 396 => 'LensProfileSetup' },
- 'lensprofilevignettingscale' => { 396 => 'LensProfileVignettingScale' },
+ 'lensmaxaperturerange' => { 336 => 0x2b },
+ 'lensmodel' => { 6 => 0x937, 13 => 0x92b, 14 => 0x933, 55 => 0x95, 105 => 0xa434, 142 => 'Model', 155 => 'LensModel', 191 => 0x18a, 250 => 0x203, 267 => 0x303, 299 => 0xc, 311 => 0x412, 403 => 'LensModel' },
+ 'lensmount' => { 345 => 0x99, 366 => 0x1892, 368 => 0x18be, 369 => 0x18ee, 370 => 0x105, 378 => 0x604, 379 => 0x5e },
+ 'lensmount2' => { 382 => 0x8 },
+ 'lensparameters' => { 363 => 0x1a23, 366 => 0x1870, 368 => 0x189c, 369 => 0x18cc, 378 => 0x6ca, 379 => 0x64 },
+ 'lensprofilechromaticaberrationscale' => { 398 => 'LensProfileChromaticAberrationScale' },
+ 'lensprofiledigest' => { 398 => 'LensProfileDigest' },
+ 'lensprofiledistortionscale' => { 398 => 'LensProfileDistortionScale' },
+ 'lensprofileenable' => { 398 => 'LensProfileEnable' },
+ 'lensprofilefilename' => { 398 => 'LensProfileFilename' },
+ 'lensprofilematchkeycameramodelname' => { 398 => 'LensProfileMatchKeyCameraModelName' },
+ 'lensprofilematchkeyexifmake' => { 398 => 'LensProfileMatchKeyExifMake' },
+ 'lensprofilematchkeyexifmodel' => { 398 => 'LensProfileMatchKeyExifModel' },
+ 'lensprofilematchkeyisraw' => { 398 => 'LensProfileMatchKeyIsRaw' },
+ 'lensprofilematchkeylensid' => { 398 => 'LensProfileMatchKeyLensID' },
+ 'lensprofilematchkeylensinfo' => { 398 => 'LensProfileMatchKeyLensInfo' },
+ 'lensprofilematchkeylensname' => { 398 => 'LensProfileMatchKeyLensName' },
+ 'lensprofilematchkeysensorformatfactor' => { 398 => 'LensProfileMatchKeySensorFormatFactor' },
+ 'lensprofilename' => { 398 => 'LensProfileName' },
+ 'lensprofilesetup' => { 398 => 'LensProfileSetup' },
+ 'lensprofilevignettingscale' => { 398 => 'LensProfileVignettingScale' },
'lensproperties' => { 250 => 0x20b },
- 'lensserialnumber' => { 20 => 0x164, 29 => 0x16b, 53 => 0x0, 105 => 0xa435, 142 => 'SerialNumber', 250 => 0x202, 269 => 0x52, 326 => 0x30, 392 => 'LensSerialNumber', 401 => 'LensSerialNumber' },
+ 'lensserialnumber' => { 20 => 0x164, 29 => 0x16b, 53 => 0x0, 105 => 0xa435, 142 => 'SerialNumber', 250 => 0x202, 269 => 0x52, 328 => 0x30, 394 => 'LensSerialNumber', 403 => 'LensSerialNumber' },
'lensshutterlock' => { 160 => 0x4a },
- 'lensspec' => { 338 => 0x0, 339 => 0x0, 340 => 0x0, 353 => 0xb02a },
- 'lensspecfeatures' => { 368 => [0x115,0x116] },
+ 'lensspec' => { 340 => 0x0, 341 => 0x0, 342 => 0x0, 355 => 0xb02a },
+ 'lensspecfeatures' => { 370 => [0x115,0x116] },
'lenstemperature' => { 254 => 0x1008 },
- 'lenstype' => { 6 => 0xe2, 7 => 0xd, 8 => 0x1a7, 9 => 0xc, 10 => 0x111, 11 => 0xc, 12 => 0x14f, 13 => 0xd6, 14 => 0xde, 15 => 0xf6, 16 => 0xea, 17 => 0xff, 18 => [0xc,0x97], 19 => 0xe6, 20 => 0x153, 21 => 0xea, 22 => 0xe8, 23 => 0x127, 24 => 0x161, 25 => 0x166, 26 => 0x112, 31 => 0x16, 162 => 0x10c, 163 => 0x49bd, 193 => 0x83, 250 => 0x201, 262 => 0x16, 265 => 0x310, 268 => 0x303, 269 => 0x51, 271 => 0x3405, 294 => 0x0, 295 => 0x0, 296 => 0x1, 297 => 0x1, 298 => 0x1, 300 => 0x0, 331 => 0xa003, 334 => 0x27, 353 => 0xb027, 364 => 0x1896, 366 => 0x18c2, 367 => 0x18f2, 368 => 0x109, 376 => 0x608, 377 => 0x62 },
- 'lenstype2' => { 343 => 0x3f7, 364 => 0x1893, 366 => 0x18bf, 367 => 0x18ef, 368 => 0x107, 376 => 0x605, 377 => 0x60 },
- 'lenstype3' => { 380 => 0x9 },
- 'lenszoomposition' => { 374 => 0x19, 375 => 0x1e, 377 => [0x342,0x35a] },
+ 'lenstype' => { 6 => 0xe2, 7 => 0xd, 8 => 0x1a7, 9 => 0xc, 10 => 0x111, 11 => 0xc, 12 => 0x14f, 13 => 0xd6, 14 => 0xde, 15 => 0xf6, 16 => 0xea, 17 => 0xff, 18 => [0xc,0x97], 19 => 0xe6, 20 => 0x153, 21 => 0xea, 22 => 0xe8, 23 => 0x127, 24 => 0x161, 25 => 0x166, 26 => 0x112, 31 => 0x16, 162 => 0x10c, 163 => 0x49bd, 193 => 0x83, 250 => 0x201, 262 => 0x16, 265 => 0x310, 268 => 0x303, 269 => 0x51, 271 => 0x3405, 294 => 0x0, 295 => 0x0, 296 => 0x1, 297 => 0x1, 298 => 0x1, 300 => 0x0, 333 => 0xa003, 336 => 0x27, 355 => 0xb027, 366 => 0x1896, 368 => 0x18c2, 369 => 0x18f2, 370 => 0x109, 378 => 0x608, 379 => 0x62 },
+ 'lenstype2' => { 345 => 0x3f7, 366 => 0x1893, 368 => 0x18bf, 369 => 0x18ef, 370 => 0x107, 378 => 0x605, 379 => 0x60 },
+ 'lenstype3' => { 382 => 0x9 },
+ 'lenszoomposition' => { 376 => 0x19, 377 => 0x1e, 379 => [0x342,0x35a] },
'levelindicator' => { 276 => 0x15 },
'levelorientation' => { 301 => 0x0 },
- 'license' => { 393 => 'license' },
- 'licensee' => { 409 => 'Licensee' },
- 'licenseeid' => { 409 => [\'Licensee','LicenseeLicenseeID'] },
- 'licenseeimageid' => { 409 => 'LicenseeImageID' },
- 'licenseeimagenotes' => { 409 => 'LicenseeImageNotes' },
- 'licenseename' => { 409 => [\'Licensee','LicenseeLicenseeName'] },
- 'licenseenddate' => { 409 => 'LicenseEndDate' },
- 'licenseeprojectreference' => { 409 => 'LicenseeProjectReference' },
- 'licenseetransactionid' => { 409 => 'LicenseeTransactionID' },
- 'licenseid' => { 409 => 'LicenseID' },
- 'licensestartdate' => { 409 => 'LicenseStartDate' },
- 'licensetransactiondate' => { 409 => 'LicenseTransactionDate' },
- 'licensetype' => { 398 => 'licensetype' },
- 'licensor' => { 409 => 'Licensor' },
- 'licensorcity' => { 409 => [\'Licensor','LicensorLicensorCity'] },
- 'licensorcountry' => { 409 => [\'Licensor','LicensorLicensorCountry'] },
- 'licensoremail' => { 409 => [\'Licensor','LicensorLicensorEmail'] },
- 'licensorextendedaddress' => { 409 => [\'Licensor','LicensorLicensorExtendedAddress'] },
- 'licensorid' => { 409 => [\'Licensor','LicensorLicensorID'] },
- 'licensorimageid' => { 409 => 'LicensorImageID' },
- 'licensorname' => { 409 => [\'Licensor','LicensorLicensorName'] },
- 'licensornotes' => { 409 => 'LicensorNotes' },
- 'licensorpostalcode' => { 409 => [\'Licensor','LicensorLicensorPostalCode'] },
- 'licensorregion' => { 409 => [\'Licensor','LicensorLicensorRegion'] },
- 'licensorstreetaddress' => { 409 => [\'Licensor','LicensorLicensorStreetAddress'] },
- 'licensortelephone1' => { 409 => [\'Licensor','LicensorLicensorTelephone1'] },
- 'licensortelephone2' => { 409 => [\'Licensor','LicensorLicensorTelephone2'] },
- 'licensortelephonetype1' => { 409 => [\'Licensor','LicensorLicensorTelephoneType1'] },
- 'licensortelephonetype2' => { 409 => [\'Licensor','LicensorLicensorTelephoneType2'] },
- 'licensortransactionid' => { 409 => 'LicensorTransactionID' },
- 'licensorurl' => { 409 => [\'Licensor','LicensorLicensorURL'] },
+ 'license' => { 395 => 'license' },
+ 'licensee' => { 411 => 'Licensee' },
+ 'licenseeid' => { 411 => [\'Licensee','LicenseeLicenseeID'] },
+ 'licenseeimageid' => { 411 => 'LicenseeImageID' },
+ 'licenseeimagenotes' => { 411 => 'LicenseeImageNotes' },
+ 'licenseename' => { 411 => [\'Licensee','LicenseeLicenseeName'] },
+ 'licenseenddate' => { 411 => 'LicenseEndDate' },
+ 'licenseeprojectreference' => { 411 => 'LicenseeProjectReference' },
+ 'licenseetransactionid' => { 411 => 'LicenseeTransactionID' },
+ 'licenseid' => { 411 => 'LicenseID' },
+ 'licensestartdate' => { 411 => 'LicenseStartDate' },
+ 'licensetransactiondate' => { 411 => 'LicenseTransactionDate' },
+ 'licensetype' => { 400 => 'licensetype' },
+ 'licensor' => { 411 => 'Licensor' },
+ 'licensorcity' => { 411 => [\'Licensor','LicensorLicensorCity'] },
+ 'licensorcountry' => { 411 => [\'Licensor','LicensorLicensorCountry'] },
+ 'licensoremail' => { 411 => [\'Licensor','LicensorLicensorEmail'] },
+ 'licensorextendedaddress' => { 411 => [\'Licensor','LicensorLicensorExtendedAddress'] },
+ 'licensorid' => { 411 => [\'Licensor','LicensorLicensorID'] },
+ 'licensorimageid' => { 411 => 'LicensorImageID' },
+ 'licensorname' => { 411 => [\'Licensor','LicensorLicensorName'] },
+ 'licensornotes' => { 411 => 'LicensorNotes' },
+ 'licensorpostalcode' => { 411 => [\'Licensor','LicensorLicensorPostalCode'] },
+ 'licensorregion' => { 411 => [\'Licensor','LicensorLicensorRegion'] },
+ 'licensorstreetaddress' => { 411 => [\'Licensor','LicensorLicensorStreetAddress'] },
+ 'licensortelephone1' => { 411 => [\'Licensor','LicensorLicensorTelephone1'] },
+ 'licensortelephone2' => { 411 => [\'Licensor','LicensorLicensorTelephone2'] },
+ 'licensortelephonetype1' => { 411 => [\'Licensor','LicensorLicensorTelephoneType1'] },
+ 'licensortelephonetype2' => { 411 => [\'Licensor','LicensorLicensorTelephoneType2'] },
+ 'licensortransactionid' => { 411 => 'LicensorTransactionID' },
+ 'licensorurl' => { 411 => [\'Licensor','LicensorLicensorURL'] },
'lightcondition' => { 254 => 0x1009 },
'lightingmode' => { 101 => 0x302a },
'lightreading' => { 302 => 0x15 },
- 'lightsource' => { 105 => 0x9208, 193 => 0x90, 257 => 0x1000, 400 => 'LightSource' },
- 'lightsourcespecial' => { 333 => 0x21d },
+ 'lightsource' => { 105 => 0x9208, 193 => 0x90, 257 => 0x1000, 402 => 'LightSource' },
+ 'lightsourcespecial' => { 335 => 0x21d },
'lightswitch' => { 246 => '0.1', 247 => '0.1' },
'lightvaluecenter' => { 254 => 0x103d },
'lightvalueperiphery' => { 254 => 0x103e },
@@ -2755,86 +2759,86 @@ my %tagLookup = (
'linearityuppermargin' => { 38 => [0x2ba,0x2d1,0x2d5], 40 => 0x1e5, 41 => [0x1fe,0x2de], 42 => 0x310 },
'linearizationtable' => { 105 => 0xc618 },
'linearresponselimit' => { 105 => 0xc62e },
- 'link' => { 411 => 'link' },
+ 'link' => { 413 => 'link' },
'linkaetoafpoint' => { 283 => '14.2' },
- 'linkedencodedrightsexpr' => { 406 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] },
- 'linkedencodedrightsexprlangid' => { 406 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] },
- 'linkedencodedrightsexprtype' => { 406 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] },
- 'linkedencrightsexpr' => { 406 => 'LinkedEncRightsExpr' },
+ 'linkedencodedrightsexpr' => { 408 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] },
+ 'linkedencodedrightsexprlangid' => { 408 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] },
+ 'linkedencodedrightsexprtype' => { 408 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] },
+ 'linkedencrightsexpr' => { 408 => 'LinkedEncRightsExpr' },
'lithostratigraphicterms' => { 104 => [\'GeologicalContext','GeologicalContextLithostratigraphicTerms'] },
'liveviewaf' => { 239 => '32.1', 247 => '34.1' },
'liveviewafareamode' => { 243 => '34.1' },
- 'liveviewafmethod' => { 357 => 0x20 },
+ 'liveviewafmethod' => { 359 => 0x20 },
'liveviewafmode' => { 243 => '34.2' },
- 'liveviewafsetting' => { 343 => 0x36 },
+ 'liveviewafsetting' => { 345 => 0x36 },
'liveviewbuttonoptions' => { 237 => '50.2', 246 => '48.2' },
'liveviewexposuresimulation' => { 73 => 0x810 },
- 'liveviewfocusmode' => { 343 => [0x8b,0x28b] },
- 'liveviewmetering' => { 343 => [0x84,0x284] },
+ 'liveviewfocusmode' => { 345 => [0x8b,0x28b] },
+ 'liveviewmetering' => { 345 => [0x84,0x284] },
'liveviewmonitorofftime' => { 237 => '21.2', 240 => '20.2', 241 => '20.2', 243 => '20.2', 246 => '21.2' },
'liveviewshooting' => { 49 => 0x13 },
'localcaption' => { 113 => 0x79 },
'localizedcameramodel' => { 105 => 0xc615 },
- 'locallocationname' => { 331 => 0x30 },
- 'location' => { 192 => 0x9, 269 => 0x67, 388 => 'Location', 405 => 'Location', 410 => 'location', 411 => 'location' },
- 'locationareacode' => { 394 => 'lac' },
- 'locationcreated' => { 406 => 'LocationCreated' },
- 'locationcreatedcity' => { 406 => [\'LocationCreated','LocationCreatedCity'] },
- 'locationcreatedcountrycode' => { 406 => [\'LocationCreated','LocationCreatedCountryCode'] },
- 'locationcreatedcountryname' => { 406 => [\'LocationCreated','LocationCreatedCountryName'] },
- 'locationcreatedlocationid' => { 406 => [\'LocationCreated','LocationCreatedLocationId'] },
- 'locationcreatedprovincestate' => { 406 => [\'LocationCreated','LocationCreatedProvinceState'] },
- 'locationcreatedsublocation' => { 406 => [\'LocationCreated','LocationCreatedSublocation'] },
- 'locationcreatedworldregion' => { 406 => [\'LocationCreated','LocationCreatedWorldRegion'] },
+ 'locallocationname' => { 333 => 0x30 },
+ 'location' => { 192 => 0x9, 269 => 0x67, 390 => 'Location', 407 => 'Location', 412 => 'location', 413 => 'location' },
+ 'locationareacode' => { 396 => 'lac' },
+ 'locationcreated' => { 408 => 'LocationCreated' },
+ 'locationcreatedcity' => { 408 => [\'LocationCreated','LocationCreatedCity'] },
+ 'locationcreatedcountrycode' => { 408 => [\'LocationCreated','LocationCreatedCountryCode'] },
+ 'locationcreatedcountryname' => { 408 => [\'LocationCreated','LocationCreatedCountryName'] },
+ 'locationcreatedlocationid' => { 408 => [\'LocationCreated','LocationCreatedLocationId'] },
+ 'locationcreatedprovincestate' => { 408 => [\'LocationCreated','LocationCreatedProvinceState'] },
+ 'locationcreatedsublocation' => { 408 => [\'LocationCreated','LocationCreatedSublocation'] },
+ 'locationcreatedworldregion' => { 408 => [\'LocationCreated','LocationCreatedWorldRegion'] },
'locationinfoversion' => { 192 => 0x0 },
- 'locationname' => { 331 => 0x31 },
- 'locationshown' => { 406 => 'LocationShown' },
- 'locationshowncity' => { 406 => [\'LocationShown','LocationShownCity'] },
- 'locationshowncountrycode' => { 406 => [\'LocationShown','LocationShownCountryCode'] },
- 'locationshowncountryname' => { 406 => [\'LocationShown','LocationShownCountryName'] },
- 'locationshownlocationid' => { 406 => [\'LocationShown','LocationShownLocationId'] },
- 'locationshownprovincestate' => { 406 => [\'LocationShown','LocationShownProvinceState'] },
- 'locationshownsublocation' => { 406 => [\'LocationShown','LocationShownSublocation'] },
- 'locationshownworldregion' => { 406 => [\'LocationShown','LocationShownWorldRegion'] },
+ 'locationname' => { 333 => 0x31 },
+ 'locationshown' => { 408 => 'LocationShown' },
+ 'locationshowncity' => { 408 => [\'LocationShown','LocationShownCity'] },
+ 'locationshowncountrycode' => { 408 => [\'LocationShown','LocationShownCountryCode'] },
+ 'locationshowncountryname' => { 408 => [\'LocationShown','LocationShownCountryName'] },
+ 'locationshownlocationid' => { 408 => [\'LocationShown','LocationShownLocationId'] },
+ 'locationshownprovincestate' => { 408 => [\'LocationShown','LocationShownProvinceState'] },
+ 'locationshownsublocation' => { 408 => [\'LocationShown','LocationShownSublocation'] },
+ 'locationshownworldregion' => { 408 => [\'LocationShown','LocationShownWorldRegion'] },
'lockmicrophonebutton' => { 73 => 0x709 },
- 'logcomment' => { 421 => 'logComment' },
- 'longexposurenoisereduction' => { 54 => 0x4, 73 => 0x201, 74 => 0x1, 75 => 0x2, 76 => 0x1, 77 => 0x1, 78 => 0x2, 79 => 0x1, 269 => 0x49, 341 => 0x2b, 342 => 0x25, 343 => 0x25, 353 => 0x2008, 357 => 0x11, 377 => 0x44 },
+ 'logcomment' => { 423 => 'logComment' },
+ 'longexposurenoisereduction' => { 54 => 0x4, 73 => 0x201, 74 => 0x1, 75 => 0x2, 76 => 0x1, 77 => 0x1, 78 => 0x2, 79 => 0x1, 269 => 0x49, 343 => 0x2b, 344 => 0x25, 345 => 0x25, 355 => 0x2008, 359 => 0x11, 379 => 0x44 },
'longexposurenoisereduction2' => { 49 => 0x8 },
- 'loop' => { 421 => 'loop' },
+ 'loop' => { 423 => 'loop' },
'lowestbiostratigraphiczone' => { 104 => [\'GeologicalContext','GeologicalContextLowestBiostratigraphicZone'] },
- 'luminanceadjustmentaqua' => { 396 => 'LuminanceAdjustmentAqua' },
- 'luminanceadjustmentblue' => { 396 => 'LuminanceAdjustmentBlue' },
- 'luminanceadjustmentgreen' => { 396 => 'LuminanceAdjustmentGreen' },
- 'luminanceadjustmentmagenta' => { 396 => 'LuminanceAdjustmentMagenta' },
- 'luminanceadjustmentorange' => { 396 => 'LuminanceAdjustmentOrange' },
- 'luminanceadjustmentpurple' => { 396 => 'LuminanceAdjustmentPurple' },
- 'luminanceadjustmentred' => { 396 => 'LuminanceAdjustmentRed' },
- 'luminanceadjustmentyellow' => { 396 => 'LuminanceAdjustmentYellow' },
+ 'luminanceadjustmentaqua' => { 398 => 'LuminanceAdjustmentAqua' },
+ 'luminanceadjustmentblue' => { 398 => 'LuminanceAdjustmentBlue' },
+ 'luminanceadjustmentgreen' => { 398 => 'LuminanceAdjustmentGreen' },
+ 'luminanceadjustmentmagenta' => { 398 => 'LuminanceAdjustmentMagenta' },
+ 'luminanceadjustmentorange' => { 398 => 'LuminanceAdjustmentOrange' },
+ 'luminanceadjustmentpurple' => { 398 => 'LuminanceAdjustmentPurple' },
+ 'luminanceadjustmentred' => { 398 => 'LuminanceAdjustmentRed' },
+ 'luminanceadjustmentyellow' => { 398 => 'LuminanceAdjustmentYellow' },
'luminancecurvelimits' => { 96 => 0x150 },
'luminancecurvepoints' => { 96 => 0x126 },
- 'luminancenoisereduction' => { 91 => 0x20600, 97 => 0x5f, 334 => 0x1b },
- 'luminancenoisereductioncontrast' => { 396 => 'LuminanceNoiseReductionContrast' },
- 'luminancenoisereductiondetail' => { 396 => 'LuminanceNoiseReductionDetail' },
+ 'luminancenoisereduction' => { 91 => 0x20600, 97 => 0x5f, 336 => 0x1b },
+ 'luminancenoisereductioncontrast' => { 398 => 'LuminanceNoiseReductionContrast' },
+ 'luminancenoisereductiondetail' => { 398 => 'LuminanceNoiseReductionDetail' },
'luminancenr_tiff_jpeg' => { 97 => 0x6d },
- 'luminancesmoothing' => { 396 => 'LuminanceSmoothing' },
+ 'luminancesmoothing' => { 398 => 'LuminanceSmoothing' },
'lvshootingareadisplay' => { 73 => 0x40b },
- 'lyrics' => { 421 => 'lyrics' },
+ 'lyrics' => { 423 => 'lyrics' },
'm16cversion' => { 265 => 0x333 },
- 'macatom' => { 395 => 'macAtom' },
- 'macatomapplicationcode' => { 395 => [\'macAtom','macAtomApplicationCode'] },
- 'macatominvocationappleevent' => { 395 => [\'macAtom','macAtomInvocationAppleEvent'] },
- 'macatomposixprojectpath' => { 395 => [\'macAtom','macAtomPosixProjectPath'] },
- 'macro' => { 110 => 0x1020, 111 => 0x202, 254 => 0x202, 324 => 0x21, 333 => 0x202, 353 => 0xb040 },
+ 'macatom' => { 397 => 'macAtom' },
+ 'macatomapplicationcode' => { 397 => [\'macAtom','macAtomApplicationCode'] },
+ 'macatominvocationappleevent' => { 397 => [\'macAtom','macAtomInvocationAppleEvent'] },
+ 'macatomposixprojectpath' => { 397 => [\'macAtom','macAtomPosixProjectPath'] },
+ 'macro' => { 110 => 0x1020, 111 => 0x202, 254 => 0x202, 326 => 0x21, 335 => 0x202, 355 => 0xb040 },
'macroled' => { 252 => 0x120a },
'macromagnification' => { 6 => 0x1b, 10 => 0x1b, 13 => 0x1b, 14 => 0x1b, 18 => 0x1b, 19 => 0x1b, 49 => 0x10 },
- 'macromode' => { 31 => 0x1, 157 => 0xb, 249 => 0x300, 269 => 0x1c, 325 => 0x1009 },
+ 'macromode' => { 31 => 0x1, 157 => 0xb, 249 => 0x300, 269 => 0x1c, 327 => 0x1009 },
'magentahsl' => { 91 => 0x20917 },
'magicfilter' => { 249 => 0x52c },
'magnifiedview' => { 75 => 0x11, 77 => 0x9 },
'maindialexposurecomp' => { 244 => '0.6' },
- 'mainingredient' => { 413 => 'mainIngredient' },
- 'make' => { 87 => 0x0, 105 => 0x10f, 135 => 'Make', 261 => 'Make', 273 => 0x10f, 410 => 'make', 417 => 'Make' },
- 'makernote' => { 400 => 'MakerNote' },
+ 'mainingredient' => { 415 => 'mainIngredient' },
+ 'make' => { 87 => 0x0, 105 => 0x10f, 135 => 'Make', 261 => 'Make', 273 => 0x10f, 412 => 'make', 419 => 'Make' },
+ 'makernote' => { 402 => 'MakerNote' },
'makernoteapple' => { 103 => 'MakN', 105 => 0x927c },
'makernotecanon' => { 103 => 'MakN', 105 => 0x927c },
'makernotecasio' => { 103 => 'MakN', 105 => 0x927c },
@@ -2885,7 +2889,7 @@ my %tagLookup = (
'makernotenikon2' => { 103 => 'MakN', 105 => 0x927c },
'makernotenikon3' => { 103 => 'MakN', 105 => 0x927c },
'makernotenintendo' => { 103 => 'MakN', 105 => 0x927c },
- 'makernoteoffset' => { 333 => 0xff },
+ 'makernoteoffset' => { 335 => 0xff },
'makernoteolympus' => { 103 => 'MakN', 105 => 0x927c },
'makernoteolympus2' => { 103 => 'MakN', 105 => 0x927c },
'makernotepanasonic' => { 103 => 'MakN', 105 => 0x927c },
@@ -2916,103 +2920,103 @@ my %tagLookup = (
'makernotesony5' => { 103 => 'MakN', 105 => 0x927c },
'makernotesonyericsson' => { 103 => 'MakN', 105 => 0x927c },
'makernotesonysrf' => { 103 => 'MakN', 105 => 0x927c },
- 'makernotetype' => { 325 => 0x1 },
+ 'makernotetype' => { 327 => 0x1 },
'makernoteunknown' => { 103 => 'MakN', 105 => 0x927c },
'makernoteunknownbinary' => { 103 => 'MakN', 105 => 0x927c },
'makernoteunknowntext' => { 103 => 'MakN', 105 => 0x927c },
- 'makernoteversion' => { 162 => 0x0, 193 => 0x1, 254 => 0x0, 269 => 0x8000, 329 => 0x0, 331 => 0x1, 334 => [0x1d,0x1f], 344 => 0x2000 },
- 'managedfrom' => { 422 => 'ManagedFrom' },
- 'managedfromalternatepaths' => { 422 => [\'ManagedFrom','ManagedFromAlternatePaths'] },
- 'managedfromdocumentid' => { 422 => [\'ManagedFrom','ManagedFromDocumentID'] },
- 'managedfromfilepath' => { 422 => [\'ManagedFrom','ManagedFromFilePath'] },
- 'managedfromfrompart' => { 422 => [\'ManagedFrom','ManagedFromFromPart'] },
- 'managedfrominstanceid' => { 422 => [\'ManagedFrom','ManagedFromInstanceID'] },
- 'managedfromlastmodifydate' => { 422 => [\'ManagedFrom','ManagedFromLastModifyDate'] },
- 'managedfrommanager' => { 422 => [\'ManagedFrom','ManagedFromManager'] },
- 'managedfrommanagervariant' => { 422 => [\'ManagedFrom','ManagedFromManagerVariant'] },
- 'managedfrommanageto' => { 422 => [\'ManagedFrom','ManagedFromManageTo'] },
- 'managedfrommanageui' => { 422 => [\'ManagedFrom','ManagedFromManageUI'] },
- 'managedfrommaskmarkers' => { 422 => [\'ManagedFrom','ManagedFromMaskMarkers'] },
- 'managedfromoriginaldocumentid' => { 422 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] },
- 'managedfrompartmapping' => { 422 => [\'ManagedFrom','ManagedFromPartMapping'] },
- 'managedfromrenditionclass' => { 422 => [\'ManagedFrom','ManagedFromRenditionClass'] },
- 'managedfromrenditionparams' => { 422 => [\'ManagedFrom','ManagedFromRenditionParams'] },
- 'managedfromtopart' => { 422 => [\'ManagedFrom','ManagedFromToPart'] },
- 'managedfromversionid' => { 422 => [\'ManagedFrom','ManagedFromVersionID'] },
- 'manager' => { 422 => 'Manager' },
- 'managervariant' => { 422 => 'ManagerVariant' },
- 'manageto' => { 422 => 'ManageTo' },
- 'manageui' => { 422 => 'ManageUI' },
- 'manifest' => { 422 => 'Manifest' },
- 'manifestlinkform' => { 422 => [\'Manifest','ManifestLinkForm'] },
- 'manifestplacedresolutionunit' => { 422 => [\'Manifest','ManifestPlacedResolutionUnit'] },
- 'manifestplacedxresolution' => { 422 => [\'Manifest','ManifestPlacedXResolution'] },
- 'manifestplacedyresolution' => { 422 => [\'Manifest','ManifestPlacedYResolution'] },
- 'manifestreference' => { 422 => [\'Manifest','ManifestReference'] },
- 'manifestreferencealternatepaths' => { 422 => [\'Manifest','ManifestReferenceAlternatePaths'] },
- 'manifestreferencedocumentid' => { 422 => [\'Manifest','ManifestReferenceDocumentID'] },
- 'manifestreferencefilepath' => { 422 => [\'Manifest','ManifestReferenceFilePath'] },
- 'manifestreferencefrompart' => { 422 => [\'Manifest','ManifestReferenceFromPart'] },
- 'manifestreferenceinstanceid' => { 422 => [\'Manifest','ManifestReferenceInstanceID'] },
- 'manifestreferencelastmodifydate' => { 422 => [\'Manifest','ManifestReferenceLastModifyDate'] },
- 'manifestreferencemanager' => { 422 => [\'Manifest','ManifestReferenceManager'] },
- 'manifestreferencemanagervariant' => { 422 => [\'Manifest','ManifestReferenceManagerVariant'] },
- 'manifestreferencemanageto' => { 422 => [\'Manifest','ManifestReferenceManageTo'] },
- 'manifestreferencemanageui' => { 422 => [\'Manifest','ManifestReferenceManageUI'] },
- 'manifestreferencemaskmarkers' => { 422 => [\'Manifest','ManifestReferenceMaskMarkers'] },
- 'manifestreferenceoriginaldocumentid' => { 422 => [\'Manifest','ManifestReferenceOriginalDocumentID'] },
- 'manifestreferencepartmapping' => { 422 => [\'Manifest','ManifestReferencePartMapping'] },
- 'manifestreferencerenditionclass' => { 422 => [\'Manifest','ManifestReferenceRenditionClass'] },
- 'manifestreferencerenditionparams' => { 422 => [\'Manifest','ManifestReferenceRenditionParams'] },
- 'manifestreferencetopart' => { 422 => [\'Manifest','ManifestReferenceToPart'] },
- 'manifestreferenceversionid' => { 422 => [\'Manifest','ManifestReferenceVersionID'] },
+ 'makernoteversion' => { 162 => 0x0, 193 => 0x1, 254 => 0x0, 269 => 0x8000, 331 => 0x0, 333 => 0x1, 336 => [0x1d,0x1f], 346 => 0x2000 },
+ 'managedfrom' => { 424 => 'ManagedFrom' },
+ 'managedfromalternatepaths' => { 424 => [\'ManagedFrom','ManagedFromAlternatePaths'] },
+ 'managedfromdocumentid' => { 424 => [\'ManagedFrom','ManagedFromDocumentID'] },
+ 'managedfromfilepath' => { 424 => [\'ManagedFrom','ManagedFromFilePath'] },
+ 'managedfromfrompart' => { 424 => [\'ManagedFrom','ManagedFromFromPart'] },
+ 'managedfrominstanceid' => { 424 => [\'ManagedFrom','ManagedFromInstanceID'] },
+ 'managedfromlastmodifydate' => { 424 => [\'ManagedFrom','ManagedFromLastModifyDate'] },
+ 'managedfrommanager' => { 424 => [\'ManagedFrom','ManagedFromManager'] },
+ 'managedfrommanagervariant' => { 424 => [\'ManagedFrom','ManagedFromManagerVariant'] },
+ 'managedfrommanageto' => { 424 => [\'ManagedFrom','ManagedFromManageTo'] },
+ 'managedfrommanageui' => { 424 => [\'ManagedFrom','ManagedFromManageUI'] },
+ 'managedfrommaskmarkers' => { 424 => [\'ManagedFrom','ManagedFromMaskMarkers'] },
+ 'managedfromoriginaldocumentid' => { 424 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] },
+ 'managedfrompartmapping' => { 424 => [\'ManagedFrom','ManagedFromPartMapping'] },
+ 'managedfromrenditionclass' => { 424 => [\'ManagedFrom','ManagedFromRenditionClass'] },
+ 'managedfromrenditionparams' => { 424 => [\'ManagedFrom','ManagedFromRenditionParams'] },
+ 'managedfromtopart' => { 424 => [\'ManagedFrom','ManagedFromToPart'] },
+ 'managedfromversionid' => { 424 => [\'ManagedFrom','ManagedFromVersionID'] },
+ 'manager' => { 424 => 'Manager' },
+ 'managervariant' => { 424 => 'ManagerVariant' },
+ 'manageto' => { 424 => 'ManageTo' },
+ 'manageui' => { 424 => 'ManageUI' },
+ 'manifest' => { 424 => 'Manifest' },
+ 'manifestlinkform' => { 424 => [\'Manifest','ManifestLinkForm'] },
+ 'manifestplacedresolutionunit' => { 424 => [\'Manifest','ManifestPlacedResolutionUnit'] },
+ 'manifestplacedxresolution' => { 424 => [\'Manifest','ManifestPlacedXResolution'] },
+ 'manifestplacedyresolution' => { 424 => [\'Manifest','ManifestPlacedYResolution'] },
+ 'manifestreference' => { 424 => [\'Manifest','ManifestReference'] },
+ 'manifestreferencealternatepaths' => { 424 => [\'Manifest','ManifestReferenceAlternatePaths'] },
+ 'manifestreferencedocumentid' => { 424 => [\'Manifest','ManifestReferenceDocumentID'] },
+ 'manifestreferencefilepath' => { 424 => [\'Manifest','ManifestReferenceFilePath'] },
+ 'manifestreferencefrompart' => { 424 => [\'Manifest','ManifestReferenceFromPart'] },
+ 'manifestreferenceinstanceid' => { 424 => [\'Manifest','ManifestReferenceInstanceID'] },
+ 'manifestreferencelastmodifydate' => { 424 => [\'Manifest','ManifestReferenceLastModifyDate'] },
+ 'manifestreferencemanager' => { 424 => [\'Manifest','ManifestReferenceManager'] },
+ 'manifestreferencemanagervariant' => { 424 => [\'Manifest','ManifestReferenceManagerVariant'] },
+ 'manifestreferencemanageto' => { 424 => [\'Manifest','ManifestReferenceManageTo'] },
+ 'manifestreferencemanageui' => { 424 => [\'Manifest','ManifestReferenceManageUI'] },
+ 'manifestreferencemaskmarkers' => { 424 => [\'Manifest','ManifestReferenceMaskMarkers'] },
+ 'manifestreferenceoriginaldocumentid' => { 424 => [\'Manifest','ManifestReferenceOriginalDocumentID'] },
+ 'manifestreferencepartmapping' => { 424 => [\'Manifest','ManifestReferencePartMapping'] },
+ 'manifestreferencerenditionclass' => { 424 => [\'Manifest','ManifestReferenceRenditionClass'] },
+ 'manifestreferencerenditionparams' => { 424 => [\'Manifest','ManifestReferenceRenditionParams'] },
+ 'manifestreferencetopart' => { 424 => [\'Manifest','ManifestReferenceToPart'] },
+ 'manifestreferenceversionid' => { 424 => [\'Manifest','ManifestReferenceVersionID'] },
'manometerpressure' => { 249 => 0x900, 269 => 0x86 },
'manometerreading' => { 249 => 0x901 },
'manualafpointselectpattern' => { 73 => 0x513 },
'manualflash' => { 252 => 0x1209 },
- 'manualflashoutput' => { 31 => 0x29, 238 => '8.2', 239 => '22.2', 240 => '23.1', 241 => '23.2', 242 => '16.2', 243 => '23.2', 244 => '8.2', 245 => '23.2', 247 => '24.2', 325 => 0x100c },
+ 'manualflashoutput' => { 31 => 0x29, 238 => '8.2', 239 => '22.2', 240 => '23.1', 241 => '23.2', 242 => '16.2', 243 => '23.2', 244 => '8.2', 245 => '23.2', 247 => '24.2', 327 => 0x100c },
'manualflashstrength' => { 249 => 0x406 },
- 'manualfocusdistance' => { 193 => 0x85, 254 => 0x100c, 333 => 0x223 },
+ 'manualfocusdistance' => { 193 => 0x85, 254 => 0x100c, 335 => 0x223 },
'manualtv' => { 72 => 0x5, 73 => 0x705 },
'manufacturedate' => { 167 => 0x6705, 282 => 0x1 },
- 'manufacturedate1' => { 327 => 0x4 },
- 'manufacturedate2' => { 327 => 0x5 },
- 'manufacturer' => { 410 => 'manufacturer' },
- 'marked' => { 407 => 'Marked', 425 => 'Marked' },
- 'markers' => { 421 => 'markers' },
- 'markerscomment' => { 421 => [\'markers','markersComment'] },
- 'markerscuepointparams' => { 421 => [\'markers','markersCuePointParams'] },
- 'markerscuepointparamskey' => { 421 => [\'markers','markersCuePointParamsKey'] },
- 'markerscuepointparamsvalue' => { 421 => [\'markers','markersCuePointParamsValue'] },
- 'markerscuepointtype' => { 421 => [\'markers','markersCuePointType'] },
- 'markersduration' => { 421 => [\'markers','markersDuration'] },
- 'markerslocation' => { 421 => [\'markers','markersLocation'] },
- 'markersname' => { 421 => [\'markers','markersName'] },
- 'markersprobability' => { 421 => [\'markers','markersProbability'] },
- 'markersspeaker' => { 421 => [\'markers','markersSpeaker'] },
- 'markersstarttime' => { 421 => [\'markers','markersStartTime'] },
- 'markerstarget' => { 421 => [\'markers','markersTarget'] },
- 'markerstype' => { 421 => [\'markers','markersType'] },
+ 'manufacturedate1' => { 329 => 0x4 },
+ 'manufacturedate2' => { 329 => 0x5 },
+ 'manufacturer' => { 412 => 'manufacturer' },
+ 'marked' => { 409 => 'Marked', 427 => 'Marked' },
+ 'markers' => { 423 => 'markers' },
+ 'markerscomment' => { 423 => [\'markers','markersComment'] },
+ 'markerscuepointparams' => { 423 => [\'markers','markersCuePointParams'] },
+ 'markerscuepointparamskey' => { 423 => [\'markers','markersCuePointParamsKey'] },
+ 'markerscuepointparamsvalue' => { 423 => [\'markers','markersCuePointParamsValue'] },
+ 'markerscuepointtype' => { 423 => [\'markers','markersCuePointType'] },
+ 'markersduration' => { 423 => [\'markers','markersDuration'] },
+ 'markerslocation' => { 423 => [\'markers','markersLocation'] },
+ 'markersname' => { 423 => [\'markers','markersName'] },
+ 'markersprobability' => { 423 => [\'markers','markersProbability'] },
+ 'markersspeaker' => { 423 => [\'markers','markersSpeaker'] },
+ 'markersstarttime' => { 423 => [\'markers','markersStartTime'] },
+ 'markerstarget' => { 423 => [\'markers','markersTarget'] },
+ 'markerstype' => { 423 => [\'markers','markersType'] },
'maskedareas' => { 105 => 0xc68e },
'masterdocumentid' => { 113 => 0xb9 },
'mastergain' => { 199 => 0x50 },
'matrixmetering' => { 237 => '50.1', 246 => '48.1' },
- 'maxaperture' => { 31 => 0x1a, 125 => 0x6103, 142 => 'MaxAperture', 157 => 0x17, 163 => 0x49c5, 250 => 0x20a, 293 => '14.1', 368 => 0x0 },
+ 'maxaperture' => { 31 => 0x1a, 125 => 0x6103, 142 => 'MaxAperture', 157 => 0x17, 163 => 0x49c5, 250 => 0x20a, 293 => '14.1', 370 => 0x0 },
'maxapertureatmaxfocal' => { 110 => 0x1407, 142 => 'MaxApertureAtMaxFocal', 188 => 0xb, 189 => 0x10, 190 => 0x11, 250 => 0x206 },
'maxapertureatminfocal' => { 110 => 0x1406, 188 => 0xa, 189 => 0xf, 190 => 0x10, 250 => 0x205 },
- 'maxaperturevalue' => { 105 => 0x9205, 400 => 'MaxApertureValue' },
- 'maxavailheight' => { 406 => 'MaxAvailHeight' },
- 'maxavailwidth' => { 406 => 'MaxAvailWidth' },
+ 'maxaperturevalue' => { 105 => 0x9205, 311 => 0x414, 402 => 'MaxApertureValue' },
+ 'maxavailheight' => { 408 => 'MaxAvailHeight' },
+ 'maxavailwidth' => { 408 => 'MaxAvailWidth' },
'maxcontinuousrelease' => { 236 => 0xb, 237 => 0xc, 242 => 0xc, 243 => 0xb, 246 => '12.1' },
'maxfaces' => { 253 => 0x1202 },
- 'maxfocallength' => { 6 => 0xe6, 7 => 0x10, 8 => 0x1ab, 9 => 0x13, 10 => 0x115, 11 => 0x13, 12 => 0x153, 13 => 0xda, 15 => 0xfa, 16 => 0xee, 17 => 0x103, 18 => 0x95, 19 => 0xea, 20 => 0x157, 21 => 0xee, 22 => 0xec, 23 => 0x12b, 24 => 0x165, 25 => 0x16a, 26 => 0x116, 31 => 0x17, 110 => 0x1405, 142 => 'MaxFocalLength', 188 => 0x9, 189 => 0xe, 190 => 0xf, 250 => 0x208, 364 => 0x127c, 365 => 0x1138, 366 => 0x330, 367 => 0x330 },
+ 'maxfocallength' => { 6 => 0xe6, 7 => 0x10, 8 => 0x1ab, 9 => 0x13, 10 => 0x115, 11 => 0x13, 12 => 0x153, 13 => 0xda, 15 => 0xfa, 16 => 0xee, 17 => 0x103, 18 => 0x95, 19 => 0xea, 20 => 0x157, 21 => 0xee, 22 => 0xec, 23 => 0x12b, 24 => 0x165, 25 => 0x16a, 26 => 0x116, 31 => 0x17, 110 => 0x1405, 142 => 'MaxFocalLength', 188 => 0x9, 189 => 0xe, 190 => 0xf, 250 => 0x208, 366 => 0x127c, 367 => 0x1138, 368 => 0x330, 369 => 0x330 },
'maximumdensityrange' => { 115 => 0x8c },
- 'maxpagesize' => { 426 => 'MaxPageSize' },
- 'maxpagesizeh' => { 426 => [\'MaxPageSize','MaxPageSizeH'] },
- 'maxpagesizeunit' => { 426 => [\'MaxPageSize','MaxPageSizeUnit'] },
- 'maxpagesizew' => { 426 => [\'MaxPageSize','MaxPageSizeW'] },
+ 'maxpagesize' => { 428 => 'MaxPageSize' },
+ 'maxpagesizeh' => { 428 => [\'MaxPageSize','MaxPageSizeH'] },
+ 'maxpagesizeunit' => { 428 => [\'MaxPageSize','MaxPageSizeUnit'] },
+ 'maxpagesizew' => { 428 => [\'MaxPageSize','MaxPageSizeW'] },
'maxsamplevalue' => { 105 => 0x119 },
- 'maxstorage' => { 416 => 'maxstorage' },
+ 'maxstorage' => { 418 => 'maxstorage' },
'mb-d10batteries' => { 236 => '12.6' },
'mb-d10batterytype' => { 242 => '13.3' },
'mb-d11batterytype' => { 243 => '2.3' },
@@ -3021,7 +3025,7 @@ my %tagLookup = (
'mb-d80batterytype' => { 247 => '3.2' },
'mcuversion' => { 188 => 0xc, 189 => 0x11, 190 => 0x12 },
'md5digest' => { 143 => 'zmd5' },
- 'meal' => { 413 => 'meal' },
+ 'meal' => { 415 => 'meal' },
'measuredev' => { 26 => 0x9, 67 => 0x3, 86 => 0x1814, 135 => 'MeasuredEV' },
'measuredev2' => { 12 => 0x8, 26 => 0x8, 67 => 0x17 },
'measuredev3' => { 12 => 0x9 },
@@ -3038,65 +3042,66 @@ my %tagLookup = (
'measurementtype' => { 104 => [\'MeasurementOrFact','MeasurementOrFactMeasurementType'] },
'measurementunit' => { 104 => [\'MeasurementOrFact','MeasurementOrFactMeasurementUnit'] },
'measurementvalue' => { 104 => [\'MeasurementOrFact','MeasurementOrFactMeasurementValue'] },
- 'mediaconstraints' => { 409 => 'MediaConstraints' },
- 'mediacreatedate' => { 317 => 0x1 },
- 'mediamodifydate' => { 317 => 0x2 },
- 'mediasummarycode' => { 409 => 'MediaSummaryCode' },
+ 'mediaconstraints' => { 411 => 'MediaConstraints' },
+ 'mediacreatedate' => { 319 => 0x1 },
+ 'mediamodifydate' => { 319 => 0x2 },
+ 'mediasummarycode' => { 411 => 'MediaSummaryCode' },
'memoaudioquality' => { 73 => 0x812 },
- 'memorycardconfiguration' => { 347 => 0x16 },
+ 'memorycardconfiguration' => { 349 => 0x16 },
'menubuttondisplayposition' => { 71 => 0xb, 74 => 0xa, 75 => 0xb, 78 => 0xb },
'menubuttonreturn' => { 79 => 0xb },
'menumonitorofftime' => { 236 => '26.1', 237 => '22.1', 242 => '8.2', 243 => '21.1', 246 => '22.1', 247 => '22.1' },
- 'metadatadate' => { 419 => 'MetadataDate' },
- 'metadatamoddate' => { 421 => 'metadataModDate' },
- 'metaversion' => { 359 => 0x34 },
- 'meterinfo1row1' => { 354 => 0x0 },
- 'meterinfo1row2' => { 354 => 0x6c },
- 'meterinfo1row3' => { 354 => 0xd8 },
- 'meterinfo1row4' => { 354 => 0x144 },
- 'meterinfo1row5' => { 354 => 0x1b0 },
- 'meterinfo1row6' => { 354 => 0x21c },
- 'meterinfo1row7' => { 354 => 0x288 },
- 'meterinfo2row1' => { 354 => 0x2f4 },
- 'meterinfo2row2' => { 354 => 0x378 },
- 'meterinfo2row3' => { 354 => 0x3fc },
- 'meterinfo2row4' => { 354 => 0x480 },
- 'meterinfo2row5' => { 354 => 0x504 },
- 'meterinfo2row6' => { 354 => 0x588 },
- 'meterinfo2row7' => { 354 => 0x60c },
- 'meterinfo2row8' => { 354 => 0x690 },
- 'meterinfo2row9' => { 354 => 0x714 },
+ 'metadatadate' => { 421 => 'MetadataDate' },
+ 'metadatamoddate' => { 423 => 'metadataModDate' },
+ 'metaversion' => { 361 => 0x34 },
+ 'meterinfo1row1' => { 356 => 0x0 },
+ 'meterinfo1row2' => { 356 => 0x6c },
+ 'meterinfo1row3' => { 356 => 0xd8 },
+ 'meterinfo1row4' => { 356 => 0x144 },
+ 'meterinfo1row5' => { 356 => 0x1b0 },
+ 'meterinfo1row6' => { 356 => 0x21c },
+ 'meterinfo1row7' => { 356 => 0x288 },
+ 'meterinfo2row1' => { 356 => 0x2f4 },
+ 'meterinfo2row2' => { 356 => 0x378 },
+ 'meterinfo2row3' => { 356 => 0x3fc },
+ 'meterinfo2row4' => { 356 => 0x480 },
+ 'meterinfo2row5' => { 356 => 0x504 },
+ 'meterinfo2row6' => { 356 => 0x588 },
+ 'meterinfo2row7' => { 356 => 0x60c },
+ 'meterinfo2row8' => { 356 => 0x690 },
+ 'meterinfo2row9' => { 356 => 0x714 },
'metering' => { 238 => '6.1' },
- 'meteringmode' => { 31 => 0x11, 105 => 0x9207, 121 => 0x1c, 157 => 0x7, 158 => 0x25, 160 => 0x12, 249 => 0x202, 302 => 0x17, 334 => 0x9, 341 => 0x15, 342 => 0x13, 343 => 0x7, 357 => 0x3, 360 => 0x1174, 361 => 0x1178, 362 => 0x1154, 363 => 0x11d0, 364 => 0x11ac, 365 => 0x1064, 366 => 0x25c, 367 => 0x25c, 400 => 'MeteringMode' },
+ 'meteringmode' => { 31 => 0x11, 105 => 0x9207, 121 => 0x1c, 157 => 0x7, 158 => 0x25, 160 => 0x12, 249 => 0x202, 302 => 0x17, 336 => 0x9, 343 => 0x15, 344 => 0x13, 345 => 0x7, 359 => 0x3, 362 => 0x1174, 363 => 0x1178, 364 => 0x1154, 365 => 0x11d0, 366 => 0x11ac, 367 => 0x1064, 368 => 0x25c, 369 => 0x25c, 402 => 'MeteringMode' },
'meteringmode2' => { 283 => '2.1' },
'meteringmode3' => { 283 => '16.1' },
'meteringoffscaleindicator' => { 160 => 0x53 },
'meteringtime' => { 236 => '22.2', 238 => '3.2', 239 => '17.1', 240 => '18.1', 242 => '7.3', 243 => '18.1', 244 => '3.2', 247 => '19.1' },
'mieversion' => { 143 => '0Vers' },
- 'minaperture' => { 31 => 0x1b, 142 => 'MinAperture', 293 => '0.2', 368 => 0x1 },
- 'minfocallength' => { 6 => 0xe4, 7 => 0xe, 8 => 0x1a9, 9 => 0x11, 10 => 0x113, 11 => 0x11, 12 => 0x151, 13 => 0xd8, 15 => 0xf8, 16 => 0xec, 17 => 0x101, 18 => 0x93, 19 => 0xe8, 20 => 0x155, 21 => 0xec, 22 => 0xea, 23 => 0x129, 24 => 0x163, 25 => 0x168, 26 => 0x114, 31 => 0x18, 110 => 0x1404, 142 => 'MinFocalLength', 188 => 0x8, 189 => 0xd, 190 => 0xe, 250 => 0x207, 364 => 0x127a, 365 => 0x1136, 366 => 0x32e, 367 => 0x32e },
+ 'minaperture' => { 31 => 0x1b, 142 => 'MinAperture', 293 => '0.2', 370 => 0x1 },
+ 'minaperturevalue' => { 311 => 0x415 },
+ 'minfocallength' => { 6 => 0xe4, 7 => 0xe, 8 => 0x1a9, 9 => 0x11, 10 => 0x113, 11 => 0x11, 12 => 0x151, 13 => 0xd8, 15 => 0xf8, 16 => 0xec, 17 => 0x101, 18 => 0x93, 19 => 0xe8, 20 => 0x155, 21 => 0xec, 22 => 0xea, 23 => 0x129, 24 => 0x163, 25 => 0x168, 26 => 0x114, 31 => 0x18, 110 => 0x1404, 142 => 'MinFocalLength', 188 => 0x8, 189 => 0xd, 190 => 0xe, 250 => 0x207, 366 => 0x127a, 367 => 0x1136, 368 => 0x32e, 369 => 0x32e },
'minfocusdistance' => { 293 => 0x3 },
'minoltadate' => { 157 => 0x15 },
'minoltaimagesize' => { 157 => 0x4, 158 => 0xc, 159 => 0x2, 162 => 0x103 },
'minoltamodelid' => { 157 => 0x25 },
'minoltaquality' => { 157 => 0x5, 158 => 0xd, 159 => 0x3, 162 => [0x102,0x103] },
'minoltatime' => { 157 => 0x16 },
- 'minormodelagedisclosure' => { 409 => 'MinorModelAgeDisclosure' },
+ 'minormodelagedisclosure' => { 411 => 'MinorModelAgeDisclosure' },
'minsamplevalue' => { 105 => 0x118 },
'mirrorlockup' => { 71 => 0xc, 72 => 0xc, 73 => 0x60f, 74 => 0xb, 75 => 0xc, 76 => 0x6, 77 => 0x6, 78 => 0xc, 79 => 0x3 },
- 'mobilecountrycode' => { 394 => 'mcc' },
- 'mobilenetworkcode' => { 394 => 'mnc' },
- 'moddate' => { 261 => 'modify-date', 407 => 'ModDate' },
- 'modedialposition' => { 347 => 0x14 },
- 'model' => { 87 => 0x6, 105 => 0x110, 135 => 'Model', 261 => 'Model', 273 => 0x110, 410 => 'model', 417 => 'Model' },
- 'modelage' => { 406 => 'ModelAge' },
+ 'mobilecountrycode' => { 396 => 'mcc' },
+ 'mobilenetworkcode' => { 396 => 'mnc' },
+ 'moddate' => { 261 => 'modify-date', 409 => 'ModDate' },
+ 'modedialposition' => { 349 => 0x14 },
+ 'model' => { 87 => 0x6, 105 => 0x110, 135 => 'Model', 261 => 'Model', 273 => 0x110, 412 => 'model', 419 => 'Model' },
+ 'modelage' => { 408 => 'ModelAge' },
'modelid' => { 248 => 0x0 },
'modelingflash' => { 236 => '21.4', 237 => '31.1', 242 => '26.4', 243 => '30.2', 244 => '7.4', 245 => '30.1', 246 => '31.1', 247 => '31.3' },
- 'modelreleaseid' => { 409 => 'ModelReleaseID' },
- 'modelreleasestatus' => { 409 => 'ModelReleaseStatus' },
- 'modelreleaseyear' => { 369 => 0x52, 370 => 0x46, 371 => 0x53 },
- 'modelyear' => { 410 => 'modelYear' },
- 'modificationdate' => { 411 => 'modificationDate' },
+ 'modelreleaseid' => { 411 => 'ModelReleaseID' },
+ 'modelreleasestatus' => { 411 => 'ModelReleaseStatus' },
+ 'modelreleaseyear' => { 371 => 0x52, 372 => 0x46, 373 => 0x53 },
+ 'modelyear' => { 412 => 'modelYear' },
+ 'modificationdate' => { 413 => 'modificationDate' },
'modifiedcolortemp' => { 57 => 0x9 },
'modifieddigitalgain' => { 57 => 0xb },
'modifiedparamflag' => { 50 => 0x1 },
@@ -3110,8 +3115,8 @@ my %tagLookup = (
'modifiedwhitebalance' => { 57 => 0x8 },
'modifiedwhitebalanceblue' => { 57 => 0x7 },
'modifiedwhitebalancered' => { 57 => 0x6 },
- 'modifydate' => { 105 => 0x132, 136 => 'ModifyDate', 258 => 'ModDate', 259 => 'tIME', 316 => 'ModDate', 318 => 0x2, 419 => 'ModifyDate' },
- 'moirefilter' => { 105 => 0xfe58, 396 => 'MoireFilter' },
+ 'modifydate' => { 105 => 0x132, 136 => 'ModifyDate', 258 => 'ModDate', 259 => 'tIME', 318 => 'ModDate', 320 => 0x2, 421 => 'ModifyDate' },
+ 'moirefilter' => { 105 => 0xfe58, 398 => 'MoireFilter' },
'monitordisplayoff' => { 160 => 0x4c },
'monitorofftime' => { 236 => '18.2', 238 => '3.1', 244 => '3.1' },
'monochromecontrast' => { 97 => 0x3c },
@@ -3130,9 +3135,9 @@ my %tagLookup = (
'monochromeunsharpmaskstrength' => { 97 => 0xb0 },
'monochromeunsharpmaskthreshold' => { 97 => 0xb4 },
'monthdaycreated' => { 121 => 0x12, 130 => 0xe },
- 'moonphase' => { 321 => 0x12 },
- 'morepermissions' => { 393 => 'morePermissions' },
- 'motionsensitivity' => { 321 => 0x29 },
+ 'moonphase' => { 323 => 0x12 },
+ 'morepermissions' => { 395 => 'morePermissions' },
+ 'motionsensitivity' => { 323 => 0x29 },
'movieaelockbuttonassignment' => { 246 => '40.1' },
'moviefunctionbutton' => { 237 => '41.1', 246 => '41.1' },
'moviefunctionbuttonplusdials' => { 237 => '52.1' },
@@ -3141,16 +3146,16 @@ my %tagLookup = (
'movieshutterbutton' => { 237 => '38.3', 246 => '38.3' },
'moviesubselectorassignment' => { 237 => '48.2' },
'moviesubselectorassignmentplusdials' => { 237 => '53.1' },
- 'multiburstimageheight' => { 353 => 0x1002 },
- 'multiburstimagewidth' => { 353 => 0x1001 },
- 'multiburstmode' => { 353 => 0x1000 },
+ 'multiburstimageheight' => { 355 => 0x1002 },
+ 'multiburstimagewidth' => { 355 => 0x1001 },
+ 'multiburstmode' => { 355 => 0x1000 },
'multicontrollerwhilemetering' => { 73 => 0x517 },
'multiexposure' => { 59 => 0x1 },
'multiexposureautogain' => { 194 => 0x3 },
'multiexposurecontrol' => { 59 => 0x2 },
'multiexposuremode' => { 194 => 0x1 },
'multiexposureshots' => { 59 => 0x3, 194 => 0x2 },
- 'multiframenoisereduction' => { 343 => 0x35, 353 => 0x200b, 357 => 0x15 },
+ 'multiframenoisereduction' => { 345 => 0x35, 355 => 0x200b, 359 => 0x15 },
'multifunctionlock' => { 73 => 0x70f },
'multipleexposuremode' => { 253 => 0x101c },
'multipleexposureset' => { 283 => '10.1' },
@@ -3161,10 +3166,10 @@ my %tagLookup = (
'multiselectorplaybackmode' => { 236 => ['13.5','9.2'], 237 => '10.2', 242 => '27.2', 246 => '10.2' },
'multiselectorshootmode' => { 236 => '9.1', 237 => '10.1', 242 => '27.1', 246 => '10.1' },
'mycolormode' => { 60 => 0x2 },
- 'nationalcatalognumber' => { 411 => 'nationalCatalogNumber' },
- 'nativedigest' => { 400 => 'NativeDigest', 417 => 'NativeDigest' },
+ 'nationalcatalognumber' => { 413 => 'nationalCatalogNumber' },
+ 'nativedigest' => { 402 => 'NativeDigest', 419 => 'NativeDigest' },
'ncdfileinfo' => { 119 => 0x414 },
- 'ndfilter' => { 67 => 0x1c, 249 => 0x204, 325 => 0x1019 },
+ 'ndfilter' => { 67 => 0x1c, 249 => 0x204, 327 => 0x1019 },
'nefbitdepth' => { 193 => 0xe22 },
'nefcompression' => { 193 => 0x93 },
'neflinearizationtable' => { 193 => 0x96 },
@@ -3185,7 +3190,7 @@ my %tagLookup = (
'neutraunsharpmaskstrength' => { 97 => 0xa4 },
'newrawimagedigest' => { 105 => 0xc7a7 },
'newsphotoversion' => { 115 => 0x0 },
- 'nickname' => { 419 => 'Nickname' },
+ 'nickname' => { 421 => 'Nickname' },
'nikoncapturedata' => { 193 => 0xe01 },
'nikoncaptureeditversions' => { 193 => 0xe13 },
'nikoncaptureoutput' => { 193 => 0xe1e },
@@ -3194,39 +3199,39 @@ my %tagLookup = (
'nikonimagesize' => { 206 => '723.1', 207 => '732.1', 215 => 0x2c4 },
'noisefilter' => { 249 => 0x527 },
'noiseprofile' => { 105 => 0xc761 },
- 'noisereduction' => { 110 => 0x100b, 158 => 0xb0, 159 => 0x60, 160 => 0x3f, 193 => 0x95, 229 => 0x753dcbc0, 230 => 0x17, 249 => 0x50a, 254 => 0x103a, 269 => 0x2d, 302 => 0x49, 325 => 0x100f, 327 => 0x2a },
+ 'noisereduction' => { 110 => 0x100b, 158 => 0xb0, 159 => 0x60, 160 => 0x3f, 193 => 0x95, 229 => 0x753dcbc0, 230 => 0x17, 249 => 0x50a, 254 => 0x103a, 269 => 0x2d, 302 => 0x49, 327 => 0x100f, 329 => 0x2a },
'noisereduction2' => { 253 => 0x1010 },
'noisereductionapplied' => { 105 => 0xc6f7 },
'noisereductionintensity' => { 230 => 0x9 },
'noisereductionmethod' => { 230 => 0x11 },
- 'noisereductionmode' => { 381 => 0x801e },
+ 'noisereductionmode' => { 383 => 0x801e },
'noisereductionsharpness' => { 230 => 0xd },
- 'noisereductionvalue' => { 381 => 0x8027 },
+ 'noisereductionvalue' => { 383 => 0x8027 },
'nomemorycard' => { 236 => '22.1', 237 => '4.2', 238 => '0.3', 239 => '2.4', 240 => '3.2', 241 => '3.2', 242 => '33.7', 243 => '3.2', 244 => '0.3', 246 => '4.2', 247 => '4.5' },
'nominalmaxaperture' => { 293 => 0xa },
'nominalminaperture' => { 293 => '10.1' },
'normalwhitelevel' => { 38 => [0x2b8,0x2cf,0x2d3], 40 => 0x1e3, 41 => [0x1fc,0x2dc], 42 => 0x30e },
- 'notes' => { 382 => 'Notes', 390 => 'notes' },
- 'npages' => { 426 => 'NPages' },
+ 'notes' => { 384 => 'Notes', 392 => 'notes' },
+ 'npages' => { 428 => 'NPages' },
'nrwdata' => { 193 => 0x14 },
'nullrecord' => { 86 => 0x0 },
- 'number' => { 411 => 'number' },
- 'numberofbeats' => { 421 => 'numberOfBeats' },
+ 'number' => { 413 => 'number' },
+ 'numberofbeats' => { 423 => 'numberOfBeats' },
'numberoffocuspoints' => { 241 => '0.2', 243 => '0.3' },
'numfacepositions' => { 263 => 0x0 },
'numindexentries' => { 115 => 0x54 },
'numwbentries' => { 274 => 0x0, 275 => 0x0 },
- 'object' => { 411 => 'object' },
+ 'object' => { 413 => 'object' },
'objectattributereference' => { 113 => 0x4 },
'objectcycle' => { 113 => 0x4b },
- 'objectdescription' => { 410 => 'objectDescription' },
+ 'objectdescription' => { 412 => 'objectDescription' },
'objectdistance' => { 100 => 0x6, 101 => 0x2022 },
'objectname' => { 113 => 0x5 },
'objectpreviewdata' => { 113 => 0xca },
'objectpreviewfileformat' => { 113 => 0xc8 },
'objectpreviewfileversion' => { 113 => 0xc9 },
- 'objectsubtype' => { 410 => 'objectSubtype' },
- 'objecttype' => { 410 => 'objectType' },
+ 'objectsubtype' => { 412 => 'objectSubtype' },
+ 'objecttype' => { 412 => 'objectType' },
'objecttypereference' => { 113 => 0x3 },
'occurrence' => { 104 => 'Occurrence' },
'occurrenceassociatedmedia' => { 104 => [\'Occurrence','OccurrenceAssociatedMedia'] },
@@ -3252,38 +3257,38 @@ my %tagLookup = (
'occurrencereproductivecondition' => { 104 => [\'Occurrence','OccurrenceReproductiveCondition'] },
'occurrencesex' => { 104 => [\'Occurrence','OccurrenceSex'] },
'occurrencestatus' => { 104 => [\'Occurrence','OccurrenceOccurrenceStatus'] },
- 'oecfcolumns' => { 400 => [\'OECF','OECFColumns'] },
- 'oecfnames' => { 400 => [\'OECF','OECFNames'] },
- 'oecfrows' => { 400 => [\'OECF','OECFRows'] },
- 'oecfvalues' => { 400 => [\'OECF','OECFValues'] },
- 'offsaledate' => { 411 => 'offSaleDate' },
- 'offsaledatea-platform' => { 411 => [\'offSaleDate','offSaleDateA-platform'] },
- 'offsaledatedate' => { 411 => [\'offSaleDate','offSaleDateDate'] },
+ 'oecfcolumns' => { 402 => [\'OECF','OECFColumns'] },
+ 'oecfnames' => { 402 => [\'OECF','OECFNames'] },
+ 'oecfrows' => { 402 => [\'OECF','OECFRows'] },
+ 'oecfvalues' => { 402 => [\'OECF','OECFValues'] },
+ 'offsaledate' => { 413 => 'offSaleDate' },
+ 'offsaledatea-platform' => { 413 => [\'offSaleDate','offSaleDateA-platform'] },
+ 'offsaledatedate' => { 413 => [\'offSaleDate','offSaleDateDate'] },
'offsetschema' => { 105 => 0xea1d },
'okbutton' => { 243 => '15.1', 247 => '16.1' },
'oldsubfiletype' => { 105 => 0xff },
'olympusimageheight' => { 254 => 0x102f },
'olympusimagewidth' => { 254 => 0x102e },
'onetouchwb' => { 254 => 0x302 },
- 'onsaledate' => { 411 => 'onSaleDate' },
- 'onsaledatea-platform' => { 411 => [\'onSaleDate','onSaleDateA-platform'] },
- 'onsaledatedate' => { 411 => [\'onSaleDate','onSaleDateDate'] },
- 'onsaleday' => { 411 => 'onSaleDay' },
- 'onsaledaya-platform' => { 411 => [\'onSaleDay','onSaleDayA-platform'] },
- 'onsaledayday' => { 411 => [\'onSaleDay','onSaleDayDay'] },
+ 'onsaledate' => { 413 => 'onSaleDate' },
+ 'onsaledatea-platform' => { 413 => [\'onSaleDate','onSaleDateA-platform'] },
+ 'onsaledatedate' => { 413 => [\'onSaleDate','onSaleDateDate'] },
+ 'onsaleday' => { 413 => 'onSaleDay' },
+ 'onsaledaya-platform' => { 413 => [\'onSaleDay','onSaleDayA-platform'] },
+ 'onsaledayday' => { 413 => [\'onSaleDay','onSaleDayDay'] },
'opticalzoom' => { 123 => 0xfa3d, 125 => [0x6006,0xf006], 126 => 0x1000, 127 => 0xf, 130 => 0x1e, 142 => 'OpticalZoom' },
'opticalzoomcode' => { 67 => 0xa },
'opticalzoommode' => { 269 => 0x34 },
- 'opticalzoomon' => { 333 => 0x219 },
- 'optionenddate' => { 414 => 'optionEndDate' },
- 'opto-electricconvfactor' => { 400 => 'OECF' },
+ 'opticalzoomon' => { 335 => 0x219 },
+ 'optionenddate' => { 416 => 'optionEndDate' },
+ 'opto-electricconvfactor' => { 402 => 'OECF' },
'orangehsl' => { 91 => 0x20911 },
'ordernumber' => { 110 => 0x8002 },
- 'organisationinimagecode' => { 406 => 'OrganisationInImageCode' },
- 'organisationinimagename' => { 406 => 'OrganisationInImageName' },
- 'organization' => { 411 => 'organization' },
- 'orientation' => { 105 => 0x112, 273 => 0x112, 410 => 'orientation', 417 => 'Orientation' },
- 'orientation2' => { 357 => [0x28,0x2e] },
+ 'organisationinimagecode' => { 408 => 'OrganisationInImageCode' },
+ 'organisationinimagename' => { 408 => 'OrganisationInImageName' },
+ 'organization' => { 413 => 'organization' },
+ 'orientation' => { 105 => 0x112, 273 => 0x112, 412 => 'orientation', 419 => 'Orientation' },
+ 'orientation2' => { 359 => [0x28,0x2e] },
'orientationlinkedafpoint' => { 73 => 0x516 },
'originalbestqualitysize' => { 105 => 0xc792 },
'originaldecisiondata' => { 102 => 'OriginalDecisionData' },
@@ -3291,8 +3296,8 @@ my %tagLookup = (
'originaldefaultcropsize' => { 105 => 0xc793 },
'originaldefaultfinalsize' => { 105 => 0xc791 },
'originaldirectory' => { 267 => 0x408 },
- 'originaldocumentid' => { 422 => 'OriginalDocumentID' },
- 'originalfilename' => { 86 => 0x816, 119 => 0x3e9, 131 => 0x20, 267 => 0x407, 386 => 'OriginalFilename' },
+ 'originaldocumentid' => { 424 => 'OriginalDocumentID' },
+ 'originalfilename' => { 86 => 0x816, 119 => 0x3e9, 131 => 0x20, 267 => 0x407, 388 => 'OriginalFilename' },
'originalimageheight' => { 69 => 0xc, 109 => 0x1 },
'originalimagewidth' => { 69 => 0xb, 109 => 0x0 },
'originalrawfiledata' => { 105 => 0xc68c },
@@ -3300,108 +3305,108 @@ my %tagLookup = (
'originalrawfilename' => { 105 => 0xc68b },
'originaltransmissionreference' => { 113 => 0x67 },
'originatingprogram' => { 113 => 0x41 },
- 'originplatform' => { 411 => 'originPlatform' },
- 'os' => { 398 => 'os' },
- 'otherconditions' => { 409 => 'OtherConditions' },
- 'otherconstraints' => { 409 => 'OtherConstraints' },
+ 'originplatform' => { 413 => 'originPlatform' },
+ 'os' => { 400 => 'os' },
+ 'otherconditions' => { 411 => 'OtherConditions' },
+ 'otherconstraints' => { 411 => 'OtherConstraints' },
'otherimage' => { 102 => 'OtherImage' },
- 'otherimageinfo' => { 409 => 'OtherImageInfo' },
+ 'otherimageinfo' => { 411 => 'OtherImageInfo' },
'otherimagelength' => { 105 => 0x202 },
'otherimagestart' => { 105 => 0x201 },
- 'otherlicensedocuments' => { 409 => 'OtherLicenseDocuments' },
- 'otherlicenseinfo' => { 409 => 'OtherLicenseInfo' },
- 'otherlicenserequirements' => { 409 => 'OtherLicenseRequirements' },
- 'outcue' => { 421 => 'outCue' },
- 'outcuescale' => { 421 => [\'outCue','outCueScale'] },
- 'outcuevalue' => { 421 => [\'outCue','outCueValue'] },
+ 'otherlicensedocuments' => { 411 => 'OtherLicenseDocuments' },
+ 'otherlicenseinfo' => { 411 => 'OtherLicenseInfo' },
+ 'otherlicenserequirements' => { 411 => 'OtherLicenseRequirements' },
+ 'outcue' => { 423 => 'outCue' },
+ 'outcuescale' => { 423 => [\'outCue','outCueScale'] },
+ 'outcuevalue' => { 423 => [\'outCue','outCueValue'] },
'outputimageheight' => { 172 => 0x3 },
'outputimagewidth' => { 172 => 0x2 },
'outputprofile' => { 119 => 0x138b },
'outputresolution' => { 172 => 0x4 },
- 'owner' => { 425 => 'Owner' },
+ 'owner' => { 427 => 'Owner' },
'ownerid' => { 113 => 0xbc },
- 'ownername' => { 14 => 0x10f, 55 => 0x9, 86 => 0x810, 105 => [0xa430,0xfde8], 135 => 'OwnerName', 392 => 'OwnerName', 401 => 'CameraOwnerName' },
+ 'ownername' => { 14 => 0x10f, 55 => 0x9, 86 => 0x810, 105 => [0xa430,0xfde8], 135 => 'OwnerName', 394 => 'OwnerName', 403 => 'CameraOwnerName' },
'padding' => { 105 => 0xea1c },
- 'pagecount' => { 411 => 'pageCount' },
- 'pageimage' => { 419 => [\'PageInfo','PageInfoImage'] },
- 'pageimageformat' => { 419 => [\'PageInfo','PageInfoFormat'] },
- 'pageimageheight' => { 419 => [\'PageInfo','PageInfoHeight'] },
- 'pageimagepagenumber' => { 419 => [\'PageInfo','PageInfoPageNumber'] },
- 'pageimagewidth' => { 419 => [\'PageInfo','PageInfoWidth'] },
- 'pageinfo' => { 419 => 'PageInfo' },
+ 'pagecount' => { 413 => 'pageCount' },
+ 'pageimage' => { 421 => [\'PageInfo','PageInfoImage'] },
+ 'pageimageformat' => { 421 => [\'PageInfo','PageInfoFormat'] },
+ 'pageimageheight' => { 421 => [\'PageInfo','PageInfoHeight'] },
+ 'pageimagepagenumber' => { 421 => [\'PageInfo','PageInfoPageNumber'] },
+ 'pageimagewidth' => { 421 => [\'PageInfo','PageInfoWidth'] },
+ 'pageinfo' => { 421 => 'PageInfo' },
'pagename' => { 105 => 0x11d },
'pagenumber' => { 105 => 0x129 },
- 'pageprogressiondirection' => { 411 => 'pageProgressionDirection' },
- 'pagerange' => { 411 => 'pageRange' },
- 'paintbasedcorrectionmasks' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] },
- 'paintbasedcorrections' => { 396 => 'PaintBasedCorrections' },
- 'paintcorrectionactive' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] },
- 'paintcorrectionamount' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] },
- 'paintcorrectionbrightness' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] },
- 'paintcorrectionclarity' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] },
- 'paintcorrectionclarity2012' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] },
- 'paintcorrectioncontrast' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] },
- 'paintcorrectioncontrast2012' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] },
- 'paintcorrectiondefringe' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] },
- 'paintcorrectionexposure' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] },
- 'paintcorrectionexposure2012' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] },
- 'paintcorrectionhighlights2012' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] },
- 'paintcorrectionhue' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] },
- 'paintcorrectionluminancenoise' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] },
- 'paintcorrectionmaskalpha' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] },
- 'paintcorrectionmaskangle' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] },
- 'paintcorrectionmaskbottom' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] },
- 'paintcorrectionmaskcentervalue' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] },
- 'paintcorrectionmaskcenterweight' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'paintcorrectionmaskdabs' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] },
- 'paintcorrectionmaskfeather' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] },
- 'paintcorrectionmaskflipped' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] },
- 'paintcorrectionmaskflow' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] },
- 'paintcorrectionmaskfullx' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] },
- 'paintcorrectionmaskfully' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] },
- 'paintcorrectionmaskleft' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] },
- 'paintcorrectionmaskmidpoint' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] },
- 'paintcorrectionmaskperimetervalue' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'paintcorrectionmaskradius' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] },
- 'paintcorrectionmaskright' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] },
- 'paintcorrectionmaskroundness' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] },
- 'paintcorrectionmasksizex' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] },
- 'paintcorrectionmasksizey' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] },
- 'paintcorrectionmasktop' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] },
- 'paintcorrectionmaskvalue' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] },
- 'paintcorrectionmaskversion' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] },
- 'paintcorrectionmaskwhat' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] },
- 'paintcorrectionmaskx' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] },
- 'paintcorrectionmasky' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] },
- 'paintcorrectionmaskzerox' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] },
- 'paintcorrectionmaskzeroy' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] },
- 'paintcorrectionmoire' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] },
- 'paintcorrectionsaturation' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation','PaintBasedCorrectionsLocalToningSaturation'] },
- 'paintcorrectionshadows2012' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] },
- 'paintcorrectionsharpness' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] },
- 'paintcorrectiontemperature' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] },
- 'paintcorrectiontint' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] },
- 'paintcorrectionwhat' => { 396 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] },
+ 'pageprogressiondirection' => { 413 => 'pageProgressionDirection' },
+ 'pagerange' => { 413 => 'pageRange' },
+ 'paintbasedcorrectionmasks' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] },
+ 'paintbasedcorrections' => { 398 => 'PaintBasedCorrections' },
+ 'paintcorrectionactive' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] },
+ 'paintcorrectionamount' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] },
+ 'paintcorrectionbrightness' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] },
+ 'paintcorrectionclarity' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] },
+ 'paintcorrectionclarity2012' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] },
+ 'paintcorrectioncontrast' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] },
+ 'paintcorrectioncontrast2012' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] },
+ 'paintcorrectiondefringe' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] },
+ 'paintcorrectionexposure' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] },
+ 'paintcorrectionexposure2012' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] },
+ 'paintcorrectionhighlights2012' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] },
+ 'paintcorrectionhue' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] },
+ 'paintcorrectionluminancenoise' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] },
+ 'paintcorrectionmaskalpha' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] },
+ 'paintcorrectionmaskangle' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] },
+ 'paintcorrectionmaskbottom' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] },
+ 'paintcorrectionmaskcentervalue' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'paintcorrectionmaskcenterweight' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'paintcorrectionmaskdabs' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] },
+ 'paintcorrectionmaskfeather' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] },
+ 'paintcorrectionmaskflipped' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] },
+ 'paintcorrectionmaskflow' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] },
+ 'paintcorrectionmaskfullx' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] },
+ 'paintcorrectionmaskfully' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] },
+ 'paintcorrectionmaskleft' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] },
+ 'paintcorrectionmaskmidpoint' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'paintcorrectionmaskperimetervalue' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'paintcorrectionmaskradius' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] },
+ 'paintcorrectionmaskright' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] },
+ 'paintcorrectionmaskroundness' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] },
+ 'paintcorrectionmasksizex' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] },
+ 'paintcorrectionmasksizey' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] },
+ 'paintcorrectionmasktop' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] },
+ 'paintcorrectionmaskvalue' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'paintcorrectionmaskversion' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] },
+ 'paintcorrectionmaskwhat' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] },
+ 'paintcorrectionmaskx' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] },
+ 'paintcorrectionmasky' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] },
+ 'paintcorrectionmaskzerox' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] },
+ 'paintcorrectionmaskzeroy' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] },
+ 'paintcorrectionmoire' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] },
+ 'paintcorrectionsaturation' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation','PaintBasedCorrectionsLocalToningSaturation'] },
+ 'paintcorrectionshadows2012' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] },
+ 'paintcorrectionsharpness' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] },
+ 'paintcorrectiontemperature' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] },
+ 'paintcorrectiontint' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] },
+ 'paintcorrectionwhat' => { 398 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] },
'panasonicexifversion' => { 269 => 0x26 },
'panasonicimageheight' => { 269 => 0x4c },
'panasonicimagewidth' => { 269 => 0x4b },
'panasonicrawversion' => { 273 => 0x1 },
'panasonictitle' => { 105 => 0xc6d2 },
'panasonictitle2' => { 105 => 0xc6d3 },
- 'panoramacropbottom' => { 358 => 0x7 },
- 'panoramacropleft' => { 358 => 0x4 },
- 'panoramacropright' => { 358 => 0x6 },
- 'panoramacroptop' => { 358 => 0x5 },
- 'panoramadirection' => { 63 => 0x5, 358 => 0x3 },
- 'panoramaframeheight' => { 358 => 0x9 },
+ 'panoramacropbottom' => { 360 => 0x7 },
+ 'panoramacropleft' => { 360 => 0x4 },
+ 'panoramacropright' => { 360 => 0x6 },
+ 'panoramacroptop' => { 360 => 0x5 },
+ 'panoramadirection' => { 63 => 0x5, 360 => 0x3 },
+ 'panoramaframeheight' => { 360 => 0x9 },
'panoramaframenumber' => { 63 => 0x2 },
- 'panoramaframewidth' => { 358 => 0x8 },
- 'panoramafullheight' => { 358 => 0x2 },
- 'panoramafullwidth' => { 358 => 0x1 },
+ 'panoramaframewidth' => { 360 => 0x8 },
+ 'panoramafullheight' => { 360 => 0x2 },
+ 'panoramafullwidth' => { 360 => 0x1 },
'panoramamode' => { 121 => 0x3c, 249 => 0x601 },
- 'panoramasize3d' => { 343 => 0x38 },
- 'panoramasourceheight' => { 358 => 0xb },
- 'panoramasourcewidth' => { 358 => 0xa },
+ 'panoramasize3d' => { 345 => 0x38 },
+ 'panoramasourceheight' => { 360 => 0xb },
+ 'panoramasourcewidth' => { 360 => 0xa },
'panoramicstitchcameramotion' => { 153 => 'PanoramicStitchCameraMotion', 154 => 0x1 },
'panoramicstitchmaptype' => { 153 => 'PanoramicStitchMapType', 154 => 0x2 },
'panoramicstitchphi0' => { 153 => 'PanoramicStitchPhi0', 154 => 0x5 },
@@ -3409,63 +3414,63 @@ my %tagLookup = (
'panoramicstitchtheta0' => { 153 => 'PanoramicStitchTheta0', 154 => 0x3 },
'panoramicstitchtheta1' => { 153 => 'PanoramicStitchTheta1', 154 => 0x4 },
'panoramicstitchversion' => { 154 => 0x0 },
- 'pantry' => { 422 => 'Pantry' },
+ 'pantry' => { 424 => 'Pantry' },
'parallax' => { 110 => 0xb211, 248 => 0x28 },
- 'parametricdarks' => { 396 => 'ParametricDarks' },
- 'parametrichighlights' => { 396 => 'ParametricHighlights' },
- 'parametrichighlightsplit' => { 396 => 'ParametricHighlightSplit' },
- 'parametriclights' => { 396 => 'ParametricLights' },
- 'parametricmidtonesplit' => { 396 => 'ParametricMidtoneSplit' },
- 'parametricshadows' => { 396 => 'ParametricShadows' },
- 'parametricshadowsplit' => { 396 => 'ParametricShadowSplit' },
- 'parentmeid' => { 386 => 'ParentMEID' },
- 'parentreference1' => { 404 => [\'TagStructure','TagStructureParentReference'] },
- 'parentreference2' => { 404 => [\'TagStructure','TagStructureSubLabelsParentReference'] },
- 'parentreference3' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] },
- 'parentreference4' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] },
- 'parentreference5' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
- 'parentreference6' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
- 'partofcompilation' => { 421 => 'partOfCompilation' },
- 'patientbirthdate' => { 383 => 'PatientDOB' },
- 'patientid' => { 383 => 'PatientID' },
- 'patientname' => { 383 => 'PatientName' },
- 'patientsex' => { 383 => 'PatientSex' },
- 'pdfversion' => { 407 => 'PDFVersion' },
+ 'parametricdarks' => { 398 => 'ParametricDarks' },
+ 'parametrichighlights' => { 398 => 'ParametricHighlights' },
+ 'parametrichighlightsplit' => { 398 => 'ParametricHighlightSplit' },
+ 'parametriclights' => { 398 => 'ParametricLights' },
+ 'parametricmidtonesplit' => { 398 => 'ParametricMidtoneSplit' },
+ 'parametricshadows' => { 398 => 'ParametricShadows' },
+ 'parametricshadowsplit' => { 398 => 'ParametricShadowSplit' },
+ 'parentmeid' => { 388 => 'ParentMEID' },
+ 'parentreference1' => { 406 => [\'TagStructure','TagStructureParentReference'] },
+ 'parentreference2' => { 406 => [\'TagStructure','TagStructureSubLabelsParentReference'] },
+ 'parentreference3' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] },
+ 'parentreference4' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'parentreference5' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'parentreference6' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'partofcompilation' => { 423 => 'partOfCompilation' },
+ 'patientbirthdate' => { 385 => 'PatientDOB' },
+ 'patientid' => { 385 => 'PatientID' },
+ 'patientname' => { 385 => 'PatientName' },
+ 'patientsex' => { 385 => 'PatientSex' },
+ 'pdfversion' => { 409 => 'PDFVersion' },
'pentaximagesize' => { 302 => 0x9 },
'pentaxmodelid' => { 282 => 0x0, 302 => 0x5 },
'pentaxmodeltype' => { 302 => 0x1 },
'pentaxversion' => { 302 => 0x0 },
- 'people' => { 384 => 'People', 388 => 'People' },
+ 'people' => { 386 => 'People', 390 => 'People' },
'perchannelblacklevel' => { 37 => 0xc4, 38 => [0x2b4,0x2cb,0x2cf], 39 => 0x108, 40 => 0x1df, 41 => [0x1f8,0x2d8], 42 => 0x30a },
- 'peripheralillumcentralradius' => { 381 => 0x8030 },
- 'peripheralillumcentralvalue' => { 381 => 0x8031 },
+ 'peripheralillumcentralradius' => { 383 => 0x8030 },
+ 'peripheralillumcentralvalue' => { 383 => 0x8031 },
'peripheralillumination' => { 91 => 0x20702, 97 => 0x68 },
'peripheralilluminationcorr' => { 54 => 0x1, 292 => 0x2 },
'peripheralilluminationon' => { 91 => '0x20702.0', 97 => 0x64 },
- 'peripheralillumperiphvalue' => { 381 => 0x8032 },
+ 'peripheralillumperiphvalue' => { 383 => 0x8032 },
'peripherallighting' => { 69 => 0x2 },
'peripherallightingsetting' => { 70 => 0x5 },
'peripherallightingvalue' => { 69 => 0x6 },
- 'permissions' => { 414 => 'permissions' },
- 'permits' => { 393 => 'permits' },
- 'person' => { 411 => 'person' },
- 'personality' => { 386 => 'Personality' },
- 'personinimage' => { 406 => 'PersonInImage' },
- 'personinimagecharacteristic' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] },
- 'personinimagecvtermcvid' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] },
- 'personinimagecvtermid' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] },
- 'personinimagecvtermname' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] },
- 'personinimagecvtermrefinedabout' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] },
- 'personinimagedescription' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] },
- 'personinimageid' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] },
- 'personinimagename' => { 406 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] },
- 'personinimagewdetails' => { 406 => 'PersonInImageWDetails' },
- 'perspectiveaspect' => { 396 => 'PerspectiveAspect' },
- 'perspectivehorizontal' => { 396 => 'PerspectiveHorizontal' },
- 'perspectiverotate' => { 396 => 'PerspectiveRotate' },
- 'perspectivescale' => { 396 => 'PerspectiveScale' },
- 'perspectiveupright' => { 396 => 'PerspectiveUpright' },
- 'perspectivevertical' => { 396 => 'PerspectiveVertical' },
+ 'permissions' => { 416 => 'permissions' },
+ 'permits' => { 395 => 'permits' },
+ 'person' => { 413 => 'person' },
+ 'personality' => { 388 => 'Personality' },
+ 'personinimage' => { 408 => 'PersonInImage' },
+ 'personinimagecharacteristic' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] },
+ 'personinimagecvtermcvid' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] },
+ 'personinimagecvtermid' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] },
+ 'personinimagecvtermname' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] },
+ 'personinimagecvtermrefinedabout' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] },
+ 'personinimagedescription' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] },
+ 'personinimageid' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] },
+ 'personinimagename' => { 408 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] },
+ 'personinimagewdetails' => { 408 => 'PersonInImageWDetails' },
+ 'perspectiveaspect' => { 398 => 'PerspectiveAspect' },
+ 'perspectivehorizontal' => { 398 => 'PerspectiveHorizontal' },
+ 'perspectiverotate' => { 398 => 'PerspectiveRotate' },
+ 'perspectivescale' => { 398 => 'PerspectiveScale' },
+ 'perspectiveupright' => { 398 => 'PerspectiveUpright' },
+ 'perspectivevertical' => { 398 => 'PerspectiveVertical' },
'pf0customfuncregistration' => { 81 => 0x1 },
'pf10retainprogramshift' => { 81 => 0xb },
'pf13drivepriority' => { 81 => 0xe },
@@ -3528,15 +3533,15 @@ my %tagLookup = (
'photoeffectsgreen' => { 231 => 0x6 },
'photoeffectsred' => { 231 => 0x4 },
'photoeffectstype' => { 231 => 0x0 },
- 'photographicsensitivity' => { 401 => 'PhotographicSensitivity' },
+ 'photographicsensitivity' => { 403 => 'PhotographicSensitivity' },
'photoinfoplayback' => { 236 => '17.6', 242 => '33.6' },
- 'photometricinterpretation' => { 105 => 0x106, 417 => 'PhotometricInterpretation' },
- 'photoshopbgrthumbnail' => { 314 => 0x409 },
- 'photoshopquality' => { 313 => 0x0 },
- 'photoshopthumbnail' => { 314 => 0x40c },
+ 'photometricinterpretation' => { 105 => 0x106, 419 => 'PhotometricInterpretation' },
+ 'photoshopbgrthumbnail' => { 316 => 0x409 },
+ 'photoshopquality' => { 315 => 0x0 },
+ 'photoshopthumbnail' => { 316 => 0x40c },
'photostyle' => { 269 => 0x89 },
- 'picklabel' => { 399 => 'PickLabel' },
- 'pictinfo' => { 333 => 0x208 },
+ 'picklabel' => { 401 => 'PickLabel' },
+ 'pictinfo' => { 335 => 0x208 },
'picturecontrol' => { 229 => 0xe2173c47 },
'picturecontrolactive' => { 232 => 0x0 },
'picturecontroladjust' => { 195 => 0x30 },
@@ -3545,10 +3550,10 @@ my %tagLookup = (
'picturecontrolmode' => { 232 => 0x13 },
'picturecontrolname' => { 195 => 0x4 },
'picturecontrolquickadjust' => { 195 => 0x31 },
- 'pictureeffect' => { 353 => 0x200e },
- 'pictureeffect2' => { 360 => 0x1163, 361 => 0x1167, 362 => 0x1143, 363 => 0x11bf, 364 => 0x119b, 365 => 0x1053, 366 => 0x24b, 367 => 0x24b, 377 => 0x46 },
+ 'pictureeffect' => { 355 => 0x200e },
+ 'pictureeffect2' => { 362 => 0x1163, 363 => 0x1167, 364 => 0x1143, 365 => 0x11bf, 366 => 0x119b, 367 => 0x1053, 368 => 0x24b, 369 => 0x24b, 379 => 0x46 },
'picturefinish' => { 158 => 0x71 },
- 'picturemode' => { 110 => 0x1031, 249 => 0x520, 302 => [0xb,0x33], 334 => 0x3d },
+ 'picturemode' => { 110 => 0x1031, 249 => 0x520, 302 => [0xb,0x33], 336 => 0x3d },
'picturemode2' => { 283 => 0x0 },
'picturemodebwfilter' => { 249 => 0x525 },
'picturemodecontrast' => { 249 => 0x523 },
@@ -3557,14 +3562,14 @@ my %tagLookup = (
'picturemodesaturation' => { 249 => 0x521 },
'picturemodesharpness' => { 249 => 0x524 },
'picturemodetone' => { 249 => 0x526 },
- 'pictureprofile' => { 360 => [0x115e,0x115f], 361 => [0x1162,0x1163], 362 => [0x113e,0x113f], 363 => [0x11ba,0x11bb], 364 => [0x1196,0x1197], 365 => [0x104e,0x104f], 366 => [0x246,0x247], 367 => [0x246,0x247] },
+ 'pictureprofile' => { 362 => [0x115e,0x115f], 363 => [0x1162,0x1163], 364 => [0x113e,0x113f], 365 => [0x11ba,0x11bb], 366 => [0x1196,0x1197], 367 => [0x104e,0x104f], 368 => [0x246,0x247], 369 => [0x246,0x247] },
'picturestyle' => { 7 => [0x4b,0x51], 8 => 0xf4, 9 => 0x6c, 10 => 0x86, 11 => 0x73, 15 => 0xab, 16 => 0xa7, 17 => 0xb0, 18 => 0x6c, 19 => 0xa7, 20 => 0xf4, 21 => 0xb3, 23 => 0xf4, 24 => 0xfa, 65 => 0xa, 91 => 0x20301, 97 => 0x2 },
- 'picturewizard' => { 331 => 0x21 },
- 'picturewizardcolor' => { 330 => 0x1 },
- 'picturewizardcontrast' => { 330 => 0x4 },
- 'picturewizardmode' => { 330 => 0x0 },
- 'picturewizardsaturation' => { 330 => 0x2 },
- 'picturewizardsharpness' => { 330 => 0x3 },
+ 'picturewizard' => { 333 => 0x21 },
+ 'picturewizardcolor' => { 332 => 0x1 },
+ 'picturewizardcontrast' => { 332 => 0x4 },
+ 'picturewizardmode' => { 332 => 0x0 },
+ 'picturewizardsaturation' => { 332 => 0x2 },
+ 'picturewizardsharpness' => { 332 => 0x3 },
'pipelineversion' => { 153 => 'PipelineVersion' },
'pitch' => { 237 => '4.1', 246 => '4.1' },
'pitchangle' => { 209 => 0x350f, 249 => 0x904, 269 => 0x91, 301 => 0x2 },
@@ -3572,15 +3577,15 @@ my %tagLookup = (
'pixelsperunitx' => { 260 => 0x0 },
'pixelsperunity' => { 260 => 0x4 },
'pixelunits' => { 260 => 0x8 },
- 'planarconfiguration' => { 105 => 0x11c, 417 => 'PlanarConfiguration' },
- 'platenames' => { 426 => 'PlateNames' },
- 'platform' => { 411 => 'platform' },
+ 'planarconfiguration' => { 105 => 0x11c, 419 => 'PlanarConfiguration' },
+ 'platenames' => { 428 => 'PlateNames' },
+ 'platform' => { 413 => 'platform' },
'playbackmenustime' => { 239 => '20.1', 240 => '21.1', 241 => '21.1' },
'playbackmonitorofftime' => { 236 => '25.2', 237 => '36.1', 242 => '8.1', 243 => '35.1', 246 => '36.1', 247 => '21.1' },
'playbackzoom' => { 237 => '37.1' },
'playdisplay' => { 160 => 0x4e },
- 'plusversion' => { 409 => 'Version' },
- 'pmversion' => { 312 => 'PMVersion' },
+ 'plusversion' => { 411 => 'Version' },
+ 'pmversion' => { 314 => 'PMVersion' },
'pngwarning' => { 261 => 'Warning' },
'poilevel' => { 192 => 0x8 },
'portraitoutputhighlightpoint' => { 97 => 0x1d },
@@ -3598,52 +3603,52 @@ my %tagLookup = (
'portraitunsharpmaskfineness' => { 97 => 0x9a },
'portraitunsharpmaskstrength' => { 97 => 0x98 },
'portraitunsharpmaskthreshold' => { 97 => 0x9c },
- 'poseheadingdegrees' => { 385 => 'PoseHeadingDegrees' },
- 'posepitchdegrees' => { 385 => 'PosePitchDegrees' },
- 'poserolldegrees' => { 385 => 'PoseRollDegrees' },
- 'positiondescriptor' => { 410 => 'positionDescriptor' },
+ 'poseheadingdegrees' => { 387 => 'PoseHeadingDegrees' },
+ 'posepitchdegrees' => { 387 => 'PosePitchDegrees' },
+ 'poserolldegrees' => { 387 => 'PoseRollDegrees' },
+ 'positiondescriptor' => { 412 => 'positionDescriptor' },
'postalcode' => { 140 => 'PostalCode' },
- 'postcropvignetteamount' => { 396 => 'PostCropVignetteAmount' },
- 'postcropvignettefeather' => { 396 => 'PostCropVignetteFeather' },
- 'postcropvignettehighlightcontrast' => { 396 => 'PostCropVignetteHighlightContrast' },
- 'postcropvignettemidpoint' => { 396 => 'PostCropVignetteMidpoint' },
- 'postcropvignetteroundness' => { 396 => 'PostCropVignetteRoundness' },
- 'postcropvignettestyle' => { 396 => 'PostCropVignetteStyle' },
- 'potentialface1position' => { 351 => 0xb },
- 'potentialface2position' => { 351 => 0x15 },
- 'potentialface3position' => { 351 => 0x1f },
- 'potentialface4position' => { 351 => 0x29 },
- 'potentialface5position' => { 351 => 0x33 },
- 'potentialface6position' => { 351 => 0x3d },
- 'potentialface7position' => { 351 => 0x47 },
- 'potentialface8position' => { 351 => 0x51 },
+ 'postcropvignetteamount' => { 398 => 'PostCropVignetteAmount' },
+ 'postcropvignettefeather' => { 398 => 'PostCropVignetteFeather' },
+ 'postcropvignettehighlightcontrast' => { 398 => 'PostCropVignetteHighlightContrast' },
+ 'postcropvignettemidpoint' => { 398 => 'PostCropVignetteMidpoint' },
+ 'postcropvignetteroundness' => { 398 => 'PostCropVignetteRoundness' },
+ 'postcropvignettestyle' => { 398 => 'PostCropVignetteStyle' },
+ 'potentialface1position' => { 353 => 0xb },
+ 'potentialface2position' => { 353 => 0x15 },
+ 'potentialface3position' => { 353 => 0x1f },
+ 'potentialface4position' => { 353 => 0x29 },
+ 'potentialface5position' => { 353 => 0x33 },
+ 'potentialface6position' => { 353 => 0x3d },
+ 'potentialface7position' => { 353 => 0x47 },
+ 'potentialface8position' => { 353 => 0x51 },
'powersource' => { 281 => '0.1' },
'poweruptime' => { 193 => 0xb6 },
'precaptureframes' => { 254 => 0x300 },
'predictor' => { 105 => 0x13d },
'preflashreturnstrength' => { 207 => 0x28a },
- 'prefs' => { 113 => 0xdd, 312 => 'Prefs' },
- 'preservedfilename' => { 422 => 'PreservedFileName' },
- 'presetwhitebalance' => { 160 => 0x24, 381 => 0x8002 },
- 'presetwhitebalanceadj' => { 381 => 0x8014 },
+ 'prefs' => { 113 => 0xdd, 314 => 'Prefs' },
+ 'preservedfilename' => { 424 => 'PreservedFileName' },
+ 'presetwhitebalance' => { 160 => 0x24, 383 => 0x8002 },
+ 'presetwhitebalanceadj' => { 383 => 0x8014 },
'previewapplicationname' => { 105 => 0xc716 },
'previewapplicationversion' => { 105 => 0xc717 },
'previewbutton' => { 236 => ['14.1','15.1'], 237 => '15.1', 242 => '29.1', 243 => '14.1', 246 => '15.1' },
'previewbuttonplusdials' => { 236 => ['14.2','15.2'], 237 => '15.2', 242 => '31.2', 246 => '43.1' },
'previewcolorspace' => { 105 => 0xc71a },
- 'previewcropbottom' => { 311 => 0xef },
- 'previewcropleft' => { 311 => 0xec },
- 'previewcropright' => { 311 => 0xee },
- 'previewcroptop' => { 311 => 0xed },
- 'previewdate' => { 319 => 0x0 },
+ 'previewcropbottom' => { 313 => 0xef },
+ 'previewcropleft' => { 313 => 0xec },
+ 'previewcropright' => { 313 => 0xee },
+ 'previewcroptop' => { 313 => 0xed },
+ 'previewdate' => { 321 => 0x0 },
'previewdatetime' => { 105 => 0xc71b },
- 'previewimage' => { 101 => 0x2000, 102 => 'PreviewImage', 106 => 'PreviewImage', 108 => 0x4, 145 => 'data', 162 => 0x81, 254 => 0x280, 268 => 0x300, 353 => 0x2001 },
+ 'previewimage' => { 101 => 0x2000, 102 => 'PreviewImage', 106 => 'PreviewImage', 108 => 0x4, 145 => 'data', 162 => 0x81, 254 => 0x280, 268 => 0x300, 355 => 0x2001 },
'previewimageborders' => { 302 => 0x3e },
'previewimageheight' => { 64 => 0x4, 123 => 0xfa58 },
- 'previewimagelength' => { 64 => 0x2, 101 => 0x3, 105 => [0x117,0x202], 162 => 0x89, 196 => 0x202, 249 => 0x102, 254 => 0x1037, 302 => 0x3, 324 => 0x1e, 329 => 0x3, 334 => [0x1b,0x1d], 344 => 0x202 },
+ 'previewimagelength' => { 64 => 0x2, 101 => 0x3, 105 => [0x117,0x202], 162 => 0x89, 196 => 0x202, 249 => 0x102, 254 => 0x1037, 302 => 0x3, 326 => 0x1e, 331 => 0x3, 336 => [0x1b,0x1d], 346 => 0x202 },
'previewimagename' => { 145 => '1Name' },
- 'previewimagesize' => { 101 => 0x2, 128 => 0x2, 145 => 'ImageSize', 302 => 0x2, 334 => [0x1c,0x1e], 353 => 0xb02c },
- 'previewimagestart' => { 64 => 0x5, 101 => 0x4, 105 => [0x111,0x201], 162 => 0x88, 196 => 0x201, 249 => 0x101, 254 => 0x1036, 302 => 0x4, 324 => 0x1c, 329 => 0x2, 334 => [0x1a,0x1c], 344 => 0x201 },
+ 'previewimagesize' => { 101 => 0x2, 128 => 0x2, 145 => 'ImageSize', 302 => 0x2, 336 => [0x1c,0x1e], 355 => 0xb02c },
+ 'previewimagestart' => { 64 => 0x5, 101 => 0x4, 105 => [0x111,0x201], 162 => 0x88, 196 => 0x201, 249 => 0x101, 254 => 0x1036, 302 => 0x4, 326 => 0x1c, 331 => 0x2, 336 => [0x1a,0x1c], 346 => 0x201 },
'previewimagetype' => { 145 => '0Type' },
'previewimagevalid' => { 249 => 0x100, 254 => 0x1035 },
'previewimagewidth' => { 64 => 0x3, 123 => 0xfa57 },
@@ -3651,23 +3656,23 @@ my %tagLookup = (
'previewsettingsdigest' => { 105 => 0xc719 },
'previewsettingsname' => { 105 => 0xc718 },
'primaryafpoint' => { 169 => 0x7 },
- 'primarychromaticities' => { 105 => 0x13f, 417 => 'PrimaryChromaticities' },
+ 'primarychromaticities' => { 105 => 0x13f, 419 => 'PrimaryChromaticities' },
'printim' => { 105 => 0xc4a5 },
- 'prioritysetupshutterrelease' => { 160 => 0x1d, 341 => 0x28 },
- 'privatertkinfo' => { 387 => 'privateRTKInfo' },
+ 'prioritysetupshutterrelease' => { 160 => 0x1d, 343 => 0x28 },
+ 'privatertkinfo' => { 389 => 'privateRTKInfo' },
'processingsoftware' => { 105 => 0xb },
- 'processversion' => { 396 => 'ProcessVersion' },
- 'producer' => { 258 => 'Producer', 407 => 'Producer' },
- 'productcode' => { 411 => 'productCode' },
- 'productid' => { 114 => 0x32, 410 => 'productID' },
- 'productidtype' => { 410 => 'productIDType' },
- 'productinimage' => { 406 => 'ProductInImage' },
- 'productinimagedescription' => { 406 => [\'ProductInImage','ProductInImageProductDescription'] },
- 'productinimagegtin' => { 406 => [\'ProductInImage','ProductInImageProductGTIN'] },
- 'productinimagename' => { 406 => [\'ProductInImage','ProductInImageProductName'] },
+ 'processversion' => { 398 => 'ProcessVersion' },
+ 'producer' => { 258 => 'Producer', 409 => 'Producer' },
+ 'productcode' => { 413 => 'productCode' },
+ 'productid' => { 114 => 0x32, 412 => 'productID' },
+ 'productidtype' => { 412 => 'productIDType' },
+ 'productinimage' => { 408 => 'ProductInImage' },
+ 'productinimagedescription' => { 408 => [\'ProductInImage','ProductInImageProductDescription'] },
+ 'productinimagegtin' => { 408 => [\'ProductInImage','ProductInImageProductGTIN'] },
+ 'productinimagename' => { 408 => [\'ProductInImage','ProductInImageProductName'] },
'productioncode' => { 282 => 0x2 },
- 'productorserviceconstraints' => { 409 => 'ProductOrServiceConstraints' },
- 'profession' => { 411 => 'profession' },
+ 'productorserviceconstraints' => { 411 => 'ProductOrServiceConstraints' },
+ 'profession' => { 413 => 'profession' },
'profilecalibrationsig' => { 105 => 0xc6f4 },
'profilecopyright' => { 105 => 0xc6fe },
'profileembedpolicy' => { 105 => 0xc6fd },
@@ -3685,49 +3690,49 @@ my %tagLookup = (
'programmode' => { 165 => 0x5 },
'programshift' => { 193 => 0xd },
'programversion' => { 113 => 0x46 },
- 'prohibits' => { 393 => 'prohibits' },
- 'projectiontype' => { 385 => 'ProjectionType' },
- 'projectname' => { 421 => 'projectName' },
- 'projectref' => { 421 => 'projectRef' },
- 'projectrefpath' => { 421 => [\'projectRef','projectRefPath'] },
- 'projectreftype' => { 421 => [\'projectRef','projectRefType'] },
- 'propertyreleaseid' => { 409 => 'PropertyReleaseID' },
- 'propertyreleasestatus' => { 409 => 'PropertyReleaseStatus' },
+ 'prohibits' => { 395 => 'prohibits' },
+ 'projectiontype' => { 387 => 'ProjectionType' },
+ 'projectname' => { 423 => 'projectName' },
+ 'projectref' => { 423 => 'projectRef' },
+ 'projectrefpath' => { 423 => [\'projectRef','projectRefPath'] },
+ 'projectreftype' => { 423 => [\'projectRef','projectRefType'] },
+ 'propertyreleaseid' => { 411 => 'PropertyReleaseID' },
+ 'propertyreleasestatus' => { 411 => 'PropertyReleaseStatus' },
'province-state' => { 113 => 0x5f },
- 'publicationdate' => { 411 => 'publicationDate' },
- 'publicationdatea-platform' => { 411 => [\'publicationDate','publicationDateA-platform'] },
- 'publicationdatedate' => { 411 => [\'publicationDate','publicationDateDate'] },
- 'publicationdisplaydate' => { 411 => 'publicationDisplayDate' },
- 'publicationdisplaydatea-platform' => { 411 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] },
- 'publicationdisplaydatedate' => { 411 => [\'publicationDisplayDate','publicationDisplayDateDate'] },
- 'publicationname' => { 411 => 'publicationName' },
- 'publisher' => { 397 => 'publisher' },
- 'publishingfrequency' => { 411 => 'publishingFrequency' },
- 'pulldown' => { 421 => 'pullDown' },
+ 'publicationdate' => { 413 => 'publicationDate' },
+ 'publicationdatea-platform' => { 413 => [\'publicationDate','publicationDateA-platform'] },
+ 'publicationdatedate' => { 413 => [\'publicationDate','publicationDateDate'] },
+ 'publicationdisplaydate' => { 413 => 'publicationDisplayDate' },
+ 'publicationdisplaydatea-platform' => { 413 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] },
+ 'publicationdisplaydatedate' => { 413 => [\'publicationDisplayDate','publicationDisplayDateDate'] },
+ 'publicationname' => { 413 => 'publicationName' },
+ 'publisher' => { 399 => 'publisher' },
+ 'publishingfrequency' => { 413 => 'publishingFrequency' },
+ 'pulldown' => { 423 => 'pullDown' },
'purplehsl' => { 91 => 0x20916 },
- 'quality' => { 0 => 0x1, 31 => 0x3, 100 => 0x2, 101 => 0x3002, 110 => 0x1000, 121 => 0x9, 193 => 0x4, 219 => 0x3, 254 => 0x201, 265 => 0x300, 302 => 0x8, 309 => 0x2, 334 => 0x16, 341 => 0x56, 342 => 0x56, 343 => 0xb, 353 => 0x102 },
- 'quality2' => { 360 => 0x1170, 361 => 0x1174, 362 => 0x1150, 364 => 0x11a8, 365 => 0x1060, 366 => 0x258, 367 => 0x258, 369 => 0x29, 370 => 0x25, 371 => 0x2a },
+ 'quality' => { 0 => 0x1, 31 => 0x3, 100 => 0x2, 101 => 0x3002, 110 => 0x1000, 121 => 0x9, 193 => 0x4, 219 => 0x3, 254 => 0x201, 265 => 0x300, 302 => 0x8, 309 => 0x2, 336 => 0x16, 343 => 0x56, 344 => 0x56, 345 => 0xb, 355 => 0x102 },
+ 'quality2' => { 362 => 0x1170, 363 => 0x1174, 364 => 0x1150, 366 => 0x11a8, 367 => 0x1060, 368 => 0x258, 369 => 0x258, 371 => 0x29, 372 => 0x25, 373 => 0x2a },
'qualitymode' => { 101 => 0x8 },
'quantizationmethod' => { 115 => 0x78 },
'quickadjust' => { 232 => 0x2a },
'quickcontroldialinmeter' => { 73 => 0x703 },
'quickfix' => { 229 => 0x416391c6 },
- 'quickshot' => { 333 => 0x213 },
+ 'quickshot' => { 335 => 0x213 },
'rangefinder' => { 239 => '4.1', 240 => '5.1', 241 => '5.1' },
'rasterizedcaption' => { 113 => 0x7d },
- 'rating' => { 105 => 0x4746, 110 => 0x1431, 311 => 0xdf, 353 => 0x2002, 390 => 'rating', 398 => 'rating', 411 => 'rating', 419 => 'Rating' },
+ 'rating' => { 105 => 0x4746, 110 => 0x1431, 313 => 0xdf, 355 => 0x2002, 392 => 'rating', 400 => 'rating', 413 => 'rating', 421 => 'Rating' },
'ratingpercent' => { 105 => 0x4749, 155 => 'Rating' },
'rawandjpgrecording' => { 71 => 0x8, 162 => 0x109, 283 => 0xd },
'rawbrightnessadj' => { 91 => 0x20001, 96 => 0x38 },
'rawcoloradj' => { 96 => 0x2e },
- 'rawcompressionmode' => { 331 => 0x45 },
- 'rawcropbottom' => { 311 => 0xd4 },
- 'rawcropleft' => { 311 => 0xd1 },
- 'rawcropright' => { 311 => 0xd3 },
- 'rawcroptop' => { 311 => 0xd2 },
+ 'rawcompressionmode' => { 333 => 0x45 },
+ 'rawcropbottom' => { 313 => 0xd4 },
+ 'rawcropleft' => { 313 => 0xd1 },
+ 'rawcropright' => { 313 => 0xd3 },
+ 'rawcroptop' => { 313 => 0xd2 },
'rawcustomsaturation' => { 96 => 0x30 },
'rawcustomtone' => { 96 => 0x34 },
- 'rawdata' => { 331 => 0xa048 },
+ 'rawdata' => { 333 => 0xa048 },
'rawdatauniqueid' => { 105 => 0xc65d },
'rawdepth' => { 164 => 0x10 },
'rawdevartfilter' => { 256 => 0x121 },
@@ -3758,7 +3763,8 @@ my %tagLookup = (
'rawdevwhitebalance' => { 256 => 0x101 },
'rawdevwhitebalancevalue' => { 255 => 0x101, 256 => 0x102 },
'rawfile' => { 105 => 0xfe4c },
- 'rawfilename' => { 396 => 'RawFileName' },
+ 'rawfilename' => { 398 => 'RawFileName' },
+ 'rawformat' => { 311 => 0x10e },
'rawimagecenter' => { 193 => 0x99 },
'rawimagedigest' => { 105 => 0xc71c },
'rawimagesize' => { 302 => 0x39 },
@@ -3768,14 +3774,14 @@ my %tagLookup = (
'rawjpgsize' => { 49 => 0x7, 88 => 0x2 },
'rawjpgwidth' => { 88 => 0x3 },
'rawmeasuredrggb' => { 36 => 0x26a, 38 => 0x280, 40 => 0x194, 41 => [0x1ad,0x26b] },
- 'rawrppused' => { 390 => 'rawrppused' },
+ 'rawrppused' => { 392 => 'rawrppused' },
'rawtopreviewgain' => { 105 => 0xc7a8 },
'reardisplay' => { 236 => '12.3', 237 => '6.2' },
- 'recipeendingpage' => { 413 => 'recipeEndingPage' },
- 'recipepagerange' => { 413 => 'recipePageRange' },
- 'recipesource' => { 413 => 'recipeSource' },
- 'recipestartingpage' => { 413 => 'recipeStartingPage' },
- 'recipetitle' => { 413 => 'recipeTitle' },
+ 'recipeendingpage' => { 415 => 'recipeEndingPage' },
+ 'recipepagerange' => { 415 => 'recipePageRange' },
+ 'recipesource' => { 415 => 'recipeSource' },
+ 'recipestartingpage' => { 415 => 'recipeStartingPage' },
+ 'recipetitle' => { 415 => 'recipeTitle' },
'recognizedface1age' => { 264 => 0x20 },
'recognizedface1name' => { 264 => 0x4 },
'recognizedface1position' => { 264 => 0x18 },
@@ -3786,7 +3792,7 @@ my %tagLookup = (
'recognizedface3name' => { 264 => 0x64 },
'recognizedface3position' => { 264 => 0x78 },
'recognizedfaceflags' => { 269 => 0x63 },
- 'recommendedexposureindex' => { 105 => 0x8832, 401 => 'RecommendedExposureIndex' },
+ 'recommendedexposureindex' => { 105 => 0x8832, 403 => 'RecommendedExposureIndex' },
'record' => { 104 => 'Record' },
'recordbasisofrecord' => { 104 => [\'Record','RecordBasisOfRecord'] },
'recordcollectioncode' => { 104 => [\'Record','RecordCollectionCode'] },
@@ -3798,32 +3804,32 @@ my %tagLookup = (
'recorddynamicproperties' => { 104 => [\'Record','RecordDynamicProperties'] },
'recordid' => { 86 => 0x1804 },
'recordinformationwithheld' => { 104 => [\'Record','RecordInformationWithheld'] },
- 'recordingformat' => { 325 => 0x1000 },
+ 'recordingformat' => { 327 => 0x1000 },
'recordingmode' => { 100 => 0x1, 309 => 0x1 },
'recordinstitutioncode' => { 104 => [\'Record','RecordInstitutionCode'] },
'recordinstitutionid' => { 104 => [\'Record','RecordInstitutionID'] },
'recordmode' => { 31 => 0x9, 101 => 0x3000 },
'recordownerinstitutioncode' => { 104 => [\'Record','RecordOwnerInstitutionCode'] },
- 'recordshutterrelease' => { 333 => 0x217 },
+ 'recordshutterrelease' => { 335 => 0x217 },
'redbalance' => { 177 => 0x270, 254 => 0x1017, 273 => 0x11, 302 => 0x1c },
'redcurvelimits' => { 96 => 0x18a },
'redcurvepoints' => { 95 => 0x2d, 96 => 0x160 },
'redeyecorrection' => { 233 => 0x0 },
- 'redeyeinfo' => { 396 => 'RedEyeInfo' },
- 'redeyereduction' => { 160 => 0x41, 341 => 0x6a, 343 => 0x28 },
+ 'redeyeinfo' => { 398 => 'RedEyeInfo' },
+ 'redeyereduction' => { 160 => 0x41, 343 => 0x6a, 345 => 0x28 },
'redhsl' => { 91 => 0x20910 },
- 'redhue' => { 396 => 'RedHue' },
- 'redsaturation' => { 396 => 'RedSaturation' },
+ 'redhue' => { 398 => 'RedHue' },
+ 'redsaturation' => { 398 => 'RedSaturation' },
'reductionmatrix1' => { 105 => 0xc625 },
'reductionmatrix2' => { 105 => 0xc626 },
'reelname' => { 105 => 0xc789 },
- 'reference1' => { 404 => [\'TagStructure','TagStructureReference'] },
- 'reference2' => { 404 => [\'TagStructure','TagStructureSubLabelsReference'] },
- 'reference3' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] },
- 'reference4' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] },
- 'reference5' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
- 'reference6' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
- 'referenceblackwhite' => { 105 => 0x214, 417 => 'ReferenceBlackWhite' },
+ 'reference1' => { 406 => [\'TagStructure','TagStructureReference'] },
+ 'reference2' => { 406 => [\'TagStructure','TagStructureSubLabelsReference'] },
+ 'reference3' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] },
+ 'reference4' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] },
+ 'reference5' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
+ 'reference6' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
+ 'referenceblackwhite' => { 105 => 0x214, 419 => 'ReferenceBlackWhite' },
'referencedate' => { 113 => 0x2f },
'referencenumber' => { 113 => 0x32 },
'references' => { 136 => 'References' },
@@ -3840,7 +3846,7 @@ my %tagLookup = (
'regionareax' => { 151 => [\'Regions','RegionsRegionListAreaX'] },
'regionareay' => { 151 => [\'Regions','RegionsRegionListAreaY'] },
'regionbarcodevalue' => { 151 => [\'Regions','RegionsRegionListBarCodeValue'] },
- 'regionconstraints' => { 409 => 'RegionConstraints' },
+ 'regionconstraints' => { 411 => 'RegionConstraints' },
'regiondescription' => { 151 => [\'Regions','RegionsRegionListDescription'] },
'regionextensions' => { 151 => [\'Regions','RegionsRegionListExtensions'] },
'regionfocususage' => { 151 => [\'Regions','RegionsRegionListFocusUsage'] },
@@ -3858,9 +3864,9 @@ my %tagLookup = (
'regionrotation' => { 151 => [\'Regions','RegionsRegionListRotation'] },
'regionseealso' => { 151 => [\'Regions','RegionsRegionListSeeAlso'] },
'regiontype' => { 151 => [\'Regions','RegionsRegionListType'] },
- 'registryid' => { 406 => 'RegistryId' },
- 'registryitemid' => { 406 => [\'RegistryId','RegistryIdRegItemId'] },
- 'registryorganisationid' => { 406 => [\'RegistryId','RegistryIdRegOrgId'] },
+ 'registryid' => { 408 => 'RegistryId' },
+ 'registryitemid' => { 408 => [\'RegistryId','RegistryIdRegItemId'] },
+ 'registryorganisationid' => { 408 => [\'RegistryId','RegistryIdRegOrgId'] },
'relatedaudiofile' => { 134 => 'data' },
'relatedaudiofilename' => { 134 => '1Name' },
'relatedaudiofiletype' => { 134 => '0Type' },
@@ -3868,47 +3874,47 @@ my %tagLookup = (
'relatedimageheight' => { 105 => 0x1002 },
'relatedimagewidth' => { 105 => 0x1001 },
'relatedresourceid' => { 104 => [\'ResourceRelationship','ResourceRelationshipRelatedResourceID'] },
- 'relatedsoundfile' => { 105 => 0xa004, 400 => 'RelatedSoundFile' },
+ 'relatedsoundfile' => { 105 => 0xa004, 402 => 'RelatedSoundFile' },
'relatedvideofile' => { 148 => 'data' },
'relatedvideofilename' => { 148 => '1Name' },
'relatedvideofiletype' => { 148 => '0Type' },
- 'relation' => { 397 => 'relation' },
+ 'relation' => { 399 => 'relation' },
'relationshipaccordingto' => { 104 => [\'ResourceRelationship','ResourceRelationshipRelationshipAccordingTo'] },
'relationshipestablisheddate' => { 104 => [\'ResourceRelationship','ResourceRelationshipRelationshipEstablishedDate'] },
'relationshipofresource' => { 104 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResource'] },
'relationshipremarks' => { 104 => [\'ResourceRelationship','ResourceRelationshipRelationshipRemarks'] },
- 'relativepeakaudiofilepath' => { 421 => 'relativePeakAudioFilePath' },
- 'relativetimestamp' => { 421 => 'relativeTimestamp' },
- 'relativetimestampscale' => { 421 => [\'relativeTimestamp','relativeTimestampScale'] },
- 'relativetimestampvalue' => { 421 => [\'relativeTimestamp','relativeTimestampValue'] },
+ 'relativepeakaudiofilepath' => { 423 => 'relativePeakAudioFilePath' },
+ 'relativetimestamp' => { 423 => 'relativeTimestamp' },
+ 'relativetimestampscale' => { 423 => [\'relativeTimestamp','relativeTimestampScale'] },
+ 'relativetimestampvalue' => { 423 => [\'relativeTimestamp','relativeTimestampValue'] },
'releasebuttontousedial' => { 236 => '17.8', 237 => '18.5', 242 => '33.8', 243 => '17.6', 246 => '18.5' },
- 'releasedate' => { 113 => 0x1e, 421 => 'releaseDate' },
- 'releasemode' => { 101 => 0x3001, 353 => 0xb049 },
- 'releasemode2' => { 360 => 0x112c, 361 => [0x112c,0x8], 362 => [0x1108,0x8], 363 => [0x1184,0x8], 364 => [0x1160,0x8], 365 => [0x4,0x1018], 366 => [0x4,0x210], 367 => [0x4,0x210], 368 => [0x67,0x73,0x3f,0x4b], 369 => 0x10, 370 => 0x10, 371 => 0x9, 377 => 0x34 },
- 'releasemode3' => { 360 => 0x1128, 361 => 0x1128, 362 => 0x1104, 363 => 0x1180, 364 => 0x115c, 365 => 0x1014, 366 => 0x20c, 367 => 0x20c },
+ 'releasedate' => { 113 => 0x1e, 423 => 'releaseDate' },
+ 'releasemode' => { 101 => 0x3001, 355 => 0xb049 },
+ 'releasemode2' => { 362 => 0x112c, 363 => [0x112c,0x8], 364 => [0x1108,0x8], 365 => [0x1184,0x8], 366 => [0x1160,0x8], 367 => [0x4,0x1018], 368 => [0x4,0x210], 369 => [0x4,0x210], 370 => [0x67,0x73,0x3f,0x4b], 371 => 0x10, 372 => 0x10, 373 => 0x9, 379 => 0x34 },
+ 'releasemode3' => { 362 => 0x1128, 363 => 0x1128, 364 => 0x1104, 365 => 0x1180, 366 => 0x115c, 367 => 0x1014, 368 => 0x20c, 369 => 0x20c },
'releasesetting' => { 86 => 0x1016 },
'releasetime' => { 113 => 0x23 },
'remoteonduration' => { 238 => '3.4', 239 => '17.2', 240 => '18.2', 241 => '18.2', 243 => '18.2', 244 => '4.3', 247 => '19.2' },
- 'renditionclass' => { 422 => 'RenditionClass' },
- 'renditionof' => { 422 => 'RenditionOf' },
- 'renditionofalternatepaths' => { 422 => [\'RenditionOf','RenditionOfAlternatePaths'] },
- 'renditionofdocumentid' => { 422 => [\'RenditionOf','RenditionOfDocumentID'] },
- 'renditionoffilepath' => { 422 => [\'RenditionOf','RenditionOfFilePath'] },
- 'renditionoffrompart' => { 422 => [\'RenditionOf','RenditionOfFromPart'] },
- 'renditionofinstanceid' => { 422 => [\'RenditionOf','RenditionOfInstanceID'] },
- 'renditionoflastmodifydate' => { 422 => [\'RenditionOf','RenditionOfLastModifyDate'] },
- 'renditionofmanager' => { 422 => [\'RenditionOf','RenditionOfManager'] },
- 'renditionofmanagervariant' => { 422 => [\'RenditionOf','RenditionOfManagerVariant'] },
- 'renditionofmanageto' => { 422 => [\'RenditionOf','RenditionOfManageTo'] },
- 'renditionofmanageui' => { 422 => [\'RenditionOf','RenditionOfManageUI'] },
- 'renditionofmaskmarkers' => { 422 => [\'RenditionOf','RenditionOfMaskMarkers'] },
- 'renditionoforiginaldocumentid' => { 422 => [\'RenditionOf','RenditionOfOriginalDocumentID'] },
- 'renditionofpartmapping' => { 422 => [\'RenditionOf','RenditionOfPartMapping'] },
- 'renditionofrenditionclass' => { 422 => [\'RenditionOf','RenditionOfRenditionClass'] },
- 'renditionofrenditionparams' => { 422 => [\'RenditionOf','RenditionOfRenditionParams'] },
- 'renditionoftopart' => { 422 => [\'RenditionOf','RenditionOfToPart'] },
- 'renditionofversionid' => { 422 => [\'RenditionOf','RenditionOfVersionID'] },
- 'renditionparams' => { 422 => 'RenditionParams' },
+ 'renditionclass' => { 424 => 'RenditionClass' },
+ 'renditionof' => { 424 => 'RenditionOf' },
+ 'renditionofalternatepaths' => { 424 => [\'RenditionOf','RenditionOfAlternatePaths'] },
+ 'renditionofdocumentid' => { 424 => [\'RenditionOf','RenditionOfDocumentID'] },
+ 'renditionoffilepath' => { 424 => [\'RenditionOf','RenditionOfFilePath'] },
+ 'renditionoffrompart' => { 424 => [\'RenditionOf','RenditionOfFromPart'] },
+ 'renditionofinstanceid' => { 424 => [\'RenditionOf','RenditionOfInstanceID'] },
+ 'renditionoflastmodifydate' => { 424 => [\'RenditionOf','RenditionOfLastModifyDate'] },
+ 'renditionofmanager' => { 424 => [\'RenditionOf','RenditionOfManager'] },
+ 'renditionofmanagervariant' => { 424 => [\'RenditionOf','RenditionOfManagerVariant'] },
+ 'renditionofmanageto' => { 424 => [\'RenditionOf','RenditionOfManageTo'] },
+ 'renditionofmanageui' => { 424 => [\'RenditionOf','RenditionOfManageUI'] },
+ 'renditionofmaskmarkers' => { 424 => [\'RenditionOf','RenditionOfMaskMarkers'] },
+ 'renditionoforiginaldocumentid' => { 424 => [\'RenditionOf','RenditionOfOriginalDocumentID'] },
+ 'renditionofpartmapping' => { 424 => [\'RenditionOf','RenditionOfPartMapping'] },
+ 'renditionofrenditionclass' => { 424 => [\'RenditionOf','RenditionOfRenditionClass'] },
+ 'renditionofrenditionparams' => { 424 => [\'RenditionOf','RenditionOfRenditionParams'] },
+ 'renditionoftopart' => { 424 => [\'RenditionOf','RenditionOfToPart'] },
+ 'renditionofversionid' => { 424 => [\'RenditionOf','RenditionOfVersionID'] },
+ 'renditionparams' => { 424 => 'RenditionParams' },
'repeatingflashcount' => { 182 => 0xd, 183 => 0xe, 184 => 0xe, 242 => '17.2', 243 => '24.2', 244 => '9.2', 245 => '24.2', 247 => '25.2' },
'repeatingflashcountbuilt-in' => { 216 => 0x4db },
'repeatingflashcountexternal' => { 216 => 0x4c3 },
@@ -3917,204 +3923,206 @@ my %tagLookup = (
'repeatingflashrate' => { 182 => 0xc, 183 => 0xd, 184 => 0xd, 242 => '18.1', 243 => '25.1', 244 => '10.1', 245 => '25.1', 247 => '26.1' },
'repeatingflashratebuilt-in' => { 216 => 0x4da },
'repeatingflashrateexternal' => { 216 => 0x4c2 },
- 'requires' => { 393 => 'requires' },
- 'resampleparams' => { 421 => 'resampleParams' },
- 'resampleparamsquality' => { 421 => [\'resampleParams','resampleParamsQuality'] },
- 'resaved' => { 333 => 0x21e },
+ 'requires' => { 395 => 'requires' },
+ 'resampleparams' => { 423 => 'resampleParams' },
+ 'resampleparamsquality' => { 423 => [\'resampleParams','resampleParamsQuality'] },
+ 'resaved' => { 335 => 0x21e },
'resolution' => { 141 => 'Resolution' },
- 'resolutionmode' => { 334 => 0x4 },
- 'resolutionunit' => { 105 => 0x128, 116 => 0x2, 417 => 'ResolutionUnit' },
+ 'resolutionmode' => { 336 => 0x4 },
+ 'resolutionunit' => { 105 => 0x128, 116 => 0x2, 419 => 'ResolutionUnit' },
'resourceid' => { 104 => [\'ResourceRelationship','ResourceRelationshipResourceID'] },
'resourcerelationship' => { 104 => 'ResourceRelationship' },
'resourcerelationshipid' => { 104 => [\'ResourceRelationship','ResourceRelationshipResourceRelationshipID'] },
'restrictdrivemodes' => { 73 => 0x612 },
- 'restrictions' => { 414 => 'restrictions' },
- 'retouchareafeather' => { 396 => [\'RetouchAreas','RetouchAreasFeather'] },
- 'retouchareamaskalpha' => { 396 => [\'RetouchAreas','RetouchAreasMasksAlpha'] },
- 'retouchareamaskangle' => { 396 => [\'RetouchAreas','RetouchAreasMasksAngle'] },
- 'retouchareamaskbottom' => { 396 => [\'RetouchAreas','RetouchAreasMasksBottom'] },
- 'retouchareamaskcentervalue' => { 396 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] },
- 'retouchareamaskcenterweight' => { 396 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] },
- 'retouchareamaskdabs' => { 396 => [\'RetouchAreas','RetouchAreasMasksDabs'] },
- 'retouchareamaskfeather' => { 396 => [\'RetouchAreas','RetouchAreasMasksFeather'] },
- 'retouchareamaskflipped' => { 396 => [\'RetouchAreas','RetouchAreasMasksFlipped'] },
- 'retouchareamaskflow' => { 396 => [\'RetouchAreas','RetouchAreasMasksFlow'] },
- 'retouchareamaskfullx' => { 396 => [\'RetouchAreas','RetouchAreasMasksFullX'] },
- 'retouchareamaskfully' => { 396 => [\'RetouchAreas','RetouchAreasMasksFullY'] },
- 'retouchareamaskleft' => { 396 => [\'RetouchAreas','RetouchAreasMasksLeft'] },
- 'retouchareamaskmidpoint' => { 396 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] },
- 'retouchareamaskperimetervalue' => { 396 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] },
- 'retouchareamaskradius' => { 396 => [\'RetouchAreas','RetouchAreasMasksRadius'] },
- 'retouchareamaskright' => { 396 => [\'RetouchAreas','RetouchAreasMasksRight'] },
- 'retouchareamaskroundness' => { 396 => [\'RetouchAreas','RetouchAreasMasksRoundness'] },
- 'retouchareamasks' => { 396 => [\'RetouchAreas','RetouchAreasMasks'] },
- 'retouchareamasksizex' => { 396 => [\'RetouchAreas','RetouchAreasMasksSizeX'] },
- 'retouchareamasksizey' => { 396 => [\'RetouchAreas','RetouchAreasMasksSizeY'] },
- 'retouchareamasktop' => { 396 => [\'RetouchAreas','RetouchAreasMasksTop'] },
- 'retouchareamaskvalue' => { 396 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] },
- 'retouchareamaskversion' => { 396 => [\'RetouchAreas','RetouchAreasMasksVersion'] },
- 'retouchareamaskwhat' => { 396 => [\'RetouchAreas','RetouchAreasMasksWhat'] },
- 'retouchareamaskx' => { 396 => [\'RetouchAreas','RetouchAreasMasksX'] },
- 'retouchareamasky' => { 396 => [\'RetouchAreas','RetouchAreasMasksY'] },
- 'retouchareamaskzerox' => { 396 => [\'RetouchAreas','RetouchAreasMasksZeroX'] },
- 'retouchareamaskzeroy' => { 396 => [\'RetouchAreas','RetouchAreasMasksZeroY'] },
- 'retouchareamethod' => { 396 => [\'RetouchAreas','RetouchAreasMethod'] },
- 'retouchareaoffsety' => { 396 => [\'RetouchAreas','RetouchAreasOffsetY'] },
- 'retouchareaopacity' => { 396 => [\'RetouchAreas','RetouchAreasOpacity'] },
- 'retouchareas' => { 396 => 'RetouchAreas' },
- 'retouchareaseed' => { 396 => [\'RetouchAreas','RetouchAreasSeed'] },
- 'retouchareasourcestate' => { 396 => [\'RetouchAreas','RetouchAreasSourceState'] },
- 'retouchareasourcex' => { 396 => [\'RetouchAreas','RetouchAreasSourceX'] },
- 'retouchareaspottype' => { 396 => [\'RetouchAreas','RetouchAreasSpotType'] },
+ 'restrictions' => { 416 => 'restrictions' },
+ 'retouchareafeather' => { 398 => [\'RetouchAreas','RetouchAreasFeather'] },
+ 'retouchareamaskalpha' => { 398 => [\'RetouchAreas','RetouchAreasMasksAlpha'] },
+ 'retouchareamaskangle' => { 398 => [\'RetouchAreas','RetouchAreasMasksAngle'] },
+ 'retouchareamaskbottom' => { 398 => [\'RetouchAreas','RetouchAreasMasksBottom'] },
+ 'retouchareamaskcentervalue' => { 398 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] },
+ 'retouchareamaskcenterweight' => { 398 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] },
+ 'retouchareamaskdabs' => { 398 => [\'RetouchAreas','RetouchAreasMasksDabs'] },
+ 'retouchareamaskfeather' => { 398 => [\'RetouchAreas','RetouchAreasMasksFeather'] },
+ 'retouchareamaskflipped' => { 398 => [\'RetouchAreas','RetouchAreasMasksFlipped'] },
+ 'retouchareamaskflow' => { 398 => [\'RetouchAreas','RetouchAreasMasksFlow'] },
+ 'retouchareamaskfullx' => { 398 => [\'RetouchAreas','RetouchAreasMasksFullX'] },
+ 'retouchareamaskfully' => { 398 => [\'RetouchAreas','RetouchAreasMasksFullY'] },
+ 'retouchareamaskleft' => { 398 => [\'RetouchAreas','RetouchAreasMasksLeft'] },
+ 'retouchareamaskmidpoint' => { 398 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] },
+ 'retouchareamaskperimetervalue' => { 398 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] },
+ 'retouchareamaskradius' => { 398 => [\'RetouchAreas','RetouchAreasMasksRadius'] },
+ 'retouchareamaskright' => { 398 => [\'RetouchAreas','RetouchAreasMasksRight'] },
+ 'retouchareamaskroundness' => { 398 => [\'RetouchAreas','RetouchAreasMasksRoundness'] },
+ 'retouchareamasks' => { 398 => [\'RetouchAreas','RetouchAreasMasks'] },
+ 'retouchareamasksizex' => { 398 => [\'RetouchAreas','RetouchAreasMasksSizeX'] },
+ 'retouchareamasksizey' => { 398 => [\'RetouchAreas','RetouchAreasMasksSizeY'] },
+ 'retouchareamasktop' => { 398 => [\'RetouchAreas','RetouchAreasMasksTop'] },
+ 'retouchareamaskvalue' => { 398 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] },
+ 'retouchareamaskversion' => { 398 => [\'RetouchAreas','RetouchAreasMasksVersion'] },
+ 'retouchareamaskwhat' => { 398 => [\'RetouchAreas','RetouchAreasMasksWhat'] },
+ 'retouchareamaskx' => { 398 => [\'RetouchAreas','RetouchAreasMasksX'] },
+ 'retouchareamasky' => { 398 => [\'RetouchAreas','RetouchAreasMasksY'] },
+ 'retouchareamaskzerox' => { 398 => [\'RetouchAreas','RetouchAreasMasksZeroX'] },
+ 'retouchareamaskzeroy' => { 398 => [\'RetouchAreas','RetouchAreasMasksZeroY'] },
+ 'retouchareamethod' => { 398 => [\'RetouchAreas','RetouchAreasMethod'] },
+ 'retouchareaoffsety' => { 398 => [\'RetouchAreas','RetouchAreasOffsetY'] },
+ 'retouchareaopacity' => { 398 => [\'RetouchAreas','RetouchAreasOpacity'] },
+ 'retouchareas' => { 398 => 'RetouchAreas' },
+ 'retouchareaseed' => { 398 => [\'RetouchAreas','RetouchAreasSeed'] },
+ 'retouchareasourcestate' => { 398 => [\'RetouchAreas','RetouchAreasSourceState'] },
+ 'retouchareasourcex' => { 398 => [\'RetouchAreas','RetouchAreasSourceX'] },
+ 'retouchareaspottype' => { 398 => [\'RetouchAreas','RetouchAreasSpotType'] },
'retouchhistory' => { 193 => 0x9e },
- 'retouchinfo' => { 396 => 'RetouchInfo' },
+ 'retouchinfo' => { 398 => 'RetouchInfo' },
'retouchnefprocessing' => { 198 => 0x5 },
- 'reuse' => { 409 => 'Reuse' },
- 'reuseallowed' => { 424 => 'ReuseAllowed' },
- 'reuseprohibited' => { 414 => 'reuseProhibited' },
+ 'reuse' => { 411 => 'Reuse' },
+ 'reuseallowed' => { 426 => 'ReuseAllowed' },
+ 'reuseprohibited' => { 416 => 'reuseProhibited' },
'reverseexposurecompdial' => { 241 => '5.2' },
'reverseindicators' => { 236 => '12.1', 237 => '6.1', 239 => '4.3', 240 => '5.2', 241 => '5.4', 242 => '33.5', 243 => '5.1', 246 => '6.1', 247 => '6.2' },
'reverseshutterspeedaperture' => { 241 => '5.3' },
- 'revision' => { 398 => 'revision' },
+ 'revision' => { 400 => 'revision' },
'rgbcurvelimits' => { 96 => 0x238 },
'rgbcurvepoints' => { 95 => 0x7, 96 => 0x20e },
- 'richtextcomment' => { 403 => 'RichTextComment' },
- 'ricohdate' => { 324 => 0x6 },
- 'ricohimageheight' => { 324 => 0x2 },
- 'ricohimagewidth' => { 324 => 0x0 },
+ 'richtextcomment' => { 405 => 'RichTextComment' },
+ 'ricohdate' => { 326 => 0x6 },
+ 'ricohimageheight' => { 326 => 0x2 },
+ 'ricohimagewidth' => { 326 => 0x0 },
'rightascension' => { 144 => 'RightAscension' },
- 'rights' => { 397 => 'rights' },
- 'rightsagent' => { 414 => 'rightsAgent' },
- 'rightsowner' => { 414 => 'rightsOwner' },
+ 'rights' => { 399 => 'rights' },
+ 'rightsagent' => { 416 => 'rightsAgent' },
+ 'rightsowner' => { 416 => 'rightsOwner' },
'rollangle' => { 209 => 0x350b, 249 => 0x903, 269 => 0x90, 301 => 0x1 },
'romoperationmode' => { 86 => 0x80d },
- 'rotation' => { 27 => 0x17, 28 => 0x18, 85 => 0x3, 91 => 0x10002, 96 => 0x26e, 109 => 0x4, 144 => 'Rotation', 158 => [0x65,0x50], 159 => 0x46, 160 => 0x5a, 163 => 0x10, 215 => '590.1', 229 => 0x76a43207, 269 => 0x30, 283 => '17.2', 311 => 0xd8, 341 => 0x3f, 342 => 0x3f, 352 => 0x10 },
- 'routedto' => { 402 => 'RoutedTo' },
- 'routing' => { 316 => 'Routing' },
- 'routingnotes' => { 402 => 'RoutingNotes' },
+ 'rotation' => { 27 => 0x17, 28 => 0x18, 85 => 0x3, 91 => 0x10002, 96 => 0x26e, 109 => 0x4, 144 => 'Rotation', 158 => [0x65,0x50], 159 => 0x46, 160 => 0x5a, 163 => 0x10, 215 => '590.1', 229 => 0x76a43207, 269 => 0x30, 283 => '17.2', 313 => 0xd8, 343 => 0x3f, 344 => 0x3f, 354 => 0x10 },
+ 'routedto' => { 404 => 'RoutedTo' },
+ 'routing' => { 318 => 'Routing' },
+ 'routingnotes' => { 404 => 'RoutingNotes' },
'rowsperstrip' => { 105 => 0x116 },
- 'rpp' => { 390 => 'rpp' },
+ 'rpp' => { 392 => 'rpp' },
'safetyshift' => { 73 => 0x108 },
'safetyshiftinavortv' => { 71 => 0x10, 72 => 0x10, 74 => 0xf, 75 => 0x10, 78 => 0x10 },
'samplebits' => { 134 => 'SampleBits' },
- 'samplepagerange' => { 411 => 'samplePageRange' },
+ 'samplepagerange' => { 413 => 'samplePageRange' },
'samplerate' => { 134 => 'SampleRate' },
- 'samplesperpixel' => { 105 => 0x115, 417 => 'SamplesPerPixel' },
+ 'samplesperpixel' => { 105 => 0x115, 419 => 'SamplesPerPixel' },
'samplestructure' => { 115 => 0x5a },
- 'samsungmodelid' => { 331 => 0x3 },
- 'sanyoquality' => { 333 => 0x201 },
- 'sanyothumbnail' => { 333 => 0x100 },
- 'saturation' => { 9 => 0x6e, 11 => 0x76, 31 => 0xe, 43 => 0x1, 100 => 0xd, 101 => [0x3013,0x1f], 105 => [0xa409,0xfe55], 110 => 0x1003, 135 => 'Saturation', 157 => 0x1f, 158 => 0x32, 159 => 0x28, 160 => 0x1a, 165 => 0x1, 193 => [0x94,0xaa], 195 => 0x35, 269 => 0x40, 271 => 0x300d, 302 => 0x1f, 309 => 0xd, 321 => 0x27, 324 => 0x28, 325 => 0x1013, 334 => 0x10, 341 => 0x1e, 342 => 0x1b, 353 => 0x2005, 396 => 'Saturation', 400 => 'Saturation' },
- 'saturationadj' => { 91 => 0x20901, 96 => 0x116, 228 => 0x1, 232 => 0x2e, 381 => 0x8016 },
- 'saturationadjustmentaqua' => { 396 => 'SaturationAdjustmentAqua' },
- 'saturationadjustmentblue' => { 396 => 'SaturationAdjustmentBlue' },
- 'saturationadjustmentgreen' => { 396 => 'SaturationAdjustmentGreen' },
- 'saturationadjustmentmagenta' => { 396 => 'SaturationAdjustmentMagenta' },
- 'saturationadjustmentorange' => { 396 => 'SaturationAdjustmentOrange' },
- 'saturationadjustmentpurple' => { 396 => 'SaturationAdjustmentPurple' },
- 'saturationadjustmentred' => { 396 => 'SaturationAdjustmentRed' },
- 'saturationadjustmentyellow' => { 396 => 'SaturationAdjustmentYellow' },
+ 'samsungmodelid' => { 333 => 0x3 },
+ 'sanyoquality' => { 335 => 0x201 },
+ 'sanyothumbnail' => { 335 => 0x100 },
+ 'saturation' => { 9 => 0x6e, 11 => 0x76, 31 => 0xe, 43 => 0x1, 100 => 0xd, 101 => [0x3013,0x1f], 105 => [0xa409,0xfe55], 110 => 0x1003, 135 => 'Saturation', 157 => 0x1f, 158 => 0x32, 159 => 0x28, 160 => 0x1a, 165 => 0x1, 193 => [0x94,0xaa], 195 => 0x35, 269 => 0x40, 271 => 0x300d, 302 => 0x1f, 309 => 0xd, 323 => 0x27, 326 => 0x28, 327 => 0x1013, 336 => 0x10, 343 => 0x1e, 344 => 0x1b, 355 => 0x2005, 398 => 'Saturation', 402 => 'Saturation' },
+ 'saturationadj' => { 91 => 0x20901, 96 => 0x116, 228 => 0x1, 232 => 0x2e, 383 => 0x8016 },
+ 'saturationadjustmentaqua' => { 398 => 'SaturationAdjustmentAqua' },
+ 'saturationadjustmentblue' => { 398 => 'SaturationAdjustmentBlue' },
+ 'saturationadjustmentgreen' => { 398 => 'SaturationAdjustmentGreen' },
+ 'saturationadjustmentmagenta' => { 398 => 'SaturationAdjustmentMagenta' },
+ 'saturationadjustmentorange' => { 398 => 'SaturationAdjustmentOrange' },
+ 'saturationadjustmentpurple' => { 398 => 'SaturationAdjustmentPurple' },
+ 'saturationadjustmentred' => { 398 => 'SaturationAdjustmentRed' },
+ 'saturationadjustmentyellow' => { 398 => 'SaturationAdjustmentYellow' },
'saturationauto' => { 62 => 0x98 },
'saturationfaithful' => { 18 => 0xfe, 61 => 0x68, 62 => 0x68 },
'saturationlandscape' => { 18 => 0xfc, 61 => 0x38, 62 => 0x38 },
'saturationmonochrome' => { 61 => 0x80, 62 => 0x80 },
'saturationneutral' => { 18 => 0xfd, 61 => 0x50, 62 => 0x50 },
'saturationportrait' => { 18 => 0xfb, 61 => 0x20, 62 => 0x20 },
- 'saturationsetting' => { 257 => 0x1010, 343 => 0x11, 357 => 0x9 },
+ 'saturationsetting' => { 257 => 0x1010, 345 => 0x11, 359 => 0x9 },
'saturationstandard' => { 18 => 0xfa, 61 => 0x8, 62 => 0x8 },
'saturationuserdef1' => { 18 => 0x100, 61 => 0x98, 62 => 0xb0 },
'saturationuserdef2' => { 18 => 0x101, 61 => 0xb0, 62 => 0xc8 },
'saturationuserdef3' => { 18 => 0x102, 61 => 0xc8, 62 => 0xe0 },
- 'saveid' => { 422 => 'SaveID' },
- 'scaletype' => { 421 => 'scaleType' },
+ 'saveid' => { 424 => 'SaveID' },
+ 'scaletype' => { 423 => 'scaleType' },
'scanimageenhancer' => { 199 => 0x60 },
'scanningdirection' => { 115 => 0x64 },
- 'scene' => { 405 => 'Scene', 421 => 'scene' },
+ 'scene' => { 407 => 'Scene', 423 => 'scene' },
'scenearea' => { 252 => 0x211, 254 => 0x1031 },
'sceneassist' => { 193 => 0x9c },
- 'scenecapturetype' => { 105 => 0xa406, 400 => 'SceneCaptureType' },
+ 'scenecapturetype' => { 105 => 0xa406, 402 => 'SceneCaptureType' },
'scenedetect' => { 252 => 0x210, 254 => 0x1030 },
'scenedetectdata' => { 252 => 0x212, 254 => 0x1033 },
- 'scenemode' => { 123 => 0xfa02, 162 => 0x100, 193 => 0x8f, 249 => 0x509, 254 => 0x403, 269 => 0x8001, 277 => 0xf, 353 => 0xb023 },
+ 'scenemode' => { 123 => 0xfa02, 162 => 0x100, 193 => 0x8f, 249 => 0x509, 254 => 0x403, 269 => 0x8001, 277 => 0xf, 355 => 0xb023 },
'scenemodeused' => { 125 => [0x6002,0xf002] },
- 'sceneselect' => { 333 => 0x21f },
- 'scenetype' => { 105 => 0xa301, 400 => 'SceneType' },
+ 'sceneselect' => { 335 => 0x21f },
+ 'scenetype' => { 105 => 0xa301, 402 => 'SceneType' },
'screentips' => { 236 => '12.7', 237 => '5.3', 242 => '13.1', 243 => '4.4', 246 => '5.4', 247 => '5.1' },
- 'season' => { 410 => 'season' },
- 'section' => { 411 => 'section' },
+ 'season' => { 412 => 'season' },
+ 'section' => { 413 => 'section' },
'securityclassification' => { 105 => 0x9212 },
'selectableafpoint' => { 73 => 0x509 },
'selectafareaselectmode' => { 73 => 0x512 },
- 'selftimer' => { 31 => 0x2, 269 => 0x2e, 333 => 0x214 },
+ 'selftimer' => { 31 => 0x2, 269 => 0x2e, 335 => 0x214 },
'selftimer2' => { 67 => 0x1d },
'selftimerinterval' => { 243 => '19.2' },
'selftimermode' => { 105 => 0x882b },
'selftimershotcount' => { 237 => '20.2', 239 => '18.2', 240 => '19.2', 241 => '19.2', 243 => '19.3', 246 => '20.3', 247 => '20.2' },
'selftimershotinterval' => { 237 => '20.3', 246 => '20.2' },
'selftimertime' => { 86 => 0x1806, 160 => 0x1f, 236 => '18.1', 237 => '20.1', 238 => '3.3', 239 => '18.1', 240 => '19.1', 241 => '19.1', 242 => '7.2', 243 => '19.1', 244 => '3.3', 246 => '20.1', 247 => '20.1' },
- 'sellingagency' => { 411 => 'sellingAgency' },
+ 'sellingagency' => { 413 => 'sellingAgency' },
'seminfo' => { 105 => 0x8546 },
- 'sensingmethod' => { 105 => 0xa217, 400 => 'SensingMethod' },
+ 'sensingmethod' => { 105 => 0xa217, 402 => 'SensingMethod' },
'sensitivityadjust' => { 302 => 0x40 },
'sensitivitysteps' => { 283 => ['14.3','17.4'], 285 => 0x1 },
- 'sensitivitytype' => { 105 => 0x8830, 401 => 'SensitivityType' },
+ 'sensitivitytype' => { 105 => 0x8830, 403 => 'SensitivityType' },
'sensor' => { 167 => 0x665e },
- 'sensorareas' => { 331 => 0xa010 },
+ 'sensorareas' => { 333 => 0xa010 },
'sensorbitdepth' => { 271 => 0x312d },
'sensorbluelevel' => { 65 => 0x5 },
'sensorcalibration' => { 253 => 0x805 },
'sensorcleaning' => { 79 => 0xd },
'sensorfullheight' => { 118 => 0xf904 },
'sensorfullwidth' => { 118 => 0xf903 },
- 'sensorheight' => { 118 => 0xf901, 123 => 0xfa21, 164 => 0x8, 271 => 0x312c, 325 => 0x1602 },
+ 'sensorheight' => { 118 => 0xf901, 123 => 0xfa21, 164 => 0x8, 271 => 0x312c, 311 => 0x109, 327 => 0x1602 },
+ 'sensorleftmargin' => { 311 => 0x10a },
'sensorpixelsize' => { 193 => 0x9a },
'sensorredlevel' => { 65 => 0x4 },
'sensorserialnumber' => { 119 => 0x9ce },
'sensorsize' => { 135 => 'SensorSize', 302 => 0x35 },
- 'sensortemperature' => { 252 => 0x1500, 254 => 0x1007, 307 => 0xc, 334 => [0x39,0x55] },
- 'sensortemperature2' => { 307 => 0xe },
- 'sensorwidth' => { 118 => 0xf900, 123 => 0xfa20, 164 => 0xa, 271 => 0x312b, 325 => 0x1601 },
- 'sequence' => { 321 => 0x7 },
- 'sequencefilenumber' => { 361 => 0x4, 362 => 0x4, 363 => 0x4, 364 => 0x4, 369 => 0xc, 370 => 0xc, 371 => 0x1a },
- 'sequenceimagenumber' => { 361 => 0x0, 362 => 0x0, 363 => 0x0, 364 => 0x0, 369 => 0x8, 370 => 0x8, 371 => 0x12, 377 => 0x24 },
- 'sequencelength' => { 369 => 0x22, 370 => 0x1e, 371 => [0x16,0x1e] },
- 'sequencename' => { 410 => 'sequenceName' },
- 'sequencenumber' => { 67 => 0x9, 101 => 0x301c, 110 => 0x1101, 121 => 0x1d, 216 => 0x51c, 269 => 0x2b, 343 => [0x10c,0x30c], 353 => 0xb04a, 410 => 'sequenceNumber' },
- 'sequenceshotinterval' => { 333 => 0x224 },
- 'sequencetotalnumber' => { 410 => 'sequenceTotalNumber' },
- 'sequentialshot' => { 333 => 0x20e },
- 'serialnumber' => { 55 => 0xc, 86 => 0x180b, 105 => [0xa431,0xfde9], 118 => 0xfa04, 120 => 0xfa00, 122 => 0xc354, 123 => 0xfa19, 132 => 0x0, 135 => 'SerialNumber', 193 => [0xa0,0x1d], 250 => 0x101, 254 => [0x404,0x101a], 265 => 0x303, 271 => 0x3103, 302 => 0x229, 321 => 0x15, 325 => 0x5, 334 => 0x2, 392 => 'SerialNumber', 401 => 'BodySerialNumber' },
+ 'sensortemperature' => { 252 => 0x1500, 254 => 0x1007, 307 => 0xc, 311 => 0x210, 336 => [0x39,0x55] },
+ 'sensortemperature2' => { 307 => 0xe, 311 => 0x211 },
+ 'sensortopmargin' => { 311 => 0x10b },
+ 'sensorwidth' => { 118 => 0xf900, 123 => 0xfa20, 164 => 0xa, 271 => 0x312b, 311 => 0x108, 327 => 0x1601 },
+ 'sequence' => { 323 => 0x7 },
+ 'sequencefilenumber' => { 363 => 0x4, 364 => 0x4, 365 => 0x4, 366 => 0x4, 371 => 0xc, 372 => 0xc, 373 => 0x1a },
+ 'sequenceimagenumber' => { 363 => 0x0, 364 => 0x0, 365 => 0x0, 366 => 0x0, 371 => 0x8, 372 => 0x8, 373 => 0x12, 379 => 0x24 },
+ 'sequencelength' => { 371 => 0x22, 372 => 0x1e, 373 => [0x16,0x1e] },
+ 'sequencename' => { 412 => 'sequenceName' },
+ 'sequencenumber' => { 67 => 0x9, 101 => 0x301c, 110 => 0x1101, 121 => 0x1d, 216 => 0x51c, 269 => 0x2b, 345 => [0x10c,0x30c], 355 => 0xb04a, 412 => 'sequenceNumber' },
+ 'sequenceshotinterval' => { 335 => 0x224 },
+ 'sequencetotalnumber' => { 412 => 'sequenceTotalNumber' },
+ 'sequentialshot' => { 335 => 0x20e },
+ 'serialnumber' => { 55 => 0xc, 86 => 0x180b, 105 => [0xa431,0xfde9], 118 => 0xfa04, 120 => 0xfa00, 122 => 0xc354, 123 => 0xfa19, 132 => 0x0, 135 => 'SerialNumber', 193 => [0xa0,0x1d], 250 => 0x101, 254 => [0x404,0x101a], 265 => 0x303, 271 => 0x3103, 302 => 0x229, 311 => 0x102, 312 => 0x407, 323 => 0x15, 327 => 0x5, 336 => 0x2, 394 => 'SerialNumber', 403 => 'BodySerialNumber' },
'serialnumberformat' => { 55 => 0x15, 86 => 0x183b },
- 'seriesdatetime' => { 383 => 'SeriesDateTime' },
- 'seriesdescription' => { 383 => 'SeriesDescription' },
- 'seriesmodality' => { 383 => 'SeriesModality' },
- 'seriesnumber' => { 383 => 'SeriesNumber', 411 => 'seriesNumber' },
- 'seriestitle' => { 411 => 'seriesTitle' },
+ 'seriesdatetime' => { 385 => 'SeriesDateTime' },
+ 'seriesdescription' => { 385 => 'SeriesDescription' },
+ 'seriesmodality' => { 385 => 'SeriesModality' },
+ 'seriesnumber' => { 385 => 'SeriesNumber', 413 => 'seriesNumber' },
+ 'seriestitle' => { 413 => 'seriesTitle' },
'serviceidentifier' => { 114 => 0x1e },
- 'servingsize' => { 413 => 'servingSize' },
+ 'servingsize' => { 415 => 'servingSize' },
'setbuttoncrosskeysfunc' => { 76 => 0x0, 77 => 0x0 },
'setbuttonwhenshooting' => { 71 => 0x1, 73 => 0x704, 79 => 0xc },
'setfunctionwhenshooting' => { 74 => 0x0, 75 => 0x1, 78 => 0x1 },
- 'setting' => { 410 => 'setting' },
+ 'setting' => { 412 => 'setting' },
'shadingcompensation' => { 249 => 0x50c, 269 => 0x8a },
'shadingcompensation2' => { 253 => 0x1012 },
- 'shadow' => { 334 => 0xe },
+ 'shadow' => { 336 => 0xe },
'shadowadj' => { 91 => 0x2030b },
'shadowcorrection' => { 302 => 0x79 },
'shadowprotection' => { 228 => 0x0 },
- 'shadows' => { 105 => 0xfe52, 389 => 'Shadows', 396 => 'Shadows' },
- 'shadows2012' => { 396 => 'Shadows2012' },
+ 'shadows' => { 105 => 0xfe52, 391 => 'Shadows', 398 => 'Shadows' },
+ 'shadows2012' => { 398 => 'Shadows2012' },
'shadowscale' => { 105 => 0xc633 },
- 'shadowtint' => { 396 => 'ShadowTint' },
+ 'shadowtint' => { 398 => 'ShadowTint' },
'shadowtone' => { 110 => 0x1040 },
'shakereduction' => { 304 => 0x1, 305 => 0x1 },
- 'sharpendetail' => { 396 => 'SharpenDetail' },
- 'sharpenedgemasking' => { 396 => 'SharpenEdgeMasking' },
+ 'sharpendetail' => { 398 => 'SharpenDetail' },
+ 'sharpenedgemasking' => { 398 => 'SharpenEdgeMasking' },
'sharpening' => { 271 => 0x300b },
'sharpeningadj' => { 232 => 0x2b },
- 'sharpenradius' => { 396 => 'SharpenRadius' },
- 'sharpness' => { 7 => [0x42,0x48], 9 => 0x72, 11 => 0x74, 31 => 0xf, 65 => 0x2, 100 => 0xb, 101 => [0x3011,0x21], 105 => [0xa40a,0xfe56], 110 => 0x1001, 121 => 0x6b, 130 => 0x37, 135 => 'Sharpness', 157 => 0x21, 158 => 0x30, 159 => 0x26, 160 => 0x18, 165 => 0x3, 193 => 0x6, 195 => 0x32, 254 => 0x100f, 269 => 0x41, 302 => 0x21, 309 => 0xb, 321 => 0x26, 324 => 0x22, 325 => [0x1003,0x1014], 334 => 0x11, 341 => 0x1c, 342 => 0x19, 353 => 0x2006, 377 => 0x52, 396 => 'Sharpness', 400 => 'Sharpness' },
- 'sharpnessadj' => { 91 => 0x20310, 96 => 0x25a, 381 => 0x801a },
+ 'sharpenradius' => { 398 => 'SharpenRadius' },
+ 'sharpness' => { 7 => [0x42,0x48], 9 => 0x72, 11 => 0x74, 31 => 0xf, 65 => 0x2, 100 => 0xb, 101 => [0x3011,0x21], 105 => [0xa40a,0xfe56], 110 => 0x1001, 121 => 0x6b, 130 => 0x37, 135 => 'Sharpness', 157 => 0x21, 158 => 0x30, 159 => 0x26, 160 => 0x18, 165 => 0x3, 193 => 0x6, 195 => 0x32, 254 => 0x100f, 269 => 0x41, 302 => 0x21, 309 => 0xb, 323 => 0x26, 326 => 0x22, 327 => [0x1003,0x1014], 336 => 0x11, 343 => 0x1c, 344 => 0x19, 355 => 0x2006, 379 => 0x52, 398 => 'Sharpness', 402 => 'Sharpness' },
+ 'sharpnessadj' => { 91 => 0x20310, 96 => 0x25a, 383 => 0x801a },
'sharpnessadjon' => { 91 => '0x20310.0' },
'sharpnessauto' => { 62 => 0x94 },
'sharpnessfactor' => { 254 => 0x102a },
@@ -4123,38 +4131,38 @@ my %tagLookup = (
'sharpnesslandscape' => { 18 => 0xf3, 61 => 0x34, 62 => 0x34 },
'sharpnessmonochrome' => { 18 => 0xf6, 61 => 0x7c, 62 => 0x7c },
'sharpnessneutral' => { 18 => 0xf4, 61 => 0x4c, 62 => 0x4c },
- 'sharpnessovershoot' => { 381 => 0x801b },
+ 'sharpnessovershoot' => { 383 => 0x801b },
'sharpnessportrait' => { 18 => 0xf2, 61 => 0x1c, 62 => 0x1c },
- 'sharpnesssetting' => { 249 => 0x506, 257 => 0x1013, 343 => 0x12, 357 => 0xa },
+ 'sharpnesssetting' => { 249 => 0x506, 257 => 0x1013, 345 => 0x12, 359 => 0xa },
'sharpnessstandard' => { 18 => 0xf1, 61 => 0x4, 62 => 0x4 },
'sharpnessstrength' => { 91 => 0x20311 },
- 'sharpnessthreshold' => { 381 => 0x801d },
- 'sharpnessundershoot' => { 381 => 0x801c },
+ 'sharpnessthreshold' => { 383 => 0x801d },
+ 'sharpnessundershoot' => { 383 => 0x801c },
'sharpnessuserdef1' => { 18 => 0xf7, 61 => 0x94, 62 => 0xac },
'sharpnessuserdef2' => { 18 => 0xf8, 61 => 0xac, 62 => 0xc4 },
'sharpnessuserdef3' => { 18 => 0xf9, 61 => 0xc4, 62 => 0xdc },
- 'shootid' => { 410 => 'shootID' },
+ 'shootid' => { 412 => 'shootID' },
'shootingdistance' => { 91 => 0x20701 },
'shootinginfodisplay' => { 236 => '13.2', 237 => '5.1', 242 => '10.2', 243 => '4.1', 246 => '5.1', 247 => '5.3' },
'shootinginfomonitorofftime' => { 236 => '26.2', 237 => '22.2', 242 => '9.1', 243 => '21.2', 246 => '22.2', 247 => '22.2' },
'shootingmode' => { 135 => 'ShootingMode', 193 => 0x89, 269 => 0x1f },
'shootingmodesetting' => { 238 => '5.1' },
- 'shortdescription' => { 398 => 'shortdescription' },
+ 'shortdescription' => { 400 => 'shortdescription' },
'shortdocumentid' => { 113 => 0xba },
'shortownername' => { 18 => 0xac },
'shortreleasetimelag' => { 73 => 0x80d },
- 'shotdate' => { 421 => 'shotDate' },
- 'shotday' => { 421 => 'shotDay' },
- 'shotlocation' => { 421 => 'shotLocation' },
- 'shotname' => { 421 => 'shotName' },
- 'shotnumber' => { 421 => 'shotNumber' },
- 'shotnumbersincepowerup' => { 356 => 0x44e, 369 => 0x1a, 370 => 0x16, 371 => 0xa },
- 'shotnumbersincepowerup2' => { 343 => 0x200 },
- 'shotsize' => { 421 => 'shotSize' },
+ 'shotdate' => { 423 => 'shotDate' },
+ 'shotday' => { 423 => 'shotDay' },
+ 'shotlocation' => { 423 => 'shotLocation' },
+ 'shotname' => { 423 => 'shotName' },
+ 'shotnumber' => { 423 => 'shotNumber' },
+ 'shotnumbersincepowerup' => { 358 => 0x44e, 371 => 0x1a, 372 => 0x16, 373 => 0xa },
+ 'shotnumbersincepowerup2' => { 345 => 0x200 },
+ 'shotsize' => { 423 => 'shotSize' },
'shutter-aelock' => { 71 => 0x4, 73 => 0x701, 74 => 0x3, 75 => 0x4, 76 => 0x3, 77 => 0x3, 78 => 0x4, 79 => 0x2 },
'shutteraelbutton' => { 72 => 0x4 },
'shutterbuttonafonbutton' => { 73 => 0x701 },
- 'shuttercount' => { 10 => 0x176, 49 => 0x1, 193 => 0xa7, 200 => [0x6a,0x157,0x24d], 201 => 0x286, 202 => 0x279, 203 => 0x284, 204 => 0x242, 205 => 0x280, 206 => 0x276, 207 => [0x27d,0x27f], 208 => 0x246, 210 => 0x2d6, 211 => 0x321, 212 => 0xbd8, 213 => 0x287, 214 => 0x320, 215 => 0x24a, 216 => 0x5fb, 218 => 0x2d5, 302 => 0x5d, 352 => 0x846, 355 => [0x125,0x14a] },
+ 'shuttercount' => { 10 => 0x176, 49 => 0x1, 193 => 0xa7, 200 => [0x6a,0x157,0x24d], 201 => 0x286, 202 => 0x279, 203 => 0x284, 204 => 0x242, 205 => 0x280, 206 => 0x276, 207 => [0x27d,0x27f], 208 => 0x246, 210 => 0x2d6, 211 => 0x321, 212 => 0xbd8, 213 => 0x287, 214 => 0x320, 215 => 0x24a, 216 => 0x5fb, 218 => 0x2d5, 302 => 0x5d, 354 => 0x846, 357 => [0x125,0x14a] },
'shuttercurtainsync' => { 71 => 0xf, 72 => 0xf, 73 => 0x305, 74 => 0xe, 75 => 0xf, 76 => 0x8, 77 => 0x8, 78 => 0xf, 79 => 0x8 },
'shuttermode' => { 121 => 0x1b },
'shutterreleasebuttonae-l' => { 236 => '17.7', 237 => '18.4', 239 => '16.1', 240 => '17.1', 241 => '17.1', 242 => '7.1', 243 => '17.5', 246 => '18.4', 247 => '18.2' },
@@ -4164,62 +4172,63 @@ my %tagLookup = (
'shutterreleasewithoutlens' => { 73 => 0x711 },
'shutterspeedlock' => { 237 => '38.1', 246 => '38.1' },
'shutterspeedrange' => { 73 => 0x10c },
- 'shutterspeedsetting' => { 160 => 0x6, 341 => 0x2f, 342 => 0x28, 343 => 0x0 },
- 'shutterspeedvalue' => { 82 => 0x1, 105 => 0x9201, 254 => 0x1000, 400 => 'ShutterSpeedValue' },
+ 'shutterspeedsetting' => { 160 => 0x6, 343 => 0x2f, 344 => 0x28, 345 => 0x0 },
+ 'shutterspeedvalue' => { 82 => 0x1, 105 => 0x9201, 254 => 0x1000, 311 => 0x400, 402 => 'ShutterSpeedValue' },
'shuttertype' => { 110 => 0x1050, 269 => 0x9f },
- 'sidecarforextension' => { 408 => 'SidecarForExtension' },
+ 'sidecarforextension' => { 410 => 'SidecarForExtension' },
'similarityindex' => { 113 => 0xe4 },
'singleframebracketing' => { 160 => 0x21 },
- 'skilllevel' => { 413 => 'skillLevel' },
+ 'skilllevel' => { 415 => 'skillLevel' },
'slaveflashmeteringsegments' => { 302 => 0x20b },
- 'slideshowname' => { 410 => 'slideshowName' },
- 'slideshownumber' => { 410 => 'slideshowNumber' },
- 'slideshowtotalnumber' => { 410 => 'slideshowTotalNumber' },
+ 'slideshowname' => { 412 => 'slideshowName' },
+ 'slideshownumber' => { 412 => 'slideshowNumber' },
+ 'slideshowtotalnumber' => { 412 => 'slideshowTotalNumber' },
'slowshutter' => { 67 => 0x8 },
'slowsync' => { 110 => 0x1030 },
- 'smartrange' => { 331 => 0xa012 },
- 'smileshutter' => { 343 => 0x31 },
- 'smileshuttermode' => { 343 => 0x27 },
- 'smoothness' => { 105 => 0xfe57, 396 => 'Smoothness' },
- 'softskineffect' => { 353 => 0x200f },
- 'software' => { 105 => 0x131, 136 => 'Software', 261 => 'Software', 334 => 0x18, 417 => 'Software' },
- 'softwareversion' => { 333 => 0x207 },
- 'sonydatetime' => { 359 => 0x6, 361 => 0x1b6, 362 => 0x210, 363 => 0x1fe, 364 => 0x22c },
- 'sonydatetime2' => { 368 => [0x51,0x5d] },
- 'sonyexposuretime' => { 368 => 0x46 },
- 'sonyexposuretime2' => { 377 => 0xe },
- 'sonyfnumber' => { 368 => [0x3c,0x48], 377 => 0x14 },
- 'sonyimageheight' => { 359 => 0x1a, 369 => 0x44, 370 => 0x3f, 371 => 0x47 },
- 'sonyimagesize' => { 160 => 0x3b, 341 => 0x54, 342 => 0x54, 343 => 0x9 },
- 'sonyimagewidth' => { 359 => 0x1c },
- 'sonyiso' => { 361 => 0x1218, 362 => 0x11f4, 363 => 0x1270, 364 => [0x1254,0x1258,0x1280], 365 => 0x113c, 366 => 0x344, 367 => 0x346, 377 => 0x4 },
- 'sonymaxaperturevalue' => { 377 => 0x16 },
- 'sonymodelid' => { 353 => 0xb001 },
+ 'smartrange' => { 333 => 0xa012 },
+ 'smileshutter' => { 345 => 0x31 },
+ 'smileshuttermode' => { 345 => 0x27 },
+ 'smoothness' => { 105 => 0xfe57, 398 => 'Smoothness' },
+ 'softskineffect' => { 355 => 0x200f },
+ 'software' => { 105 => 0x131, 136 => 'Software', 261 => 'Software', 311 => 0x203, 336 => 0x18, 419 => 'Software' },
+ 'softwareversion' => { 335 => 0x207 },
+ 'sonydatetime' => { 361 => 0x6, 363 => 0x1b6, 364 => 0x210, 365 => 0x1fe, 366 => 0x22c },
+ 'sonydatetime2' => { 370 => [0x51,0x5d] },
+ 'sonyexposuretime' => { 370 => 0x46 },
+ 'sonyexposuretime2' => { 379 => 0xe },
+ 'sonyfnumber' => { 370 => [0x3c,0x48], 379 => 0x14 },
+ 'sonyimageheight' => { 361 => 0x1a, 371 => 0x44, 372 => 0x3f, 373 => 0x47 },
+ 'sonyimagesize' => { 160 => 0x3b, 343 => 0x54, 344 => 0x54, 345 => 0x9 },
+ 'sonyimagewidth' => { 361 => 0x1c },
+ 'sonyiso' => { 363 => 0x1218, 364 => 0x11f4, 365 => 0x1270, 366 => [0x1254,0x1258,0x1280], 367 => 0x113c, 368 => 0x344, 369 => 0x346, 379 => 0x4 },
+ 'sonymaxaperturevalue' => { 379 => 0x16 },
+ 'sonymodelid' => { 355 => 0xb001 },
'sonyquality' => { 160 => 0x3c },
- 'source' => { 113 => 0x73, 261 => 'Source', 397 => 'source', 398 => 'source', 408 => 'Source' },
+ 'source' => { 113 => 0x73, 261 => 'Source', 399 => 'source', 400 => 'source', 410 => 'Source' },
'sourcedirectoryindex' => { 289 => 0x0 },
'sourcefileindex' => { 289 => 0x2 },
- 'sourcephotoscount' => { 385 => 'SourcePhotosCount' },
- 'spatialfrequencyresponse' => { 400 => 'SpatialFrequencyResponse' },
- 'spatialfrequencyresponsecolumns' => { 400 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] },
- 'spatialfrequencyresponsenames' => { 400 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] },
- 'spatialfrequencyresponserows' => { 400 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] },
- 'spatialfrequencyresponsevalues' => { 400 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] },
- 'speakerplacement' => { 421 => 'speakerPlacement' },
+ 'sourcephotoscount' => { 387 => 'SourcePhotosCount' },
+ 'spatialfrequencyresponse' => { 402 => 'SpatialFrequencyResponse' },
+ 'spatialfrequencyresponsecolumns' => { 402 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] },
+ 'spatialfrequencyresponsenames' => { 402 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] },
+ 'spatialfrequencyresponserows' => { 402 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] },
+ 'spatialfrequencyresponsevalues' => { 402 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] },
+ 'speakerplacement' => { 423 => 'speakerPlacement' },
'specialeffectlevel' => { 101 => 0x3030 },
'specialeffectmode' => { 101 => 0x2076 },
'specialeffectsetting' => { 101 => 0x3031 },
'specialinstructions' => { 113 => 0x28 },
- 'specialmode' => { 254 => 0x200, 333 => 0x200 },
- 'specialoccasion' => { 413 => 'specialOccasion' },
- 'spectralsensitivity' => { 105 => 0x8824, 400 => 'SpectralSensitivity' },
+ 'specialmode' => { 254 => 0x200, 335 => 0x200 },
+ 'specialoccasion' => { 415 => 'specialOccasion' },
+ 'spectralsensitivity' => { 105 => 0x8824, 402 => 'SpectralSensitivity' },
'specularwhitelevel' => { 38 => [0x2b9,0x2d0,0x2d4], 40 => 0x1e4, 41 => [0x1fd,0x2dd], 42 => 0x30f },
- 'splittoningbalance' => { 396 => 'SplitToningBalance' },
- 'splittoninghighlighthue' => { 396 => 'SplitToningHighlightHue' },
- 'splittoninghighlightsaturation' => { 396 => 'SplitToningHighlightSaturation' },
- 'splittoningshadowhue' => { 396 => 'SplitToningShadowHue' },
- 'splittoningshadowsaturation' => { 396 => 'SplitToningShadowSaturation' },
- 'sport' => { 411 => 'sport' },
+ 'splitcolumn' => { 311 => 0x222 },
+ 'splittoningbalance' => { 398 => 'SplitToningBalance' },
+ 'splittoninghighlighthue' => { 398 => 'SplitToningHighlightHue' },
+ 'splittoninghighlightsaturation' => { 398 => 'SplitToningHighlightSaturation' },
+ 'splittoningshadowhue' => { 398 => 'SplitToningShadowHue' },
+ 'splittoningshadowsaturation' => { 398 => 'SplitToningShadowSaturation' },
+ 'sport' => { 413 => 'sport' },
'spotfocuspointx' => { 157 => 0x2d },
'spotfocuspointy' => { 157 => 0x2e },
'spotmeteringmode' => { 31 => 0x27 },
@@ -4229,8 +4238,9 @@ my %tagLookup = (
'srfocallength' => { 304 => 0x3 },
'srhalfpresstime' => { 304 => 0x2 },
'srresult' => { 304 => 0x0, 305 => 0x0 },
+ 'stackedimage' => { 249 => 0x804 },
'standardoutputhighlightpoint' => { 97 => 0x14 },
- 'standardoutputsensitivity' => { 105 => 0x8831, 401 => 'StandardOutputSensitivity' },
+ 'standardoutputsensitivity' => { 105 => 0x8831, 403 => 'StandardOutputSensitivity' },
'standardoutputshadowpoint' => { 97 => 0x15 },
'standardrawcolortone' => { 97 => 0xd },
'standardrawcontrast' => { 97 => 0xf },
@@ -4245,27 +4255,27 @@ my %tagLookup = (
'standardunsharpmaskstrength' => { 97 => 0x92 },
'standardunsharpmaskthreshold' => { 97 => 0x96 },
'standbytimer' => { 237 => '19.1', 241 => '18.1', 246 => '19.1' },
- 'startingpage' => { 411 => 'startingPage' },
+ 'startingpage' => { 413 => 'startingPage' },
'startmovieshooting' => { 73 => 0x70d },
- 'starttimecode' => { 421 => 'startTimecode' },
- 'starttimecodetimeformat' => { 421 => [\'startTimecode','startTimecodeTimeFormat'] },
- 'starttimecodetimevalue' => { 421 => [\'startTimecode','startTimecodeTimeValue'] },
- 'starttimecodevalue' => { 421 => [\'startTimecode','startTimecodeValue'] },
- 'starttimesamplesize' => { 421 => 'startTimeSampleSize' },
- 'starttimescale' => { 421 => 'startTimeScale' },
- 'state' => { 140 => 'State', 269 => 0x6b, 408 => 'State' },
- 'status' => { 384 => 'Status', 388 => 'Status' },
- 'stitchingsoftware' => { 385 => 'StitchingSoftware' },
- 'stopsabovebaseiso' => { 360 => 0x113e, 361 => 0x113e, 362 => 0x111a, 363 => 0x1196, 364 => 0x1172, 365 => 0x102a, 366 => 0x222, 367 => 0x222, 377 => 0xa },
+ 'starttimecode' => { 423 => 'startTimecode' },
+ 'starttimecodetimeformat' => { 423 => [\'startTimecode','startTimecodeTimeFormat'] },
+ 'starttimecodetimevalue' => { 423 => [\'startTimecode','startTimecodeTimeValue'] },
+ 'starttimecodevalue' => { 423 => [\'startTimecode','startTimecodeValue'] },
+ 'starttimesamplesize' => { 423 => 'startTimeSampleSize' },
+ 'starttimescale' => { 423 => 'startTimeScale' },
+ 'state' => { 140 => 'State', 269 => 0x6b, 410 => 'State' },
+ 'status' => { 386 => 'Status', 390 => 'Status' },
+ 'stitchingsoftware' => { 387 => 'StitchingSoftware' },
+ 'stopsabovebaseiso' => { 362 => 0x113e, 363 => 0x113e, 364 => 0x111a, 365 => 0x1196, 366 => 0x1172, 367 => 0x102a, 368 => 0x222, 369 => 0x222, 379 => 0xa },
'storagemethod' => { 164 => 0x12 },
'storebyorientation' => { 237 => '46.3', 246 => '47.3' },
'straightenangle' => { 229 => 0x2fc08431 },
'streamtype' => { 153 => 'StreamType' },
- 'stretchmode' => { 421 => 'stretchMode' },
- 'studydatetime' => { 383 => 'StudyDateTime' },
- 'studydescription' => { 383 => 'StudyDescription' },
- 'studyid' => { 383 => 'StudyID' },
- 'studyphysician' => { 383 => 'StudyPhysician' },
+ 'stretchmode' => { 423 => 'stretchMode' },
+ 'studydatetime' => { 385 => 'StudyDateTime' },
+ 'studydescription' => { 385 => 'StudyDescription' },
+ 'studyid' => { 385 => 'StudyID' },
+ 'studyphysician' => { 385 => 'StudyPhysician' },
'sub-location' => { 113 => 0x5c },
'subfiledata' => { 143 => 'data' },
'subfiledirectory' => { 143 => '1Directory' },
@@ -4273,50 +4283,51 @@ my %tagLookup = (
'subfilename' => { 143 => '1Name' },
'subfileresource' => { 143 => 'rsrc' },
'subfiletype' => { 105 => 0xfe, 143 => '0Type' },
- 'subject' => { 258 => 'Subject', 316 => 'Subject', 397 => 'subject', 407 => 'Subject', 422 => 'subject' },
- 'subjectarea' => { 105 => 0x9214, 400 => 'SubjectArea' },
- 'subjectcode' => { 405 => 'SubjectCode' },
- 'subjectdistance' => { 105 => 0x9206, 121 => 0x3e, 400 => 'SubjectDistance' },
- 'subjectdistancerange' => { 105 => 0xa40c, 400 => 'SubjectDistanceRange' },
- 'subjectlocation' => { 105 => 0xa214, 400 => 'SubjectLocation' },
+ 'subject' => { 258 => 'Subject', 318 => 'Subject', 399 => 'subject', 409 => 'Subject', 424 => 'subject' },
+ 'subjectarea' => { 105 => 0x9214, 402 => 'SubjectArea' },
+ 'subjectcode' => { 407 => 'SubjectCode' },
+ 'subjectdistance' => { 105 => 0x9206, 121 => 0x3e, 402 => 'SubjectDistance' },
+ 'subjectdistancerange' => { 105 => 0xa40c, 402 => 'SubjectDistanceRange' },
+ 'subjectlocation' => { 105 => 0xa214, 402 => 'SubjectLocation' },
'subjectprogram' => { 157 => 0x22 },
'subjectreference' => { 113 => 0xc },
- 'sublabels4' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] },
- 'sublabels5' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] },
- 'sublables1' => { 404 => [\'TagStructure','TagStructureSubLabels'] },
- 'sublables2' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabels'] },
- 'sublables3' => { 404 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] },
+ 'sublabels4' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] },
+ 'sublabels5' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] },
+ 'sublables1' => { 406 => [\'TagStructure','TagStructureSubLabels'] },
+ 'sublables2' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabels'] },
+ 'sublables3' => { 406 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] },
'subsectime' => { 105 => 0x9290 },
'subsectimedigitized' => { 105 => 0x9292 },
'subsectimeoriginal' => { 105 => 0x9291 },
- 'subsection1' => { 411 => 'subsection1' },
- 'subsection2' => { 411 => 'subsection2' },
- 'subsection3' => { 411 => 'subsection3' },
- 'subsection4' => { 411 => 'subsection4' },
+ 'subsection1' => { 413 => 'subsection1' },
+ 'subsection2' => { 413 => 'subsection2' },
+ 'subsection3' => { 413 => 'subsection3' },
+ 'subsection4' => { 413 => 'subsection4' },
'subselector' => { 237 => '49.1' },
'subselectorassignment' => { 237 => '48.1' },
'subselectorplusdials' => { 237 => '49.2' },
- 'subtitle' => { 411 => 'subtitle' },
- 'subversionfilename' => { 404 => [\'SubVersions','SubVersionsFileName'] },
- 'subversionreference' => { 404 => [\'SubVersions','SubVersionsVersRef'] },
- 'subversions' => { 404 => 'SubVersions' },
+ 'subtitle' => { 413 => 'subtitle' },
+ 'subversionfilename' => { 406 => [\'SubVersions','SubVersionsFileName'] },
+ 'subversionreference' => { 406 => [\'SubVersions','SubVersionsVersRef'] },
+ 'subversions' => { 406 => 'SubVersions' },
'superimposeddisplay' => { 71 => 0xa, 73 => 0x510, 74 => 0x9, 75 => 0xa, 78 => 0xa, 79 => 0xe },
'supermacro' => { 55 => 0x1a },
- 'supplementalcategories' => { 113 => 0x14, 408 => 'SupplementalCategories' },
+ 'supplementalcategories' => { 113 => 0x14, 410 => 'SupplementalCategories' },
'supplementaltype' => { 115 => 0x37 },
- 'supplementdisplayid' => { 411 => 'supplementDisplayID' },
- 'supplementstartingpage' => { 411 => 'supplementStartingPage' },
- 'supplementtitle' => { 411 => 'supplementTitle' },
+ 'supplementdisplayid' => { 413 => 'supplementDisplayID' },
+ 'supplementstartingpage' => { 413 => 'supplementStartingPage' },
+ 'supplementtitle' => { 413 => 'supplementTitle' },
'svisosetting' => { 283 => 0x14 },
- 'sweeppanoramadirection' => { 269 => 0x93, 343 => 0x33 },
+ 'sweeppanoramadirection' => { 269 => 0x93, 345 => 0x33 },
'sweeppanoramafieldofview' => { 269 => 0x94 },
- 'sweeppanoramasize' => { 343 => 0x32 },
+ 'sweeppanoramasize' => { 345 => 0x32 },
'switchtoregisteredafpoint' => { 72 => 0x12, 73 => 0x50a },
- 'tagged' => { 311 => 0xdd, 312 => 'Tagged', 390 => 'tagged' },
- 'tagslist' => { 399 => 'TagsList' },
- 'tagstructure' => { 404 => 'TagStructure' },
- 'takenumber' => { 421 => 'takeNumber' },
- 'tapename' => { 421 => 'tapeName' },
+ 'system' => { 311 => 0x204 },
+ 'tagged' => { 313 => 0xdd, 314 => 'Tagged', 392 => 'tagged' },
+ 'tagslist' => { 401 => 'TagsList' },
+ 'tagstructure' => { 406 => 'TagStructure' },
+ 'takenumber' => { 423 => 'takeNumber' },
+ 'tapename' => { 423 => 'tapeName' },
'targetaperture' => { 67 => 0x4 },
'targetcompressionratio' => { 84 => 0x1 },
'targetdistancesetting' => { 86 => 0x1807 },
@@ -4356,97 +4367,97 @@ my %tagLookup = (
'taxontaxonomicstatus' => { 104 => [\'Taxon','TaxonTaxonomicStatus'] },
'taxonverbatimtaxonrank' => { 104 => [\'Taxon','TaxonVerbatimTaxonRank'] },
'taxonvernacularname' => { 104 => [\'Taxon','TaxonVernacularName'] },
- 'teaser' => { 411 => 'teaser' },
- 'teleconverter' => { 162 => 0x105, 353 => 0x105 },
- 'tempo' => { 421 => 'tempo' },
- 'termsandconditionstext' => { 409 => 'TermsAndConditionsText' },
- 'termsandconditionsurl' => { 409 => 'TermsAndConditionsURL' },
+ 'teaser' => { 413 => 'teaser' },
+ 'teleconverter' => { 162 => 0x105, 355 => 0x105 },
+ 'tempo' => { 423 => 'tempo' },
+ 'termsandconditionstext' => { 411 => 'TermsAndConditionsText' },
+ 'termsandconditionsurl' => { 411 => 'TermsAndConditionsURL' },
'testname' => { 106 => 'TestName' },
'textencoding' => { 192 => 0x4 },
- 'textlayername' => { 408 => [\'TextLayers','TextLayersLayerName'] },
- 'textlayers' => { 408 => 'TextLayers' },
- 'textlayertext' => { 408 => [\'TextLayers','TextLayersLayerText'] },
+ 'textlayername' => { 410 => [\'TextLayers','TextLayersLayerName'] },
+ 'textlayers' => { 410 => 'TextLayers' },
+ 'textlayertext' => { 410 => [\'TextLayers','TextLayersLayerText'] },
'textstamp' => { 269 => [0x8008,0x8009,0x3b,0x3e] },
'thresholding' => { 105 => 0x107 },
'thumbnailfilename' => { 86 => 0x817 },
- 'thumbnailformat' => { 419 => [\'Thumbnails','ThumbnailsFormat'] },
- 'thumbnailheight' => { 123 => 0xfa55, 419 => [\'Thumbnails','ThumbnailsHeight'] },
- 'thumbnailimage' => { 86 => 0x2008, 102 => 'ThumbnailImage', 108 => 0x3, 146 => 'data', 254 => 0x100, 419 => [\'Thumbnails','ThumbnailsImage'] },
+ 'thumbnailformat' => { 421 => [\'Thumbnails','ThumbnailsFormat'] },
+ 'thumbnailheight' => { 123 => 0xfa55, 421 => [\'Thumbnails','ThumbnailsHeight'] },
+ 'thumbnailimage' => { 86 => 0x2008, 102 => 'ThumbnailImage', 108 => 0x3, 146 => 'data', 254 => 0x100, 421 => [\'Thumbnails','ThumbnailsImage'] },
'thumbnailimagename' => { 146 => '1Name' },
'thumbnailimagesize' => { 146 => 'ImageSize' },
'thumbnailimagetype' => { 146 => '0Type' },
'thumbnailimagevalidarea' => { 55 => 0x13 },
'thumbnaillength' => { 105 => 0x202 },
'thumbnailoffset' => { 105 => 0x201 },
- 'thumbnails' => { 419 => 'Thumbnails' },
- 'thumbnailwidth' => { 123 => 0xfa54, 419 => [\'Thumbnails','ThumbnailsWidth'] },
- 'ticker' => { 411 => 'ticker' },
- 'tiffmeteringimage' => { 163 => 0x104c, 352 => 0x1110 },
+ 'thumbnails' => { 421 => 'Thumbnails' },
+ 'thumbnailwidth' => { 123 => 0xfa54, 421 => [\'Thumbnails','ThumbnailsWidth'] },
+ 'ticker' => { 413 => 'ticker' },
+ 'tiffmeteringimage' => { 163 => 0x104c, 354 => 0x1110 },
'tilelength' => { 105 => 0x143 },
'tilewidth' => { 105 => 0x142 },
'time' => { 119 => 0x401, 302 => 0x7 },
'timecodes' => { 105 => 0xc763 },
- 'timecreated' => { 113 => 0x3c, 121 => 0x14, 130 => 0x10, 312 => 'TimeCreated' },
- 'timeperiod' => { 411 => 'timePeriod' },
+ 'timecreated' => { 113 => 0x3c, 121 => 0x14, 130 => 0x10, 314 => 'TimeCreated' },
+ 'timeperiod' => { 413 => 'timePeriod' },
'timerfunctionbutton' => { 238 => '5.2', 239 => '12.1', 240 => '13.1' },
'timerlength' => { 73 => 0x80c },
'timerrecording' => { 269 => 0x96 },
- 'timescaleparams' => { 421 => 'timeScaleParams' },
- 'timescaleparamsframeoverlappingpercentage' => { 421 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] },
- 'timescaleparamsframesize' => { 421 => [\'timeScaleParams','timeScaleParamsFrameSize'] },
- 'timescaleparamsquality' => { 421 => [\'timeScaleParams','timeScaleParamsQuality'] },
+ 'timescaleparams' => { 423 => 'timeScaleParams' },
+ 'timescaleparamsframeoverlappingpercentage' => { 423 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] },
+ 'timescaleparamsframesize' => { 423 => [\'timeScaleParams','timeScaleParamsFrameSize'] },
+ 'timescaleparamsquality' => { 423 => [\'timeScaleParams','timeScaleParamsQuality'] },
'timesent' => { 114 => 0x50 },
- 'timesignature' => { 421 => 'timeSignature' },
+ 'timesignature' => { 423 => 'timeSignature' },
'timesincepoweron' => { 269 => 0x29 },
- 'timestamp' => { 10 => 0x45e, 18 => 0x11c, 248 => 0x8, 261 => 'TimeStamp', 391 => 'Timestamp' },
+ 'timestamp' => { 10 => 0x45e, 18 => 0x11c, 248 => 0x8, 261 => 'TimeStamp', 393 => 'Timestamp' },
'timestamp1' => { 10 => 0x45a },
- 'timezone' => { 68 => 0x1, 221 => 0x0, 328 => 0xa },
+ 'timezone' => { 68 => 0x1, 221 => 0x0, 330 => 0xa },
'timezonecity' => { 68 => 0x2 },
'timezonecode' => { 89 => 0x1 },
'timezoneinfo' => { 89 => 0x2 },
'timezoneoffset' => { 105 => 0x882a },
- 'tint' => { 396 => 'Tint' },
- 'title' => { 136 => 'Title', 258 => 'Title', 261 => 'Title', 269 => 0x65, 316 => 'Title', 397 => 'title', 407 => 'Title', 419 => 'Title' },
+ 'tint' => { 398 => 'Tint' },
+ 'title' => { 136 => 'Title', 258 => 'Title', 261 => 'Title', 269 => 0x65, 318 => 'Title', 399 => 'title', 409 => 'Title', 421 => 'Title' },
'tonecomp' => { 193 => 0x81 },
- 'tonecurve' => { 65 => 0x1, 302 => 0x402, 396 => 'ToneCurve' },
+ 'tonecurve' => { 65 => 0x1, 302 => 0x402, 398 => 'ToneCurve' },
'tonecurveactive' => { 96 => 0x110 },
- 'tonecurveadobergb' => { 331 => 0xa043 },
- 'tonecurveadobergbdefault' => { 331 => 0xa041 },
- 'tonecurveblue' => { 396 => 'ToneCurveBlue' },
- 'tonecurvebluex' => { 381 => 0x9003 },
- 'tonecurvebluey' => { 381 => 0x9007 },
+ 'tonecurveadobergb' => { 333 => 0xa043 },
+ 'tonecurveadobergbdefault' => { 333 => 0xa041 },
+ 'tonecurveblue' => { 398 => 'ToneCurveBlue' },
+ 'tonecurvebluex' => { 383 => 0x9003 },
+ 'tonecurvebluey' => { 383 => 0x9007 },
'tonecurvebrightness' => { 91 => 0x20410 },
- 'tonecurvebrightnessx' => { 381 => 0x9000 },
- 'tonecurvebrightnessy' => { 381 => 0x9004 },
+ 'tonecurvebrightnessx' => { 383 => 0x9000 },
+ 'tonecurvebrightnessy' => { 383 => 0x9004 },
'tonecurvecolorspace' => { 95 => 0x0 },
'tonecurvecontrast' => { 91 => 0x20411 },
'tonecurvefilename' => { 119 => 0x1391 },
- 'tonecurvegreen' => { 396 => 'ToneCurveGreen' },
- 'tonecurvegreenx' => { 381 => 0x9002 },
- 'tonecurvegreeny' => { 381 => 0x9006 },
+ 'tonecurvegreen' => { 398 => 'ToneCurveGreen' },
+ 'tonecurvegreenx' => { 383 => 0x9002 },
+ 'tonecurvegreeny' => { 383 => 0x9006 },
'tonecurveinputrange' => { 95 => 0x3 },
'tonecurveinterpolation' => { 96 => 0x159 },
'tonecurvemode' => { 96 => 0x113 },
- 'tonecurvename' => { 396 => 'ToneCurveName' },
- 'tonecurvename2012' => { 396 => 'ToneCurveName2012' },
+ 'tonecurvename' => { 398 => 'ToneCurveName' },
+ 'tonecurvename2012' => { 398 => 'ToneCurveName2012' },
'tonecurveoriginal' => { 91 => '0x20400.1' },
'tonecurveoutputrange' => { 95 => 0x5 },
'tonecurveproperty' => { 96 => 0x3c },
- 'tonecurvepv2012' => { 396 => 'ToneCurvePV2012' },
- 'tonecurvepv2012blue' => { 396 => 'ToneCurvePV2012Blue' },
- 'tonecurvepv2012green' => { 396 => 'ToneCurvePV2012Green' },
- 'tonecurvepv2012red' => { 396 => 'ToneCurvePV2012Red' },
- 'tonecurvered' => { 396 => 'ToneCurveRed' },
- 'tonecurveredx' => { 381 => 0x9001 },
- 'tonecurveredy' => { 381 => 0x9005 },
+ 'tonecurvepv2012' => { 398 => 'ToneCurvePV2012' },
+ 'tonecurvepv2012blue' => { 398 => 'ToneCurvePV2012Blue' },
+ 'tonecurvepv2012green' => { 398 => 'ToneCurvePV2012Green' },
+ 'tonecurvepv2012red' => { 398 => 'ToneCurvePV2012Red' },
+ 'tonecurvered' => { 398 => 'ToneCurveRed' },
+ 'tonecurveredx' => { 383 => 0x9001 },
+ 'tonecurveredy' => { 383 => 0x9005 },
'tonecurves' => { 302 => 0x403 },
'tonecurveshape' => { 95 => 0x1 },
- 'tonecurvesrgb' => { 331 => 0xa042 },
- 'tonecurvesrgbdefault' => { 331 => 0xa040 },
+ 'tonecurvesrgb' => { 333 => 0xa042 },
+ 'tonecurvesrgbdefault' => { 333 => 0xa040 },
'tonecurvex' => { 95 => 0xa },
'tonecurvey' => { 95 => 0xb },
'tonelevel' => { 249 => 0x52e },
- 'toningeffect' => { 49 => 0xf, 193 => 0xb3, 195 => 0x38, 325 => 0x1015 },
+ 'toningeffect' => { 49 => 0xf, 193 => 0xb3, 195 => 0x38, 327 => 0x1015 },
'toningeffectauto' => { 62 => 0xa4 },
'toningeffectfaithful' => { 61 => 0x74, 62 => 0x74 },
'toningeffectlandscape' => { 61 => 0x44, 62 => 0x44 },
@@ -4460,35 +4471,35 @@ my %tagLookup = (
'toningsaturation' => { 195 => 0x39 },
'totalzoom' => { 121 => 0x62 },
'touchae' => { 269 => 0xab },
- 'trackcreatedate' => { 320 => 0x1 },
- 'trackmodifydate' => { 320 => 0x2 },
- 'tracknumber' => { 421 => 'trackNumber' },
- 'tracks' => { 421 => 'Tracks' },
- 'tracksframerate' => { 421 => [\'Tracks','TracksFrameRate'] },
- 'tracksmarkers' => { 421 => [\'Tracks','TracksMarkers'] },
- 'tracksmarkerscomment' => { 421 => [\'Tracks','TracksMarkersComment'] },
- 'tracksmarkerscuepointparams' => { 421 => [\'Tracks','TracksMarkersCuePointParams'] },
- 'tracksmarkerscuepointparamskey' => { 421 => [\'Tracks','TracksMarkersCuePointParamsKey'] },
- 'tracksmarkerscuepointparamsvalue' => { 421 => [\'Tracks','TracksMarkersCuePointParamsValue'] },
- 'tracksmarkerscuepointtype' => { 421 => [\'Tracks','TracksMarkersCuePointType'] },
- 'tracksmarkersduration' => { 421 => [\'Tracks','TracksMarkersDuration'] },
- 'tracksmarkerslocation' => { 421 => [\'Tracks','TracksMarkersLocation'] },
- 'tracksmarkersname' => { 421 => [\'Tracks','TracksMarkersName'] },
- 'tracksmarkersprobability' => { 421 => [\'Tracks','TracksMarkersProbability'] },
- 'tracksmarkersspeaker' => { 421 => [\'Tracks','TracksMarkersSpeaker'] },
- 'tracksmarkersstarttime' => { 421 => [\'Tracks','TracksMarkersStartTime'] },
- 'tracksmarkerstarget' => { 421 => [\'Tracks','TracksMarkersTarget'] },
- 'tracksmarkerstype' => { 421 => [\'Tracks','TracksMarkersType'] },
- 'trackstrackname' => { 421 => [\'Tracks','TracksTrackName'] },
- 'trackstracktype' => { 421 => [\'Tracks','TracksTrackType'] },
+ 'trackcreatedate' => { 322 => 0x1 },
+ 'trackmodifydate' => { 322 => 0x2 },
+ 'tracknumber' => { 423 => 'trackNumber' },
+ 'tracks' => { 423 => 'Tracks' },
+ 'tracksframerate' => { 423 => [\'Tracks','TracksFrameRate'] },
+ 'tracksmarkers' => { 423 => [\'Tracks','TracksMarkers'] },
+ 'tracksmarkerscomment' => { 423 => [\'Tracks','TracksMarkersComment'] },
+ 'tracksmarkerscuepointparams' => { 423 => [\'Tracks','TracksMarkersCuePointParams'] },
+ 'tracksmarkerscuepointparamskey' => { 423 => [\'Tracks','TracksMarkersCuePointParamsKey'] },
+ 'tracksmarkerscuepointparamsvalue' => { 423 => [\'Tracks','TracksMarkersCuePointParamsValue'] },
+ 'tracksmarkerscuepointtype' => { 423 => [\'Tracks','TracksMarkersCuePointType'] },
+ 'tracksmarkersduration' => { 423 => [\'Tracks','TracksMarkersDuration'] },
+ 'tracksmarkerslocation' => { 423 => [\'Tracks','TracksMarkersLocation'] },
+ 'tracksmarkersname' => { 423 => [\'Tracks','TracksMarkersName'] },
+ 'tracksmarkersprobability' => { 423 => [\'Tracks','TracksMarkersProbability'] },
+ 'tracksmarkersspeaker' => { 423 => [\'Tracks','TracksMarkersSpeaker'] },
+ 'tracksmarkersstarttime' => { 423 => [\'Tracks','TracksMarkersStartTime'] },
+ 'tracksmarkerstarget' => { 423 => [\'Tracks','TracksMarkersTarget'] },
+ 'tracksmarkerstype' => { 423 => [\'Tracks','TracksMarkersType'] },
+ 'trackstrackname' => { 423 => [\'Tracks','TracksTrackName'] },
+ 'trackstracktype' => { 423 => [\'Tracks','TracksTrackType'] },
'trailersignature' => { 143 => 'zmie' },
- 'transferfunction' => { 105 => 0x12d, 417 => 'TransferFunction' },
+ 'transferfunction' => { 105 => 0x12d, 419 => 'TransferFunction' },
'transform' => { 269 => [0x8012,0x59] },
- 'transmissionreference' => { 408 => 'TransmissionReference' },
- 'trapped' => { 258 => 'Trapped', 407 => 'Trapped' },
+ 'transmissionreference' => { 410 => 'TransmissionReference' },
+ 'trapped' => { 258 => 'Trapped', 409 => 'Trapped' },
'trashbuttonfunction' => { 73 => 0x710 },
'travelday' => { 269 => 0x36 },
- 'triggermode' => { 321 => 0x6 },
+ 'triggermode' => { 323 => 0x6 },
'tstop' => { 105 => 0xc772 },
'ttl_da_adown' => { 290 => 0x5 },
'ttl_da_aup' => { 290 => 0x4 },
@@ -4496,7 +4507,7 @@ my %tagLookup = (
'ttl_da_bup' => { 290 => 0x6 },
'tungstenawb' => { 280 => 0x1 },
'tvexposuretimesetting' => { 283 => 0x12 },
- 'type' => { 397 => 'type', 416 => 'type' },
+ 'type' => { 399 => 'type', 418 => 'type' },
'typestatus' => { 104 => [\'Identification','IdentificationTypeStatus'] },
'uniquecameramodel' => { 105 => 0xc614 },
'uniquedocumentid' => { 113 => 0xbb },
@@ -4507,6 +4518,7 @@ my %tagLookup = (
'unknownblock3' => { 253 => 0x1103 },
'unknownblock4' => { 253 => 0x1104 },
'unknowncontrast' => { 97 => 0x45 },
+ 'unknowndate' => { 311 => 0x212 },
'unknownev' => { 119 => 0x1 },
'unknownlinear' => { 97 => 0x46 },
'unknownnumber' => { 86 => 0x180b },
@@ -4539,39 +4551,39 @@ my %tagLookup = (
'unsharpmaskfineness' => { 91 => 0x20309 },
'unsharpmaskstrength' => { 91 => 0x20308 },
'unsharpmaskthreshold' => { 91 => 0x2030a },
- 'uprightcentermode' => { 396 => 'UprightCenterMode' },
- 'uprightcenternormx' => { 396 => 'UprightCenterNormX' },
- 'uprightcenternormy' => { 396 => 'UprightCenterNormY' },
- 'uprightdependentdigest' => { 396 => 'UprightDependentDigest' },
- 'uprightfocallength35mm' => { 396 => 'UprightFocalLength35mm' },
- 'uprightfocalmode' => { 396 => 'UprightFocalMode' },
- 'uprightpreview' => { 396 => 'UprightPreview' },
- 'uprighttransform_0' => { 396 => 'UprightTransform_0' },
- 'uprighttransform_1' => { 396 => 'UprightTransform_1' },
- 'uprighttransform_2' => { 396 => 'UprightTransform_2' },
- 'uprighttransform_3' => { 396 => 'UprightTransform_3' },
- 'uprighttransform_4' => { 396 => 'UprightTransform_4' },
- 'uprighttransformcount' => { 396 => 'UprightTransformCount' },
- 'uprightversion' => { 396 => 'UprightVersion' },
- 'urgency' => { 113 => 0xa, 408 => 'Urgency' },
- 'url' => { 136 => 'URL', 261 => 'URL', 314 => 0x40b, 411 => 'url' },
- 'urla-platform' => { 411 => [\'url','urlA-platform'] },
- 'urlurl' => { 411 => [\'url','urlUrl'] },
+ 'uprightcentermode' => { 398 => 'UprightCenterMode' },
+ 'uprightcenternormx' => { 398 => 'UprightCenterNormX' },
+ 'uprightcenternormy' => { 398 => 'UprightCenterNormY' },
+ 'uprightdependentdigest' => { 398 => 'UprightDependentDigest' },
+ 'uprightfocallength35mm' => { 398 => 'UprightFocalLength35mm' },
+ 'uprightfocalmode' => { 398 => 'UprightFocalMode' },
+ 'uprightpreview' => { 398 => 'UprightPreview' },
+ 'uprighttransform_0' => { 398 => 'UprightTransform_0' },
+ 'uprighttransform_1' => { 398 => 'UprightTransform_1' },
+ 'uprighttransform_2' => { 398 => 'UprightTransform_2' },
+ 'uprighttransform_3' => { 398 => 'UprightTransform_3' },
+ 'uprighttransform_4' => { 398 => 'UprightTransform_4' },
+ 'uprighttransformcount' => { 398 => 'UprightTransformCount' },
+ 'uprightversion' => { 398 => 'UprightVersion' },
+ 'urgency' => { 113 => 0xa, 410 => 'Urgency' },
+ 'url' => { 136 => 'URL', 261 => 'URL', 316 => 0x40b, 413 => 'url' },
+ 'urla-platform' => { 413 => [\'url','urlA-platform'] },
+ 'urlurl' => { 413 => [\'url','urlUrl'] },
'usablemeteringmodes' => { 73 => 0x10a },
'usableshootingmodes' => { 73 => 0x109 },
- 'usage' => { 412 => 'usage' },
- 'usageterms' => { 425 => 'UsageTerms' },
- 'useguidelines' => { 393 => 'useGuidelines' },
- 'usepanoramaviewer' => { 385 => 'UsePanoramaViewer' },
- 'usercomment' => { 86 => 0x805, 105 => 0x9286, 400 => 'UserComment' },
+ 'usage' => { 414 => 'usage' },
+ 'usageterms' => { 427 => 'UsageTerms' },
+ 'useguidelines' => { 395 => 'useGuidelines' },
+ 'usepanoramaviewer' => { 387 => 'UsePanoramaViewer' },
+ 'usercomment' => { 86 => 0x805, 105 => 0x9286, 402 => 'UserComment' },
'userdef1picturestyle' => { 18 => 0x10c, 61 => 0xd8, 62 => 0xf0 },
'userdef2picturestyle' => { 18 => 0x10e, 61 => 0xda, 62 => 0xf2 },
'userdef3picturestyle' => { 18 => 0x110, 61 => 0xdc, 62 => 0xf4 },
- 'userfields' => { 388 => 'UserFields' },
- 'userlabel' => { 321 => 0x2b },
+ 'userfields' => { 390 => 'UserFields' },
+ 'userlabel' => { 323 => 0x2b },
'userprofile' => { 265 => 0x302, 271 => 0x3038 },
'usmlenselectronicmf' => { 72 => 0x7, 73 => 0x501 },
- 'uspsnumber' => { 411 => 'uspsNumber' },
+ 'uspsnumber' => { 413 => 'uspsNumber' },
'utmeasting' => { 147 => 'Easting' },
'utmmapdatum' => { 147 => 'Datum' },
'utmnorthing' => { 147 => 'Northing' },
@@ -4582,78 +4594,78 @@ my %tagLookup = (
'variousmodes' => { 121 => 0x26 },
'variousmodes2' => { 121 => 0x3a },
'variprogram' => { 193 => 0xab },
- 'version' => { 110 => 0x0, 316 => 'Version', 396 => 'Version' },
- 'versioncreatedate' => { 381 => 0xd100 },
- 'versionid' => { 422 => 'VersionID' },
- 'versionidentifier' => { 411 => 'versionIdentifier' },
- 'versionmodifydate' => { 381 => 0xd101 },
- 'versions' => { 422 => 'Versions' },
- 'versionscomments' => { 422 => [\'Versions','VersionsComments'] },
- 'versionsevent' => { 422 => [\'Versions','VersionsEvent'] },
- 'versionseventaction' => { 422 => [\'Versions','VersionsEventAction'] },
- 'versionseventchanged' => { 422 => [\'Versions','VersionsEventChanged'] },
- 'versionseventinstanceid' => { 422 => [\'Versions','VersionsEventInstanceID'] },
- 'versionseventparameters' => { 422 => [\'Versions','VersionsEventParameters'] },
- 'versionseventsoftwareagent' => { 422 => [\'Versions','VersionsEventSoftwareAgent'] },
- 'versionseventwhen' => { 422 => [\'Versions','VersionsEventWhen'] },
- 'versionsmodifier' => { 422 => [\'Versions','VersionsModifier'] },
- 'versionsmodifydate' => { 422 => [\'Versions','VersionsModifyDate'] },
- 'versionsversion' => { 422 => [\'Versions','VersionsVersion'] },
+ 'version' => { 110 => 0x0, 318 => 'Version', 398 => 'Version' },
+ 'versioncreatedate' => { 383 => 0xd100 },
+ 'versionid' => { 424 => 'VersionID' },
+ 'versionidentifier' => { 413 => 'versionIdentifier' },
+ 'versionmodifydate' => { 383 => 0xd101 },
+ 'versions' => { 424 => 'Versions' },
+ 'versionscomments' => { 424 => [\'Versions','VersionsComments'] },
+ 'versionsevent' => { 424 => [\'Versions','VersionsEvent'] },
+ 'versionseventaction' => { 424 => [\'Versions','VersionsEventAction'] },
+ 'versionseventchanged' => { 424 => [\'Versions','VersionsEventChanged'] },
+ 'versionseventinstanceid' => { 424 => [\'Versions','VersionsEventInstanceID'] },
+ 'versionseventparameters' => { 424 => [\'Versions','VersionsEventParameters'] },
+ 'versionseventsoftwareagent' => { 424 => [\'Versions','VersionsEventSoftwareAgent'] },
+ 'versionseventwhen' => { 424 => [\'Versions','VersionsEventWhen'] },
+ 'versionsmodifier' => { 424 => [\'Versions','VersionsModifier'] },
+ 'versionsmodifydate' => { 424 => [\'Versions','VersionsModifyDate'] },
+ 'versionsversion' => { 424 => [\'Versions','VersionsVersion'] },
'verticalafonbutton' => { 236 => '3.2', 237 => '47.2' },
'verticalfuncbutton' => { 237 => '42.2' },
'verticalfuncbuttonplusdials' => { 237 => '43.1' },
'verticalmultiselector' => { 237 => '42.1' },
'vfdisplayillumination' => { 73 => 0x510 },
- 'vibrance' => { 389 => 'Vibrance', 396 => 'Vibrance' },
+ 'vibrance' => { 391 => 'Vibrance', 398 => 'Vibrance' },
'vibrationreduction' => { 200 => [0x75,0x82,0x1ae], 208 => '586.1', 215 => '590.2', 220 => 0x4 },
- 'videoalphamode' => { 421 => 'videoAlphaMode' },
- 'videoalphapremultiplecolor' => { 421 => 'videoAlphaPremultipleColor' },
- 'videoalphapremultiplecolora' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] },
- 'videoalphapremultiplecolorb' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] },
- 'videoalphapremultiplecolorblack' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] },
- 'videoalphapremultiplecolorblue' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] },
- 'videoalphapremultiplecolorcyan' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] },
- 'videoalphapremultiplecolorgreen' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] },
- 'videoalphapremultiplecolorl' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] },
- 'videoalphapremultiplecolormagenta' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] },
- 'videoalphapremultiplecolormode' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] },
- 'videoalphapremultiplecolorred' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] },
- 'videoalphapremultiplecolorswatchname' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] },
- 'videoalphapremultiplecolortint' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] },
- 'videoalphapremultiplecolortype' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] },
- 'videoalphapremultiplecoloryellow' => { 421 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] },
- 'videoalphaunityistransparent' => { 421 => 'videoAlphaUnityIsTransparent' },
+ 'videoalphamode' => { 423 => 'videoAlphaMode' },
+ 'videoalphapremultiplecolor' => { 423 => 'videoAlphaPremultipleColor' },
+ 'videoalphapremultiplecolora' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] },
+ 'videoalphapremultiplecolorb' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] },
+ 'videoalphapremultiplecolorblack' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] },
+ 'videoalphapremultiplecolorblue' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] },
+ 'videoalphapremultiplecolorcyan' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] },
+ 'videoalphapremultiplecolorgreen' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] },
+ 'videoalphapremultiplecolorl' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] },
+ 'videoalphapremultiplecolormagenta' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] },
+ 'videoalphapremultiplecolormode' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] },
+ 'videoalphapremultiplecolorred' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] },
+ 'videoalphapremultiplecolorswatchname' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] },
+ 'videoalphapremultiplecolortint' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] },
+ 'videoalphapremultiplecolortype' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] },
+ 'videoalphapremultiplecoloryellow' => { 423 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] },
+ 'videoalphaunityistransparent' => { 423 => 'videoAlphaUnityIsTransparent' },
'videocodec' => { 58 => 0x74 },
- 'videocolorspace' => { 421 => 'videoColorSpace' },
- 'videocompressor' => { 421 => 'videoCompressor' },
- 'videofieldorder' => { 421 => 'videoFieldOrder' },
- 'videoframerate' => { 421 => 'videoFrameRate' },
- 'videoframesize' => { 421 => 'videoFrameSize' },
- 'videoframesizeh' => { 421 => [\'videoFrameSize','videoFrameSizeH'] },
- 'videoframesizeunit' => { 421 => [\'videoFrameSize','videoFrameSizeUnit'] },
- 'videoframesizew' => { 421 => [\'videoFrameSize','videoFrameSizeW'] },
- 'videomoddate' => { 421 => 'videoModDate' },
- 'videopixelaspectratio' => { 421 => 'videoPixelAspectRatio' },
- 'videopixeldepth' => { 421 => 'videoPixelDepth' },
+ 'videocolorspace' => { 423 => 'videoColorSpace' },
+ 'videocompressor' => { 423 => 'videoCompressor' },
+ 'videofieldorder' => { 423 => 'videoFieldOrder' },
+ 'videoframerate' => { 423 => 'videoFrameRate' },
+ 'videoframesize' => { 423 => 'videoFrameSize' },
+ 'videoframesizeh' => { 423 => [\'videoFrameSize','videoFrameSizeH'] },
+ 'videoframesizeunit' => { 423 => [\'videoFrameSize','videoFrameSizeUnit'] },
+ 'videoframesizew' => { 423 => [\'videoFrameSize','videoFrameSizeW'] },
+ 'videomoddate' => { 423 => 'videoModDate' },
+ 'videopixelaspectratio' => { 423 => 'videoPixelAspectRatio' },
+ 'videopixeldepth' => { 423 => 'videoPixelDepth' },
'videoquality' => { 101 => 0x4003 },
'viewfinderdisplay' => { 236 => '12.4', 237 => '6.3' },
'viewfinderwarning' => { 236 => '13.4', 243 => '3.5', 244 => '6.2', 247 => '4.4' },
'viewfinderwarnings' => { 73 => 0x40a },
'viewinfoduringexposure' => { 73 => 0x407 },
- 'viewingmode' => { 343 => 0x2f, 357 => 0x18 },
- 'viewingmode2' => { 343 => [0x85,0x285] },
- 'viewpoint' => { 410 => 'viewpoint' },
- 'vignetteamount' => { 396 => 'VignetteAmount' },
+ 'viewingmode' => { 345 => 0x2f, 359 => 0x18 },
+ 'viewingmode2' => { 345 => [0x85,0x285] },
+ 'viewpoint' => { 412 => 'viewpoint' },
+ 'vignetteamount' => { 398 => 'VignetteAmount' },
'vignettecontrol' => { 193 => 0x2a, 229 => 0x76a43205 },
'vignettecontrolintensity' => { 229 => 0xac6bd5c0 },
- 'vignettecorrectionalreadyapplied' => { 392 => 'VignetteCorrectionAlreadyApplied' },
- 'vignettemidpoint' => { 396 => 'VignetteMidpoint' },
- 'vignetting' => { 325 => 0x1011, 331 => 0xa052 },
- 'vignettingcorrection' => { 331 => 0xa053, 353 => 0x2011 },
- 'vignettingsetting' => { 331 => 0xa054 },
- 'visualtechnique' => { 410 => 'visualTechnique' },
- 'voicememo' => { 333 => 0x216 },
- 'volume' => { 411 => 'volume' },
+ 'vignettecorrectionalreadyapplied' => { 394 => 'VignetteCorrectionAlreadyApplied' },
+ 'vignettemidpoint' => { 398 => 'VignetteMidpoint' },
+ 'vignetting' => { 327 => 0x1011, 333 => 0xa052 },
+ 'vignettingcorrection' => { 333 => 0xa053, 355 => 0x2011 },
+ 'vignettingsetting' => { 333 => 0xa054 },
+ 'visualtechnique' => { 412 => 'visualTechnique' },
+ 'voicememo' => { 335 => 0x216 },
+ 'volume' => { 413 => 'volume' },
'vr_0x66' => { 200 => 0x66 },
'vrdoffset' => { 55 => 0xd0 },
'vrmode' => { 220 => 0x6 },
@@ -4739,7 +4751,7 @@ my %tagLookup = (
'wb_redlevelsshade' => { 163 => 0x168 },
'wb_redlevelstungsten' => { 163 => 0xc0 },
'wb_rgbglevels' => { 175 => 0x0 },
- 'wb_rgblevels' => { 163 => [0x546,0x96], 266 => 0xd, 267 => 0x413, 271 => 0x3036, 360 => 0x117c, 361 => 0x1180, 362 => 0x115c, 363 => 0x11d8, 364 => 0x11b4, 365 => 0x106c, 366 => 0x264, 367 => 0x264 },
+ 'wb_rgblevels' => { 163 => [0x546,0x96], 266 => 0xd, 267 => 0x413, 271 => 0x3036, 311 => 0x107, 362 => 0x117c, 363 => 0x1180, 364 => 0x115c, 365 => 0x11d8, 366 => 0x11b4, 367 => 0x106c, 368 => 0x264, 369 => 0x264 },
'wb_rgblevels1' => { 275 => 0x2 },
'wb_rgblevels2' => { 275 => 0x6 },
'wb_rgblevels3' => { 275 => 0xa },
@@ -4750,8 +4762,8 @@ my %tagLookup = (
'wb_rggbblacklevels' => { 32 => 0x25 },
'wb_rggblevels' => { 166 => 0x4, 174 => 0x0 },
'wb_rggblevelsasshot' => { 34 => 0x0, 35 => 0x19, 36 => 0x22, 37 => 0x3f, 40 => 0x3f, 41 => 0x3f, 42 => 0x3f },
- 'wb_rggblevelsauto' => { 32 => 0x1, 34 => 0x5, 35 => 0x1e, 36 => 0x18, 37 => 0x44, 40 => 0x44, 41 => 0x44, 42 => 0x44, 331 => 0xa022 },
- 'wb_rggblevelsblack' => { 331 => 0xa028 },
+ 'wb_rggblevelsauto' => { 32 => 0x1, 34 => 0x5, 35 => 0x1e, 36 => 0x18, 37 => 0x44, 40 => 0x44, 41 => 0x44, 42 => 0x44, 333 => 0xa022 },
+ 'wb_rggblevelsblack' => { 333 => 0xa028 },
'wb_rggblevelscloudy' => { 32 => 0xd, 34 => 0x1e, 35 => 0x2d, 36 => 0x31, 37 => 0x58, 40 => 0x71, 41 => 0x8a, 42 => 0x8f, 302 => 0x20f, 310 => 0x14 },
'wb_rggblevelscustom' => { 32 => 0x1d, 37 => 0x80 },
'wb_rggblevelscustom1' => { 35 => 0x41 },
@@ -4763,8 +4775,8 @@ my %tagLookup = (
'wb_rggblevelsfluorescentl' => { 310 => 0x4a },
'wb_rggblevelsfluorescentn' => { 302 => 0x212, 310 => 0x2f },
'wb_rggblevelsfluorescentw' => { 302 => 0x213, 310 => 0x38 },
- 'wb_rggblevelsilluminator1' => { 331 => 0xa023 },
- 'wb_rggblevelsilluminator2' => { 331 => 0xa024 },
+ 'wb_rggblevelsilluminator1' => { 333 => 0xa023 },
+ 'wb_rggblevelsilluminator2' => { 333 => 0xa024 },
'wb_rggblevelskelvin' => { 32 => 0x21, 34 => 0x2d, 36 => 0x40, 37 => 0x67, 40 => 0x80, 41 => 0x99, 42 => 0x9e },
'wb_rggblevelsmeasured' => { 34 => 0xa, 37 => 0x49, 40 => 0x49, 41 => 0x49, 42 => 0x49 },
'wb_rggblevelspc1' => { 36 => 0x90, 37 => 0x71 },
@@ -4772,7 +4784,7 @@ my %tagLookup = (
'wb_rggblevelspc3' => { 36 => 0x9a, 37 => 0x7b },
'wb_rggblevelsshade' => { 32 => 0x9, 34 => 0x19, 35 => 0x28, 36 => 0x2c, 37 => 0x53, 40 => 0x6c, 41 => 0x85, 42 => 0x8a, 302 => 0x20e, 310 => 0xb },
'wb_rggblevelstungsten' => { 32 => 0x11, 34 => 0x23, 35 => 0x32, 36 => 0x36, 37 => 0x5d, 40 => 0x76, 41 => 0x8f, 42 => 0x94, 302 => 0x210, 310 => 0x1d },
- 'wb_rggblevelsuncorrected' => { 331 => 0xa021 },
+ 'wb_rggblevelsuncorrected' => { 333 => 0xa021 },
'wb_rggblevelsunknown' => { 34 => 0xf, 36 => 0x1d, 40 => 0x4e, 41 => 0x4e, 42 => 0x4e, 310 => 0x53 },
'wb_rggblevelsunknown10' => { 34 => 0x5f, 36 => 0x72, 40 => 0x9e, 41 => 0x7b, 42 => 0x7b },
'wb_rggblevelsunknown11' => { 34 => 0x64, 36 => 0x77, 40 => 0xa3, 41 => 0xa3, 42 => 0x80 },
@@ -4816,7 +4828,7 @@ my %tagLookup = (
'wbadjtint' => { 235 => 0x25 },
'wbbluelevel' => { 265 => 0x324, 269 => 0x8006, 273 => 0x26 },
'wbbracketmode' => { 49 => 0x9 },
- 'wbbracketshotnumber' => { 163 => 0x2b, 325 => 0x101a },
+ 'wbbracketshotnumber' => { 163 => 0x2b, 327 => 0x101a },
'wbbracketvalueab' => { 49 => 0xc },
'wbbracketvaluegm' => { 49 => 0xd },
'wbfinetuneactive' => { 96 => 0x24 },
@@ -4828,7 +4840,7 @@ my %tagLookup = (
'wbredlevel' => { 265 => 0x322, 269 => 0x8004, 273 => 0x24 },
'wbscale' => { 166 => 0x0 },
'wbshiftab' => { 65 => 0xc, 269 => 0x46, 284 => 0x10 },
- 'wbshiftab_gm' => { 353 => 0x2014 },
+ 'wbshiftab_gm' => { 355 => 0x2014 },
'wbshiftgm' => { 65 => 0xd, 269 => 0x47, 284 => 0x11 },
'wbtype1' => { 274 => 0x1, 275 => 0x1 },
'wbtype2' => { 274 => 0x4, 275 => 0x5 },
@@ -4837,9 +4849,9 @@ my %tagLookup = (
'wbtype5' => { 274 => 0xd, 275 => 0x11 },
'wbtype6' => { 274 => 0x10, 275 => 0x15 },
'wbtype7' => { 274 => 0x13, 275 => 0x19 },
- 'webstatement' => { 425 => 'WebStatement' },
- 'what' => { 396 => 'What' },
- 'whitebalance' => { 6 => 0x6f, 7 => [0x44,0x4a], 8 => 0xbc, 9 => 0x36, 10 => 0x5e, 11 => 0x36, 12 => 0x78, 13 => 0x6f, 14 => 0x6f, 15 => 0x73, 16 => 0x6f, 17 => 0x78, 18 => 0x54, 19 => 0x6f, 20 => 0xbc, 21 => 0x7b, 23 => 0xbc, 24 => 0xc2, 26 => 0x77, 65 => 0x8, 67 => 0x7, 100 => 0x7, 101 => [0x19,0x2012], 105 => [0xa403,0xfe4e], 110 => 0x1002, 119 => 0x3fc, 120 => 0xfa0d, 121 => 0x40, 157 => 0x3, 158 => 0xe, 159 => 0x4, 160 => 0xb, 162 => 0x115, 193 => 0x5, 219 => 0x7, 265 => 0x304, 269 => 0x3, 271 => 0x3033, 302 => 0x19, 309 => 0x7, 324 => 0x26, 325 => 0x1003, 334 => [0x3c,0x7,0x58], 341 => 0xf, 342 => 0xe, 353 => [0x115,0xb054], 396 => 'WhiteBalance', 400 => 'WhiteBalance' },
+ 'webstatement' => { 427 => 'WebStatement' },
+ 'what' => { 398 => 'What' },
+ 'whitebalance' => { 6 => 0x6f, 7 => [0x44,0x4a], 8 => 0xbc, 9 => 0x36, 10 => 0x5e, 11 => 0x36, 12 => 0x78, 13 => 0x6f, 14 => 0x6f, 15 => 0x73, 16 => 0x6f, 17 => 0x78, 18 => 0x54, 19 => 0x6f, 20 => 0xbc, 21 => 0x7b, 23 => 0xbc, 24 => 0xc2, 26 => 0x77, 65 => 0x8, 67 => 0x7, 100 => 0x7, 101 => [0x19,0x2012], 105 => [0xa403,0xfe4e], 110 => 0x1002, 119 => 0x3fc, 120 => 0xfa0d, 121 => 0x40, 157 => 0x3, 158 => 0xe, 159 => 0x4, 160 => 0xb, 162 => 0x115, 193 => 0x5, 219 => 0x7, 265 => 0x304, 269 => 0x3, 271 => 0x3033, 302 => 0x19, 309 => 0x7, 326 => 0x26, 327 => 0x1003, 336 => [0x3c,0x7,0x58], 343 => 0xf, 344 => 0xe, 355 => [0x115,0xb054], 398 => 'WhiteBalance', 402 => 'WhiteBalance' },
'whitebalance0' => { 153 => 'WhiteBalance0' },
'whitebalance1' => { 153 => 'WhiteBalance1' },
'whitebalance2' => { 153 => 'WhiteBalance2', 249 => 0x500 },
@@ -4848,54 +4860,54 @@ my %tagLookup = (
'whitebalancebias' => { 101 => 0x2011, 254 => 0x304, 269 => 0x23 },
'whitebalanceblue' => { 65 => 0x7 },
'whitebalancebracket' => { 249 => 0x502, 254 => 0x303 },
- 'whitebalancebracketing' => { 160 => 0x22, 163 => 0x2c, 352 => 0x2c },
+ 'whitebalancebracketing' => { 160 => 0x22, 163 => 0x2c, 354 => 0x2c },
'whitebalancecomp' => { 257 => 0x1001 },
- 'whitebalancefinetune' => { 110 => 0x100a, 160 => 0x38, 162 => 0x112, 193 => 0xb, 325 => 0x1004, 341 => 0x6, 342 => 0x5, 353 => 0x112 },
+ 'whitebalancefinetune' => { 110 => 0x100a, 160 => 0x38, 162 => 0x112, 193 => 0xb, 327 => 0x1004, 343 => 0x6, 344 => 0x5, 355 => 0x112 },
'whitebalancemode' => { 302 => 0x1a },
'whitebalancered' => { 65 => 0x6 },
'whitebalanceset' => { 283 => 0xa },
- 'whitebalancesetting' => { 160 => 0x23, 341 => 0x5, 342 => 0x4, 343 => 0x16, 357 => 0xd },
+ 'whitebalancesetting' => { 160 => 0x23, 343 => 0x5, 344 => 0x4, 345 => 0x16, 359 => 0xd },
'whitebalancetemperature' => { 249 => 0x501 },
'whiteboard' => { 254 => 0x301 },
'whitelevel' => { 105 => 0xc61d, 302 => 0x7e },
- 'whitepoint' => { 105 => 0x13e, 302 => 0x201, 417 => 'WhitePoint' },
- 'whites2012' => { 396 => 'Whites2012' },
- 'wideadapter' => { 325 => 0x1017 },
+ 'whitepoint' => { 105 => 0x13e, 302 => 0x201, 419 => 'WhitePoint' },
+ 'whites2012' => { 398 => 'Whites2012' },
+ 'wideadapter' => { 327 => 0x1017 },
'widefocuszone' => { 157 => 0x2f },
- 'widerange' => { 333 => 0x20f },
- 'windowsatom' => { 395 => 'windowsAtom' },
- 'windowsatomextension' => { 395 => [\'windowsAtom','windowsAtomExtension'] },
- 'windowsatominvocationflags' => { 395 => [\'windowsAtom','windowsAtomInvocationFlags'] },
- 'windowsatomuncprojectpath' => { 395 => [\'windowsAtom','windowsAtomUncProjectPath'] },
- 'wordcount' => { 411 => 'wordCount' },
+ 'widerange' => { 335 => 0x20f },
+ 'windowsatom' => { 397 => 'windowsAtom' },
+ 'windowsatomextension' => { 397 => [\'windowsAtom','windowsAtomExtension'] },
+ 'windowsatominvocationflags' => { 397 => [\'windowsAtom','windowsAtomInvocationFlags'] },
+ 'windowsatomuncprojectpath' => { 397 => [\'windowsAtom','windowsAtomUncProjectPath'] },
+ 'wordcount' => { 413 => 'wordCount' },
'workcolorspace' => { 91 => 0x10200, 96 => 0x270 },
- 'worktodo' => { 402 => 'WorkToDo' },
+ 'worktodo' => { 404 => 'WorkToDo' },
'worldtimelocation' => { 269 => 0x3a, 302 => 0x22, 308 => '0.1' },
'writer-editor' => { 113 => 0x7a },
- 'x3filllight' => { 334 => 0x12 },
+ 'x3filllight' => { 336 => 0x12 },
'xml' => { 117 => 'xml ' },
'xmp' => { 94 => 0xffff00f6, 106 => 'XMP' },
- 'xmptoolkit' => { 418 => 'xmptk' },
+ 'xmptoolkit' => { 420 => 'xmptk' },
'xpauthor' => { 105 => 0x9c9d },
'xpcomment' => { 105 => 0x9c9c },
'xpkeywords' => { 105 => 0x9c9e },
'xposition' => { 105 => 0x11e },
'xpsubject' => { 105 => 0x9c9f },
'xptitle' => { 105 => 0x9c9b },
- 'xresolution' => { 105 => 0x11a, 116 => 0x3, 315 => 0x0, 417 => 'XResolution' },
+ 'xresolution' => { 105 => 0x11a, 116 => 0x3, 317 => 0x0, 419 => 'XResolution' },
'xyresolution' => { 109 => 0x3 },
'yawangle' => { 209 => 0x3513 },
- 'ycbcrcoefficients' => { 105 => 0x211, 417 => 'YCbCrCoefficients' },
- 'ycbcrpositioning' => { 105 => 0x213, 417 => 'YCbCrPositioning' },
- 'ycbcrsubsampling' => { 105 => 0x212, 417 => 'YCbCrSubSampling' },
+ 'ycbcrcoefficients' => { 105 => 0x211, 419 => 'YCbCrCoefficients' },
+ 'ycbcrpositioning' => { 105 => 0x213, 419 => 'YCbCrPositioning' },
+ 'ycbcrsubsampling' => { 105 => 0x212, 419 => 'YCbCrSubSampling' },
'yearcreated' => { 121 => 0x10, 130 => 0xc },
- 'yield' => { 413 => 'yield' },
+ 'yield' => { 415 => 'yield' },
'yposition' => { 105 => 0x11f },
- 'yresolution' => { 105 => 0x11b, 116 => 0x5, 315 => 0x4, 417 => 'YResolution' },
- 'zonematching' => { 162 => 0x10a, 165 => [0x3a,0x4a], 353 => 0xb024 },
+ 'yresolution' => { 105 => 0x11b, 116 => 0x5, 317 => 0x4, 419 => 'YResolution' },
+ 'zonematching' => { 162 => 0x10a, 165 => [0x3a,0x4a], 355 => 0xb024 },
'zonematchingmode' => { 160 => 0x14 },
'zonematchingon' => { 159 => 0x75 },
- 'zonematchingvalue' => { 341 => 0x1f },
+ 'zonematchingvalue' => { 343 => 0x1f },
'zoomedpreviewlength' => { 254 => 0xf05 },
'zoomedpreviewsize' => { 254 => 0xf06 },
'zoomedpreviewstart' => { 254 => 0xf04 },
@@ -5207,7 +5219,6 @@ my %tagExists = (
'bitsperextendedrunlength' => 1,
'bitsperpixel' => 1,
'bitsperrunlength' => 1,
- 'blackleveldata' => 1,
'blackmaskbottomborder' => 1,
'blackmaskleftborder' => 1,
'blackmaskrightborder' => 1,
@@ -6177,7 +6188,6 @@ my %tagExists = (
'filterserialnumber' => 1,
'finalframeblocks' => 1,
'firmwareinfo' => 1,
- 'firmwareversions' => 1,
'firstchar' => 1,
'firstlanguage' => 1,
'firstname' => 1,
@@ -6949,7 +6959,6 @@ my %tagExists = (
'mie' => 1,
'mileage' => 1,
'mimetype' => 1,
- 'minaperturevalue' => 1,
'miniaturefilter' => 1,
'miniaturefilterorientation' => 1,
'miniaturefilterparameter' => 1,
@@ -7590,7 +7599,6 @@ my %tagExists = (
'rawdevelopment' => 1,
'rawdevelopmentifd' => 1,
'rawexposurebias' => 1,
- 'rawformat' => 1,
'rawimagefullheight' => 1,
'rawimagefullsize' => 1,
'rawimagefullwidth' => 1,
@@ -7839,10 +7847,8 @@ my %tagExists = (
'sensorimagewidth' => 1,
'sensorinfo' => 1,
'sensorleftborder' => 1,
- 'sensorleftmargin' => 1,
'sensorrightborder' => 1,
'sensortopborder' => 1,
- 'sensortopmargin' => 1,
'sequenceframenumber' => 1,
'sequencenumberrandomoffset' => 1,
'serialinfo' => 1,
@@ -7984,7 +7990,6 @@ my %tagExists = (
'speed' => 1,
'spiff' => 1,
'spiffversion' => 1,
- 'splitcolumn' => 1,
'spothalftone' => 1,
'spouse' => 1,
'sr2dataifd' => 1,
@@ -8134,7 +8139,6 @@ my %tagExists = (
'syncsampletable' => 1,
'syncstate' => 1,
'synlyrics' => 1,
- 'system' => 1,
't4options' => 1,
't6options' => 1,
't82options' => 1,
@@ -8331,7 +8335,6 @@ my %tagExists = (
'unknown_slmt' => 1,
'unknownd30' => 1,
'unknowndata' => 1,
- 'unknowndate' => 1,
'unknowninfo' => 1,
'unknowninfo2' => 1,
'unknowninfo2version' => 1,
diff --git a/lib/Image/ExifTool/TagNames.pod b/lib/Image/ExifTool/TagNames.pod
index b9a4df2c..2a7b1e3a 100644
--- a/lib/Image/ExifTool/TagNames.pod
+++ b/lib/Image/ExifTool/TagNames.pod
@@ -11024,6 +11024,7 @@ any information found here will be extracted, even if the tag is not listed.
0x0601 PanoramaMode int16u~
0x0603 ImageQuality2 int16u
0x0604 ImageStabilization int32u
+ 0x0804 StackedImage int32u[2]
0x0900 ManometerPressure int16u
0x0901 ManometerReading int32s[2]
0x0902 ExtendedWBDetect int16u
@@ -11159,6 +11160,7 @@ any information found here will be extracted, even if the tag is not listed.
0x0304 FocusStepNear int16u
0x0305 FocusDistance rational64u
0x0308 AFPoint int16u
+ 0x0328 AFInfo Olympus AFInfo
0x1201 ExternalFlash int16u[2]
0x1203 ExternalFlashGuideNumber? rational64s
0x1204 ExternalFlashBounce int16u
@@ -11169,6 +11171,12 @@ any information found here will be extracted, even if the tag is not listed.
0x1500 SensorTemperature int16s
0x1600 ImageStabilization undef~
+=head3 Olympus AFInfo Tags
+
+ Index1 Tag Name Writable
+ ------ -------- --------
+ [no tags known]
+
=head3 Olympus FE Tags
Some FE models write a large number of tags here, but most of this
@@ -12543,40 +12551,40 @@ These tags are extracted from the maker notes of Phase One images.
Tag ID Tag Name Writable
------ -------- --------
0x0100 CameraOrientation N
- 0x0102 SerialNumber N
- 0x0105 ISO N
- 0x0106 ColorMatrix1 N
- 0x0107 WB_RGBLevels N
- 0x0108 SensorWidth N
- 0x0109 SensorHeight N
- 0x010a SensorLeftMargin N
- 0x010b SensorTopMargin N
- 0x010c ImageWidth N
- 0x010d ImageHeight N
- 0x010e RawFormat N
+ 0x0102 SerialNumber string
+ 0x0105 ISO int32s
+ 0x0106 ColorMatrix1 float[9]
+ 0x0107 WB_RGBLevels float[3]
+ 0x0108 SensorWidth int32s
+ 0x0109 SensorHeight int32s
+ 0x010a SensorLeftMargin int32s
+ 0x010b SensorTopMargin int32s
+ 0x010c ImageWidth int32s
+ 0x010d ImageHeight int32s
+ 0x010e RawFormat int32s
0x010f RawData N
0x0110 SensorCalibration PhaseOne SensorCalibration
0x0112 DateTimeOriginal N
- 0x0113 ImageNumber N
- 0x0203 Software N
- 0x0204 System N
- 0x0210 SensorTemperature N
- 0x0211 SensorTemperature2 N
- 0x0212 UnknownDate? N
+ 0x0113 ImageNumber int32s
+ 0x0203 Software string
+ 0x0204 System string
+ 0x0210 SensorTemperature float
+ 0x0211 SensorTemperature2 float
+ 0x0212 UnknownDate? int32u
0x021c StripOffsets N
- 0x021d BlackLevel N
- 0x0222 SplitColumn N
- 0x0223 BlackLevelData N
- 0x0226 ColorMatrix2 N
- 0x0301 FirmwareVersions N
- 0x0400 ShutterSpeedValue N
- 0x0401 ApertureValue N
- 0x0402 ExposureCompensation N
- 0x0403 FocalLength N
- 0x0410 CameraModel N
- 0x0412 LensModel N
- 0x0414 MaxApertureValue N
- 0x0415 MinApertureValue N
+ 0x021d BlackLevel int32s
+ 0x0222 SplitColumn int32s
+ 0x0223 BlackLevelData int16u[n]
+ 0x0226 ColorMatrix2 float[9]
+ 0x0301 FirmwareVersions string
+ 0x0400 ShutterSpeedValue float
+ 0x0401 ApertureValue float
+ 0x0402 ExposureCompensation float
+ 0x0403 FocalLength float
+ 0x0410 CameraModel string
+ 0x0412 LensModel string
+ 0x0414 MaxApertureValue float
+ 0x0415 MinApertureValue float
=head3 PhaseOne SensorCalibration Tags
@@ -12584,7 +12592,7 @@ These tags are extracted from the maker notes of Phase One images.
------ -------- --------
0x0400 SensorDefects N
0x0401 AllColorFlatField1? N
- 0x0407 SerialNumber N
+ 0x0407 SerialNumber string
0x040b RedBlueFlatField? N
0x0410 AllColorFlatField2? N
0x0416 AllColorFlatField3? N
diff --git a/lib/Image/ExifTool/WriteExif.pl b/lib/Image/ExifTool/WriteExif.pl
index 46940d25..d11a6449 100644
--- a/lib/Image/ExifTool/WriteExif.pl
+++ b/lib/Image/ExifTool/WriteExif.pl
@@ -1832,7 +1832,7 @@ sub WriteExif($$$)
my $curInfo = $et->GetTagInfo($tagTablePtr, $tagID);
if (defined $curInfo and not $curInfo) {
# need value to evaluate the condition
- my ($val) = $et->GetNewValue($tagInfo);
+ my $val = $et->GetNewValue($tagInfo);
# must convert to binary for evaluating in Condition
if ($$tagInfo{Format} and defined $val) {
$val = WriteValue($val, $$tagInfo{Format}, $$tagInfo{Count});
@@ -2596,6 +2596,7 @@ NoOverwrite: next if $isNew > 0;
} else {
$et->Warn('Internal problem getting maker notes tag table');
}
+ $writeProc or $writeProc = $$subTable{WRITE_PROC} if $subTable;
$subTable or $subTable = $tagTablePtr;
if ($writeProc and
$writeProc eq \&Image::ExifTool::MakerNotes::WriteUnknownOrPreview and
@@ -2631,7 +2632,12 @@ NoOverwrite: next if $isNew > 0;
}
# rewrite maker notes
$subdir = $et->WriteDirectory(\%subdirInfo, $subTable);
- } elsif (not $notIFD) {
+ } elsif ($notIFD) {
+ if ($writeProc) {
+ $loc = 0;
+ $subdir = $et->WriteDirectory(\%subdirInfo, $subTable);
+ }
+ } else {
my $msg = 'Maker notes could not be parsed';
if ($$et{FILE_TYPE} eq 'JPEG') {
$et->Warn($msg, 1);
@@ -3095,7 +3101,7 @@ NoOverwrite: next if $isNew > 0;
}
if ($putFirst and $$dirInfo{HeaderPtr}) {
my $hdrPtr = $$dirInfo{HeaderPtr};
- # place this value immediately after the TIFF header
+ # place this value immediately after the TIFF header (eg. IIQ maker notes)
$offsetVal = Set32u(length $$hdrPtr);
$$hdrPtr .= $$newValuePt;
} else {
diff --git a/lib/Image/ExifTool/WriteXMP.pl b/lib/Image/ExifTool/WriteXMP.pl
index f9b6daa2..7d636500 100644
--- a/lib/Image/ExifTool/WriteXMP.pl
+++ b/lib/Image/ExifTool/WriteXMP.pl
@@ -130,7 +130,10 @@ sub CheckXMP($$$)
unless (ref $$valPtr) {
($$valPtr, $warn) = InflateStruct($valPtr);
# expect a structure HASH ref or ARRAY of structures
- ref $$valPtr or return 'Improperly formed structure';
+ unless (ref $$valPtr) {
+ $$valPtr eq '' and $$valPtr = { }, return undef; # allow empty structures
+ return 'Improperly formed structure';
+ }
}
if (ref $$valPtr eq 'ARRAY') {
return 'Not a list tag' unless $$tagInfo{List};
@@ -1239,7 +1242,7 @@ sub WriteXMP($$;$)
my ($val, $attrs) = @{$capture{$path}};
$debug and print "$path = $val\n";
# open new properties
- my $attr;
+ my ($attr, $dummy);
for ($n=@curPropList; $n<$#propList; ++$n) {
$prop = $propList[$n];
push @curPropList, $prop;
@@ -1251,19 +1254,29 @@ sub WriteXMP($$;$)
{
# need parseType='Resource' to avoid new 'rdf:Description'
$attr = " rdf:parseType='Resource'";
+ # check for empty structure
+ if ($propList[$n+1] =~ /:~dummy~$/) {
+ $newData .= (' ' x scalar(@curPropList)) . "<$prop$attr/>\n";
+ pop @curPropList;
+ $dummy = 1;
+ last;
+ }
}
$newData .= (' ' x scalar(@curPropList)) . "<$prop$attr>\n";
}
my $prop2 = pop @propList; # get new property name
- $prop2 =~ s/ .*//; # remove list index if it exists
- $newData .= (' ' x scalar(@curPropList)) . " <$prop2";
- # write out attributes
- foreach $attr (sort keys %$attrs) {
- my $attrVal = $$attrs{$attr};
- my $quot = ($attrVal =~ /'/) ? '"' : "'";
- $newData .= " $attr=$quot$attrVal$quot";
+ # add element unless it was a dummy structure field
+ unless ($dummy or ($val eq '' and $prop2 =~ /:~dummy~$/)) {
+ $prop2 =~ s/ .*//; # remove list index if it exists
+ $newData .= (' ' x scalar(@curPropList)) . " <$prop2";
+ # write out attributes
+ foreach $attr (sort keys %$attrs) {
+ my $attrVal = $$attrs{$attr};
+ my $quot = ($attrVal =~ /'/) ? '"' : "'";
+ $newData .= " $attr=$quot$attrVal$quot";
+ }
+ $newData .= length $val ? ">$val</$prop2>\n" : "/>\n";
}
- $newData .= length $val ? ">$val</$prop2>\n" : "/>\n";
}
# close off any open elements
while ($prop = pop @curPropList) {
diff --git a/lib/Image/ExifTool/XMP.pm b/lib/Image/ExifTool/XMP.pm
index 9036e894..2dd056b5 100644
--- a/lib/Image/ExifTool/XMP.pm
+++ b/lib/Image/ExifTool/XMP.pm
@@ -3966,7 +3966,14 @@ sub ProcessXMP($$;$)
$rtnVal = 1;
} elsif ($$dirInfo{DirName} and $$dirInfo{DirName} eq 'XMP') {
# if DirName was 'XMP' we expect well-formed XMP, so set Warning since it wasn't
- $et->Warn('Invalid XMP');
+ # (but allow empty XMP as written by some PhaseOne cameras)
+ my $xmp = substr($$dataPt, $dirStart, $dirLen);
+ if ($xmp =~ /^ *\0*$/) {
+ $et->Warn('Invalid XMP');
+ } else {
+ $et->Warn('Empty XMP',1);
+ $rtnVal = 1;
+ }
}
delete $$et{NO_STRUCT};
diff --git a/lib/Image/ExifTool/XMPStruct.pl b/lib/Image/ExifTool/XMPStruct.pl
index 9a04089e..c290712d 100644
--- a/lib/Image/ExifTool/XMPStruct.pl
+++ b/lib/Image/ExifTool/XMPStruct.pl
@@ -281,12 +281,17 @@ Key:
foreach $item (@{$$struct{$key}}) {
if (not ref $item) {
$item = '' unless defined $item; # use empty string for missing items
- $$fieldInfo{Struct} and $warn = "$tag items are not valid structures", next Key;
- $et->Sanitize(\$item);
- ($copy[$i],$err) = $et->ConvInv($item,$fieldInfo,$tag,$strName,$type,'');
- $err and $warn = $err, next Key;
- $err = CheckXMP($et, $fieldInfo, \$copy[$i]);
- $err and $warn = "$err in $strName $tag", next Key;
+ if ($$fieldInfo{Struct}) {
+ # (allow empty structures)
+ $item =~ /^\s*$/ or $warn = "$tag items are not valid structures", next Key;
+ $copy[$i] = { }; # create hash for empty structure
+ } else {
+ $et->Sanitize(\$item);
+ ($copy[$i],$err) = $et->ConvInv($item,$fieldInfo,$tag,$strName,$type,'');
+ $err and $warn = $err, next Key;
+ $err = CheckXMP($et, $fieldInfo, \$copy[$i]);
+ $err and $warn = "$err in $strName $tag", next Key;
+ }
} elsif (ref $item eq 'HASH') {
$$fieldInfo{Struct} or $warn = "$tag is not a structure in $strName", next Key;
($copy[$i], $err) = CheckStruct($et, $item, $$fieldInfo{Struct});
@@ -310,12 +315,12 @@ Key:
$copy{$tag} = $$fieldInfo{List} ? [ $val ] : $val;
}
}
- if (%copy) {
+ if (%copy or not $warn) {
$rtnVal = \%copy;
undef $err;
$$et{CHECK_WARN} = $warn if $warn;
} else {
- $err = $warn || 'Structure has no fields';
+ $err = $warn;
}
return wantarray ? ($rtnVal, $err) : $rtnVal;
}
@@ -474,8 +479,16 @@ sub AddNewStruct($$$$$$)
my $ns = $$strTable{NAMESPACE} || '';
my $changed = 0;
+ # add dummy field to allow empty structures (name starts with '~' so it will come
+ # after all valid structure fields, which is necessary when serializing the XMP later)
+ %$struct or $$struct{'~dummy~'} = '';
+
foreach $tag (sort keys %$struct) {
- my $fieldInfo = $$strTable{$tag} or next;
+ my $fieldInfo = $$strTable{$tag};
+ unless ($fieldInfo) {
+ next unless $tag eq '~dummy~'; # check for dummy field
+ $fieldInfo = { }; # create dummy field info for dummy structure
+ }
my $val = $$struct{$tag};
my $propPath = $$fieldInfo{PropertyPath};
unless ($propPath) {